/* =============================================
   CAFE JUNCTION — MAIN STYLESHEET
   Theme: Teal + Pink | Font: Playfair + Poppins
   ============================================= */

:root {
    --teal:        #0ABFBC;
    --teal-dark:   #089A97;
    --teal-light:  #E0F7F7;
    --pink:        #FF6B9D;
    --pink-dark:   #E0557F;
    --pink-light:  #FFE8F2;
    --white:       #FFFFFF;
    --off-white:   #F9FAFB;
    --grey-100:    #F3F4F6;
    --grey-300:    #D1D5DB;
    --grey-500:    #6B7280;
    --grey-800:    #1F2937;
    --text:        #2D3748;
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg:   0 8px 32px rgba(0,0,0,0.12);
    --radius:      12px;
    --radius-lg:   20px;
    --transition:  all 0.3s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: 1.3rem; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--grey-500); max-width: 600px; margin: 0 auto; }
.section-tag { display: inline-block; background: var(--teal-light); color: var(--teal-dark); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 26px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; cursor: pointer; border: 2px solid transparent; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(10,191,188,0.35); }
.btn-pink { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,107,157,0.35); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-outline-pink { background: transparent; color: var(--pink); border-color: var(--pink); }
.btn-outline-pink:hover { background: var(--pink); color: var(--white); }
.btn-white { background: var(--white); color: var(--teal-dark); border-color: var(--white); }
.btn-white:hover { background: var(--teal-light); }
.btn-lg { padding: 15px 35px; font-size: 1rem; }
.btn-icon { position: relative; width: 42px; height: 42px; padding: 0; justify-content: center; border-radius: 50%; border: 2px solid var(--grey-300); color: var(--grey-800); }
.btn-icon:hover { border-color: var(--teal); color: var(--teal); }

/* ---- TOP BAR ---- */
.top-bar { background: var(--grey-800); color: #CCC; font-size: 0.78rem; padding: 7px 0; }
.top-bar .container { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.top-bar i { color: var(--teal); margin-right: 5px; }

/* ---- NAVBAR ---- */
.navbar { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--grey-100); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.8rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--grey-800); }
.logo-sub { font-size: 0.65rem; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-size: 0.88rem; font-weight: 500; color: var(--grey-800); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-light); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.cart-count { position: absolute; top: -5px; right: -5px; background: var(--pink); color: var(--white); font-size: 0.65rem; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--grey-800); transition: var(--transition); border-radius: 2px; }

/* ---- FLASH MESSAGES ---- */
.flash-message { position: fixed; top: 80px; right: 20px; z-index: 9999; padding: 14px 20px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md); animation: slideIn 0.3s ease; max-width: 380px; }
.flash-success { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; }
.flash-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.flash-info { background: var(--teal-light); color: var(--teal-dark); border: 1px solid var(--teal); }
.flash-message button { background: none; border: none; font-size: 1.2rem; cursor: pointer; opacity: 0.6; margin-left: auto; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* =============================================
   HOME PAGE
   ============================================= */

/* ---- HERO ---- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../assets/images/hero.jpg') center/cover no-repeat; filter: brightness(0.45); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,191,188,0.4) 0%, rgba(255,107,157,0.25) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 700px; }
.hero-tag { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); color: var(--white); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; margin-bottom: 24px; }
.hero h1 { margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero h1 span { color: var(--pink); }
.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 36px; max-width: 520px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { position: absolute; bottom: 40px; right: 0; z-index: 2; display: flex; gap: 0; }
.stat-card { background: rgba(255,255,255,0.12); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 20px 28px; text-align: center; }
.stat-card:first-child { border-radius: 12px 0 0 12px; }
.stat-card:last-child { border-radius: 0 12px 12px 0; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--pink); }
.stat-label { font-size: 0.75rem; opacity: 0.8; }

/* ---- FEATURED MENU ---- */
.featured-menu { background: var(--off-white); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.menu-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card-img { height: 200px; overflow: hidden; position: relative; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-badge { position: absolute; top: 12px; left: 12px; background: var(--pink); color: var(--white); font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.menu-card-body { padding: 18px; }
.menu-card-body h3 { margin-bottom: 6px; font-size: 1.05rem; }
.menu-card-body p { color: var(--grey-500); font-size: 0.85rem; margin-bottom: 14px; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 1.1rem; font-weight: 700; color: var(--teal-dark); }
.add-btn { width: 36px; height: 36px; background: var(--teal); color: var(--white); border: none; border-radius: 50%; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.add-btn:hover { background: var(--teal-dark); transform: scale(1.1); }

/* ---- WHY US ---- */
.why-us { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 30px; }
.feature-card { text-align: center; padding: 36px 24px; border-radius: var(--radius-lg); border: 1px solid var(--grey-100); transition: var(--transition); }
.feature-card:hover { border-color: var(--teal-light); background: var(--teal-light); transform: translateY(-4px); }
.feature-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--teal-light), var(--pink-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.8rem; }
.feature-card h3 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p { color: var(--grey-500); font-size: 0.85rem; }

/* ---- ABOUT SNIPPET ---- */
.about-snippet { background: linear-gradient(135deg, var(--teal-dark) 0%, #067D7A 100%); color: var(--white); }
.about-snippet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-snippet-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.about-snippet-img img { width: 100%; height: 100%; object-fit: cover; }
.about-snippet-text .section-tag { background: rgba(255,255,255,0.2); color: var(--white); }
.about-snippet-text h2 { margin-bottom: 16px; }
.about-snippet-text p { opacity: 0.9; margin-bottom: 24px; }

/* ---- REVIEWS ---- */
.reviews-section { background: var(--off-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card { background: var(--white); padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); position: relative; }
.review-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--teal-light); position: absolute; top: 10px; right: 20px; line-height: 1; }
.review-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 10px; }
.review-card p { color: var(--grey-500); font-size: 0.9rem; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--pink)); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1rem; }
.review-author-info strong { display: block; font-size: 0.9rem; }
.review-author-info span { font-size: 0.78rem; color: var(--grey-500); }

/* ---- CTA STRIP ---- */
.cta-strip { background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%); color: var(--white); padding: 60px 0; text-align: center; }
.cta-strip h2 { margin-bottom: 12px; }
.cta-strip p { opacity: 0.9; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   MENU PAGE
   ============================================= */
.menu-hero { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); color: var(--white); padding: 70px 0 50px; text-align: center; }
.menu-hero h1 { margin-bottom: 10px; }
.menu-hero p { opacity: 0.9; }

.menu-filter { background: var(--white); position: sticky; top: 70px; z-index: 100; border-bottom: 1px solid var(--grey-100); padding: 16px 0; }
.filter-tabs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.filter-tab { padding: 9px 22px; border-radius: 50px; border: 2px solid var(--grey-300); background: var(--white); color: var(--grey-500); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.filter-tab:hover { border-color: var(--teal); color: var(--teal); }
.filter-tab.active { background: var(--teal); color: var(--white); border-color: var(--teal); }

.menu-section-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--grey-800); margin: 40px 0 20px; padding-bottom: 10px; border-bottom: 2px solid var(--teal-light); display: flex; align-items: center; gap: 12px; }
.menu-section-title span { font-size: 1.4rem; }

/* =============================================
   ORDER PAGE
   ============================================= */
.order-layout { display: grid; grid-template-columns: 1fr 360px; gap: 30px; align-items: start; }
.order-items { background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.cart-sidebar { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); position: sticky; top: 90px; }
.cart-sidebar h3 { margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--teal-light); }
.cart-items { min-height: 100px; }
.cart-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--grey-100); }
.cart-item-name { font-size: 0.88rem; font-weight: 500; }
.cart-item-price { color: var(--teal-dark); font-weight: 600; font-size: 0.88rem; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--grey-300); background: none; cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { border-color: var(--teal); color: var(--teal); }
.cart-empty { text-align: center; padding: 30px 0; color: var(--grey-500); font-size: 0.9rem; }
.cart-total { margin-top: 16px; padding-top: 14px; border-top: 2px solid var(--grey-100); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 6px; }
.cart-total-row.grand { font-weight: 700; font-size: 1.05rem; color: var(--teal-dark); margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--grey-300); }

/* =============================================
   RESERVATION PAGE
   ============================================= */
.reservation-hero { background: linear-gradient(135deg, var(--pink-dark), var(--pink)); color: var(--white); padding: 70px 0 50px; text-align: center; }
.reservation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.reservation-info h2 { margin-bottom: 16px; }
.reservation-info p { color: var(--grey-500); margin-bottom: 24px; }
.info-list { display: flex; flex-direction: column; gap: 14px; }
.info-item { display: flex; align-items: center; gap: 14px; }
.info-item-icon { width: 44px; height: 44px; background: var(--teal-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--teal-dark); font-size: 1.1rem; flex-shrink: 0; }

/* =============================================
   FORMS
   ============================================= */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--grey-800); margin-bottom: 7px; }
.form-control { width: 100%; padding: 12px 16px; border: 1.5px solid var(--grey-300); border-radius: 10px; font-size: 0.9rem; transition: var(--transition); background: var(--white); color: var(--text); }
.form-control:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,191,188,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 0.78rem; color: var(--grey-500); margin-top: 5px; }
.form-error { font-size: 0.78rem; color: #EF4444; margin-top: 5px; }

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-hero { background: linear-gradient(135deg, var(--grey-800), #374151); color: var(--white); padding: 70px 0 50px; text-align: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 1; cursor: pointer; }
.gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,191,188,0.7), rgba(255,107,157,0.7)); opacity: 0; transition: var(--transition); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 2rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 2rem; cursor: pointer; background: none; border: none; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero { background: linear-gradient(135deg, var(--grey-800), #1A2A3A); color: var(--white); padding: 80px 0 60px; }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mission-card { padding: 32px 24px; border-radius: var(--radius-lg); text-align: center; }
.mission-card.vision { background: var(--teal-light); border: 1px solid var(--teal); }
.mission-card.mission { background: var(--pink-light); border: 1px solid var(--pink); }
.mission-card.values { background: #FFF7ED; border: 1px solid #F59E0B; }
.mission-card-icon { font-size: 2.5rem; margin-bottom: 14px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar { height: 200px; background: linear-gradient(135deg, var(--teal-light), var(--pink-light)); display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.team-info { padding: 20px; }
.team-info h3 { margin-bottom: 4px; }
.team-role { color: var(--teal); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; display: block; }
.team-info p { color: var(--grey-500); font-size: 0.85rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: var(--white); padding: 70px 0 50px; text-align: center; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border-radius: var(--radius); border: 1px solid var(--grey-100); transition: var(--transition); margin-bottom: 16px; }
.contact-info-card:hover { border-color: var(--teal-light); background: var(--teal-light); }
.contact-info-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--teal), var(--pink)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; flex-shrink: 0; }
.contact-info-text strong { display: block; font-size: 0.85rem; color: var(--grey-800); margin-bottom: 3px; }
.contact-info-text span { font-size: 0.88rem; color: var(--grey-500); }
.map-placeholder { background: var(--grey-100); border-radius: var(--radius-lg); height: 220px; display: flex; align-items: center; justify-content: center; color: var(--grey-500); font-size: 0.9rem; margin-top: 16px; border: 2px dashed var(--grey-300); flex-direction: column; gap: 8px; }

/* =============================================
   AUTH PAGES
   ============================================= */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--teal-light) 0%, var(--pink-light) 100%); padding: 30px 20px; }
.auth-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-lg); width: 100%; max-width: 440px; }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo span { font-size: 2.5rem; }
.auth-logo h2 { margin: 8px 0 4px; }
.auth-logo p { color: var(--grey-500); font-size: 0.9rem; }
.auth-divider { text-align: center; margin: 20px 0; color: var(--grey-500); font-size: 0.85rem; position: relative; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--grey-300); }
.auth-divider span { background: var(--white); padding: 0 12px; position: relative; }
.auth-switch { text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--grey-500); }
.auth-switch a { color: var(--teal); font-weight: 600; }
.password-toggle { position: relative; }
.password-toggle .toggle-btn { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--grey-500); }

/* =============================================
   ADMIN PANEL
   ============================================= */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 250px; background: var(--grey-800); color: var(--white); flex-shrink: 0; position: fixed; height: 100vh; overflow-y: auto; z-index: 200; }
.admin-logo { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.admin-logo span { color: var(--teal); }
.admin-nav { padding: 16px 0; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 20px; color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: var(--transition); }
.admin-nav a:hover, .admin-nav a.active { background: rgba(10,191,188,0.15); color: var(--teal); }
.admin-nav a i { width: 18px; }
.admin-main { margin-left: 250px; flex: 1; background: var(--off-white); min-height: 100vh; }
.admin-topbar { background: var(--white); padding: 16px 30px; border-bottom: 1px solid var(--grey-100); display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-sm); }
.admin-topbar h1 { font-size: 1.3rem; }
.admin-content { padding: 30px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-box { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 16px; }
.stat-box-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.stat-box-icon.teal { background: var(--teal-light); color: var(--teal-dark); }
.stat-box-icon.pink { background: var(--pink-light); color: var(--pink-dark); }
.stat-box-icon.orange { background: #FFF7ED; color: #EA580C; }
.stat-box-icon.purple { background: #EDE9FE; color: #7C3AED; }
.stat-box-text span { display: block; font-size: 0.78rem; color: var(--grey-500); }
.stat-box-text strong { font-size: 1.6rem; font-weight: 700; color: var(--grey-800); }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.admin-table th { background: var(--grey-100); padding: 12px 16px; text-align: left; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--grey-500); }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--grey-100); font-size: 0.88rem; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--off-white); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge-success { background: #D1FAE5; color: #065F46; }
.badge-warning { background: #FEF3C7; color: #92400E; }
.badge-danger { background: #FEE2E2; color: #991B1B; }
.badge-info { background: var(--teal-light); color: var(--teal-dark); }
.badge-pink { background: var(--pink-light); color: var(--pink-dark); }

/* =============================================
   PAYMENT
   ============================================= */
.payment-success { text-align: center; padding: 80px 20px; }
.payment-success .icon { font-size: 5rem; margin-bottom: 20px; }
.payment-success h2 { color: #059669; margin-bottom: 12px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .about-snippet-grid, .reservation-grid, .contact-grid, .about-hero-grid { grid-template-columns: 1fr; }
    .order-layout { grid-template-columns: 1fr; }
    .cart-sidebar { position: static; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; align-items: center; justify-content: center; gap: 16px; z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.1rem; padding: 12px 30px; }
    .hamburger { display: flex; z-index: 1000; }
    .hero-stats { position: static; margin-top: 40px; flex-wrap: wrap; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(4) { grid-column: span 1; aspect-ratio: 1; }
    .form-row { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: 1fr; }
    .admin-sidebar { transform: translateX(-100%); transition: var(--transition); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .top-bar { display: none; }
}

@media (max-width: 480px) {
    .section { padding: 50px 0; }
    .gallery-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { display: none; }
    .auth-card { padding: 28px 20px; }
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-pink { color: var(--pink); }
.mb-0 { margin-bottom: 0 !important; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.fw-600 { font-weight: 600; }
.hidden { display: none !important; }
.loading { opacity: 0.6; pointer-events: none; }

/* Spinner */
.spinner { width: 36px; height: 36px; border: 3px solid var(--grey-300); border-top-color: var(--teal); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }
