/* =====================================================
   DESIGN TOKENS — Light Mode (Default)
   ===================================================== */
:root {
    /* Brand colors — fixed, never change between themes */
    --gold:          #D4AF37;
    --gold-dark:     #B8860B;
    --onyx:          #121212;
    --onyx-light:    #2c2c2c;

    /* Semantic theme tokens — these swap in dark mode */
    --bg:            #FAFAFA;
    --bg-alt:        #F2F2F2;
    --bg-card:       #FFFFFF;
    --bg-input:      #FFFFFF;
    --bg-nav:        rgba(255,255,255,0.85);
    --bg-footer:     #121212;
    --bg-sidebar:    #121212;

    --text:          #1A1A1A;
    --text-muted:    #666666;
    --text-inverse:  #FFFFFF;

    --accent:        #D4AF37;
    --accent-hover:  #B8860B;
    --accent-text:   #000000;

    --border:        #E0E0E0;
    --shadow-color:  rgba(0,0,0,0.08);

    --glass:         rgba(255,255,255,0.85);

    /* Legacy aliases kept for backward compat */
    --primary:       #121212;
    --primary-light: #2c2c2c;
    --white:         #FFFFFF;

    /* Shadows */
    --shadow-sm: 0 2px 4px var(--shadow-color);
    --shadow-md: 0 4px 12px var(--shadow-color);
    --shadow-lg: 0 12px 24px var(--shadow-color);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Global Layout */
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;
    --container-max-width: 1200px;
}

/* =====================================================
   DARK MODE OVERRIDES — body.dark-mode
   ===================================================== */
body.dark-mode {
    /* Backgrounds */
    --bg:          #0D0D0D;
    --bg-alt:      #161616;
    --bg-card:     #1E1E1E;
    --bg-input:    #1E1E1E;
    --bg-nav:      rgba(13,13,13,0.92);
    --bg-footer:   #0A0A0A;
    --bg-sidebar:  #0A0A0A;

    /* Text */
    --text:        #F0F0F0;
    --text-muted:  #999999;
    --text-inverse:#121212;

    /* Accent stays gold in dark mode too */
    --accent:      #D4AF37;
    --accent-hover:#F0C040;
    --accent-text: #000000;

    /* Borders & Shadows */
    --border:        #2A2A2A;
    --shadow-color:  rgba(0,0,0,0.4);

    --glass:         rgba(13,13,13,0.92);

    /* Legacy aliases */
    --primary:       #0D0D0D;
    --primary-light: #161616;
    --white:         #1E1E1E;
}


/* Base Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Smooth theme switching across all elements */
    transition: background-color 0.35s ease, color 0.35s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background-color var(--transition), color var(--transition);
    overflow-x: hidden;
    padding-top: 80px; /* Offset for fixed header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.section {
    padding: var(--section-padding);
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile);
    }
}

/* Utilities */
.text-white { color: white !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-accent { color: var(--accent) !important; }
.text-light { color: #cccccc !important; }
.font-bold { font-weight: 700 !important; }
.font-italic { font-style: italic !important; }
.font-primary { font-family: 'Playfair Display', serif !important; }
.letter-spacing-2 { letter-spacing: 2px !important; }

/* Margin utilities */
.mb-5  { margin-bottom: 5px  !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-35 { margin-bottom: 35px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-25 { margin-top: 25px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-60 { margin-top: 60px !important; }
.mt-80 { margin-top: 80px !important; }
.mr-10 { margin-right: 10px !important; }
.ml-15 { margin-left: 15px !important; }

/* Padding utilities */
.p-50     { padding: 20px !important; }
.p-100-0  { padding: 100px 0 !important; }

/* Layout utilities */
.w-100 { width: 100% !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }
.gap-20 { gap: 20px !important; }

/* Background utilities */
.bg-primary { background-color: var(--primary) !important; }
.bg-alt     { background-color: var(--bg-alt)  !important; }
.bg-white   { background-color: #ffffff        !important; }
.bg-accent  { background-color: var(--accent)  !important; }
.border-none { border: none !important; }

/* Border radius utilities */
.radius-sm { border-radius: var(--radius-sm) !important; }
.radius-md { border-radius: var(--radius-md) !important; }
.radius-lg { border-radius: var(--radius-lg) !important; }

/* Font-size utilities */
.fs-1-2 { font-size: 1.2rem !important; }
.fs-3   { font-size: 3rem !important; }

/* Responsive Grid Utility */
.grid-responsive {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 480px) {
    .grid-responsive {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #000;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

header.scrolled {
    padding: 5px 0;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text);
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link.active {
    font-weight: 700;
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    margin-top: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 25px;
    font-size: 0.85rem;
    font-weight: 500;
}

.dropdown-link:hover,
.dropdown-link.active {
    background-color: var(--bg-alt);
    color: var(--accent);
    font-weight: 700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.theme-toggle, .hamburger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.theme-toggle:hover {
    background-color: var(--bg-alt);
}

.hamburger {
    display: none;
}

/* Sections */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-header {
    padding: 140px 0 80px;
    background-color: var(--bg-alt);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
}

.reveal.active {
    animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Mobile Menu */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        background: transparent;
        display: none;
    }
    
    .nav-item.active .dropdown {
        display: block;
    }
}

/* Home Page Specific Styles */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/hero-main.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* Hero takes up full viewport — negate the body padding-top */
    margin-top: -80px;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

/* Chefs Section */
.chef-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.chef-card {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.chef-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.chef-img {
    height: 400px;
    overflow: hidden;
}

.chef-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.chef-card:hover .chef-img img {
    transform: scale(1.1);
}

.chef-info {
    padding: 25px;
    text-align: center;
}

.chef-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.chef-info span {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.menu-item {
    position: relative;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    transition: 0.3s;
}

.menu-item:hover img {
    transform: scale(1.1);
}

/* Experience Section */
.experience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.experience-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    position: relative;
}

.step-icon::before {
    counter-increment: step;
    content: "0" counter(step);
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--text);
    color: var(--white);
    font-size: 0.7rem;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Utility classes for inline removal */
.text-accent { color: var(--accent) !important; }
.font-bold { font-weight: 700 !important; }
.letter-spacing-2 { letter-spacing: 2px !important; }
.mt-50 { margin-top: 50px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.text-center { text-align: center !important; }
.text-white { color: white !important; }
.text-muted { color: var(--text-muted) !important; }

/* Footer */
footer {
    background-color: var(--primary);
    color: #fff;
    padding: 80px 0 20px;
  
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 25px;
    color: #666;
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .experience-split { grid-template-columns: 1fr; gap: 40px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Page Headers */
.page-header {
    padding: 100px 0;
    background-color: var(--bg-alt);
    text-align: center;
}

.page-header-bg {
    padding: 150px 0 100px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-main.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.page-header-bg h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: -50px;
    /* margin-bottom: 80px; */
}

.stat-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.story-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.overlay-dark {
    position: relative;
    background-size: cover;
    background-position: center;
}

.overlay-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.overlay-dark > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }
    .story-section { grid-template-columns: 1fr; gap: 40px; }
}

/* Chefs Page Specific Styles */
.chef-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: black;
}

.chef-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.chef-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.chef-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: black;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.chef-content {
    padding: 30px;
}

.chef-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.chef-specialty {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.chef-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 20px;
}

.stat-item-inner {
    text-align: center;
}

.stat-item-inner span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.stat-item-inner label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

/* Chef Detail Page Specific Styles */
.chef-hero {
    padding: 150px 0 80px;
    background-color: var(--bg-alt);
}

.chef-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.chef-profile-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.chef-meta {
    display: flex;
    gap: 30px;
    margin: 20px 0 40px;
}

.meta-item i {
    color: var(--accent);
    margin-right: 10px;
}

.chef-tabs {
    margin-top: 80px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 40px;
}

.tab-btn {
    padding: 20px 0;
    background: none;
    border: none;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    font-size: 1rem;
    color: var(--text-muted);
}

.tab-btn.active {
    color: var(--text);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
}

.tab-content {
    padding: 60px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-img {
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-sidebar {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

/* Menus Page Specific Styles */
.menu-list-section { padding: 80px 0; }

.menu-category {
    margin-bottom: 100px;
}

.menu-category h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -1px;
}

.menu-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-bottom: 50px;
    transition: var(--transition);
}

.menu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.menu-card-img { height: 100%; min-height: 400px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.menu-card:hover .menu-card-img img { transform: scale(1.1); }

.menu-card-content { padding: 50px; }

.menu-item-row {
    margin-bottom: 30px;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 15px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.menu-item-header h4 { margin-bottom: 0; font-size: 1.1rem; }
.menu-item-price { color: var(--accent); font-weight: 700; }
.menu-item-desc { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 1024px) {
    .menu-card { grid-template-columns: 1fr; gap: 0; }
    .menu-card-img { min-height: 300px; }
    .menu-card-content { padding: 30px; }
}

/* Experiences Page Specific Styles */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.exp-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
    padding: 50px;
    transition: var(--transition);
}

.exp-item:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.exp-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 30px;
}

/* Shop Page Specific Styles */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 80px 0;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.product-img {
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-alt);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s;
}

.product-card:hover .product-img img { transform: scale(1.1); }

.product-info { padding: 25px; text-align: center; }
.product-info h3 { font-size: 1.2rem; margin-bottom: 10px; }
.product-info .price { font-weight: 700; color: var(--accent); margin-bottom: 20px; font-size: 1.2rem; }

.cart-btn {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
}

.cart-btn:hover { background-color: var(--accent); color: black; }

/* Blog Page Specific Styles */
.blog-hero {
    padding: 100px 0;
    background-color: var(--bg-alt);
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 80px 0;
}

.post-card {
    margin-bottom: 60px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.post-img { height: 450px; overflow: hidden; }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.post-card:hover .post-img img { transform: scale(1.1); }

.post-content { padding: 40px; }
.post-content .date { font-size: 0.8rem; font-weight: 600; color: var(--accent); text-transform: uppercase; margin-bottom: 10px; display: block; }
.post-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.post-content p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 25px; }

.sidebar-widget {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

.sidebar-widget h3 { margin-bottom: 20px; border-bottom: 2px solid var(--accent); display: inline-block; padding-bottom: 5px; }

.category-list li { margin-bottom: 15px; border-bottom: 1px solid var(--border); padding-bottom: 10px; display: flex; justify-content: space-between; font-size: 0.9rem; }

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: 1fr; }
    .post-img { height: 300px; }
}

.popular-posts { margin-top: 20px; }
.popular-post-item { display: flex; gap: 15px; margin-bottom: 20px; }
.popular-post-item:last-child { margin-bottom: 0; }
.popular-post-img { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; }
.popular-post-info h4 { font-size: 0.85rem; margin-bottom: 5px; }
.popular-post-info span { font-size: 0.7rem; color: var(--text-muted); }

/* Contact Page Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    padding: 80px 0;
}

.contact-info {
    background-color: var(--primary);
    color: white;
    padding: 50px;
    border-radius: var(--radius-md);
}

.info-item {
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.contact-form {
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background-color: var(--bg);
    color: var(--text);
    font-family: inherit;
}

.contact-socials { margin-top: 50px; }
.contact-socials a { color: white; font-size: 1.2rem; margin-right: 15px; }
.contact-socials a:last-child { margin-right: 0; }

/* Dashboard Specific Utilities */
.dash-header-title { font-size: 1.8rem; margin: 0; }
.dash-header-desc { color: var(--text-muted); font-size: 0.9rem; margin-top: 5px; }
.dash-profile { display: flex; gap: 20px; align-items: center; text-align: right; }
.dash-profile-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.dash-profile-meta { font-size: 0.8rem; color: var(--text-muted); }
.avatar { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.btn-sm { padding: 10px 20px !important; font-size: 0.75rem !important; }
.text-right { text-align: right !important; }
.grid-span-2 { grid-column: span 2; }
.m-0 { margin: 0 !important; }

/* Dashboard Charts */
.chart-container { height: 200px; display: flex; align-items: flex-end; gap: 15px; }
.chart-bar { flex: 1; background-color: var(--bg-alt); border-radius: 4px 4px 0 0; transition: var(--transition); }
.chart-bar.active { background-color: var(--accent); }
.chart-bar:hover { opacity: 0.8; }

/* Progress Bars */
.progress-list { margin-bottom: 25px; }
.progress-header { margin-bottom: 10px; display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--text); }
.progress-track { height: 8px; background-color: var(--bg-alt); border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; background-color: var(--accent); border-radius: 10px; }

.data-table-header h3 { margin: 0; font-size: 1.2rem; color: var(--text); }
.user-email-label { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 5px;}

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* Dashboard & Auth pages must remove the global body padding-top */
body.dashboard-body {
    background-color: var(--bg-alt);
    padding-top: 0 !important;
    margin: 0;
}

/* Auth pages (login, register) — full-page backgrounds handle their own spacing */
body.bg-primary {
    padding-top: 0 !important;
    background-color: var(--primary);
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
}

/* ===== Admin Sidebar ===== */
.sidebar {
    width: 260px;
    min-width: 260px;
    /* Use a fixed dark color — never inherit the --primary gold flip in dark mode */
    background-color: #121212;
    padding: 0;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: transform 0.3s ease;
    scrollbar-width: none;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.sidebar::-webkit-scrollbar { display: none; }

/* Dark mode keeps sidebar dark (not gold) */
[data-theme="dark"] .sidebar {
    background-color: #0d0d0d;
    border-right: 1px solid rgba(255,255,255,0.05);
}

/* Sidebar Logo Area */
.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
    gap: 4px;
    background: linear-gradient(135deg, rgba(212,175,55,0.06), transparent);
    transition: background var(--transition);
}
.sidebar-logo:hover {
    background: linear-gradient(135deg, rgba(212,175,55,0.14), transparent);
}

.sidebar-logo span {
    color: #D4AF37; /* Always gold — never use --accent which flips in dark mode */
}

/* Dark mode: logo text stays white, span stays gold */
[data-theme="dark"] .sidebar-logo {
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
[data-theme="dark"] .sidebar-logo span {
    color: #D4AF37;
}

.sidebar-menu {
    padding: 20px 12px;
    flex: 1;
}

.sidebar-menu li { margin-bottom: 4px; }
.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 18px;
    border-radius: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-menu a i { width: 18px; text-align: center; flex-shrink: 0; }

.sidebar-menu a:hover {
    background-color: rgba(212,175,55,0.12);
    color: #D4AF37;
}

.sidebar-menu a.active {
    background-color: #D4AF37; /* Always gold — fixed, not var(--accent) which turns cream in dark mode */
    color: #000000;
    box-shadow: 0 4px 14px rgba(212,175,55,0.35);
}

/* Dark mode sidebar menu — text slightly brighter, gold unchanged */
[data-theme="dark"] .sidebar-menu a {
    color: rgba(255,255,255,0.6);
}
[data-theme="dark"] .sidebar-menu a:hover {
    background-color: rgba(212,175,55,0.1);
    color: #D4AF37;
}
[data-theme="dark"] .sidebar-menu a.active {
    background-color: #D4AF37;
    color: #000000;
    box-shadow: 0 4px 14px rgba(212,175,55,0.2);
}

/* ===== Admin Main Content ===== */
.main-content {
    margin-left: 260px;
    flex: 1;
    padding: 0;
    min-width: 0;
    background-color: var(--bg-alt);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Admin Dashboard Top Header */
.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background-color: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-sidebar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.admin-sidebar-toggle:hover {
    background-color: var(--bg-alt);
}

.admin-topbar-title h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text);
    font-family: 'Playfair Display', serif;
}

.admin-topbar-title p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-topbar-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background-color: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50px;
}

.admin-topbar-badge .badge-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}

.admin-topbar-badge .badge-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.admin-topbar-badge .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37; /* Always gold — not var(--accent) which turns cream */
}

/* In dark mode, topbar theme toggle gets gold accent on hover */
[data-theme="dark"] .admin-topbar-theme:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    background-color: rgba(212,175,55,0.08);
}

.admin-topbar-theme {
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
    color: var(--text);
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.admin-topbar-theme:hover {
    background-color: var(--bg-alt);
    border-color: var(--accent);
    color: var(--accent);
}

.main-content-inner {
    padding: 40px;
    flex: 1;
}

/* ===== Stats Cards ===== */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dash-card {
    background-color: var(--bg);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.dash-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.dash-card h3 { color: var(--text); }
.dash-card h4 { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
.dash-card .value { font-size: 1.9rem; font-weight: 700; color: var(--text); font-family: 'Playfair Display', serif; }
.dash-card .trend { font-size: 0.75rem; margin-top: 10px; color: #48bb78; font-weight: 600; }
.dash-card .trend.text-muted { color: var(--text-muted) !important; }

/* ===== Data Table ===== */
.data-table {
    background-color: var(--bg);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 30px;
}

.data-table-header {
    padding: 22px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg);
}

.data-table table { width: 100%; border-collapse: collapse; }
.data-table th {
    text-align: left;
    background-color: var(--bg-alt);
    padding: 14px 24px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
    font-family: 'Montserrat', sans-serif;
}
.data-table td {
    padding: 16px 24px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background-color: var(--bg-alt); }

.status { padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.status-success { background-color: rgba(72,187,120,0.15); color: #22543d; }
.status-warning { background-color: rgba(237,137,54,0.15); color: #744210; }

[data-theme="dark"] .status-success { background-color: rgba(72,187,120,0.2); color: #9ae6b4; }
[data-theme="dark"] .status-warning { background-color: rgba(237,137,54,0.2); color: #fbd38d; }

/* ===== Admin Alerts Panel Dark Mode ===== */
.alert-panel-item {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 12px;
    border-left: 4px solid;
}

.alert-panel-item-warning {
    background-color: #fffaf0;
    border-color: #d69e2e;
}
.alert-panel-item-warning .alert-title { font-weight: 700; color: #975a16; font-size: 0.95rem; margin-bottom: 5px; }
.alert-panel-item-warning .alert-desc { font-size: 0.85rem; color: #744210; }

.alert-panel-item-danger {
    background-color: #fff5f5;
    border-color: #e53e3e;
}
.alert-panel-item-danger .alert-title { font-weight: 700; color: #9b2c2c; font-size: 0.95rem; margin-bottom: 5px; }
.alert-panel-item-danger .alert-desc { font-size: 0.85rem; color: #742a2a; }

.alert-panel-item-info {
    background-color: #ebf8ff;
    border-color: #3182ce;
}
.alert-panel-item-info .alert-title { font-weight: 700; color: #2c5282; font-size: 0.95rem; margin-bottom: 5px; }
.alert-panel-item-info .alert-desc { font-size: 0.85rem; color: #2a4365; }

[data-theme="dark"] .alert-panel-item-warning { background-color: rgba(214,158,46,0.12); border-color: #d69e2e; }
[data-theme="dark"] .alert-panel-item-warning .alert-title { color: #fbd38d; }
[data-theme="dark"] .alert-panel-item-warning .alert-desc { color: #faf089; }

[data-theme="dark"] .alert-panel-item-danger { background-color: rgba(229,62,62,0.12); border-color: #e53e3e; }
[data-theme="dark"] .alert-panel-item-danger .alert-title { color: #feb2b2; }
[data-theme="dark"] .alert-panel-item-danger .alert-desc { color: #fc8181; }

[data-theme="dark"] .alert-panel-item-info { background-color: rgba(49,130,206,0.12); border-color: #3182ce; }
[data-theme="dark"] .alert-panel-item-info .alert-title { color: #90cdf4; }
[data-theme="dark"] .alert-panel-item-info .alert-desc { color: #bee3f8; }

/* System health circles */
.health-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.health-item {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 20px;
}

.health-item-label { font-weight: 700; font-size: 1rem; color: var(--text); }
.health-item-desc { font-size: 0.82rem; color: var(--text-muted); margin-top: 3px; }

/* Admin Responsive */
@media (max-width: 1200px) {
    .stats-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .admin-sidebar-toggle { display: flex; }
    .sidebar {
        width: 260px;
        transform: translateX(-260px);
    }
    .sidebar.open {
        transform: translateX(0);
        box-shadow: 4px 0 30px rgba(0,0,0,0.3);
    }
    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        backdrop-filter: blur(2px);
    }
    .sidebar-overlay.active { display: block; }
    .main-content { margin-left: 0; }
    .admin-topbar { padding: 14px 20px; }
    .main-content-inner { padding: 24px 20px; }
    .stats-cards { grid-template-columns: repeat(2, 1fr); }
    .grid-span-2 { grid-column: span 1; }
}

@media (max-width: 600px) {
    .stats-cards { grid-template-columns: 1fr; }
    .admin-topbar-badge { display: none; }
}

/* ===== User Dashboard Styles ===== */
.user-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.user-sidebar {
    background-color: var(--bg);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: fit-content;
    position: sticky;
    top: 90px;
    transition: var(--transition);
}

.user-avatar { text-align: center; margin-bottom: 28px; }
.user-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 14px;
    border: 3px solid var(--accent);
    display: block;
}
.user-avatar h3 { font-size: 1.15rem; margin-bottom: 4px; color: var(--text); }
.user-avatar p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.side-menu { border-top: 1px solid var(--border); padding-top: 18px; }
.side-menu li { margin-bottom: 4px; }
.side-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}
.side-menu a i { width: 16px; text-align: center; flex-shrink: 0; }
.side-menu a:hover { background-color: var(--bg-alt); color: var(--text); }
.side-menu a.active { background-color: var(--accent); color: #000 !important; box-shadow: 0 4px 12px rgba(212,175,55,0.25); }

/* User Mobile Sidebar Toggle */
.user-sidebar-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
    color: var(--text);
    font-size: 0.88rem;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: var(--transition);
}
.user-sidebar-toggle:hover { border-color: var(--accent); color: var(--accent); }

.user-content { display: flex; flex-direction: column; gap: 24px; }

.dash-section {
    background-color: var(--bg);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.dash-section h2 { color: var(--text); }

.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-radius: 10px;
    background-color: var(--bg-alt);
    border: 1px solid var(--border);
    margin-bottom: 12px;
    transition: var(--transition);
}
.booking-item:hover { border-color: var(--accent); }

.pref-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pref-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background-color: var(--bg-alt);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.pref-item:hover { border-color: var(--accent); }
.pref-item i { color: var(--accent); }

/* Loyalty progress bar */
.loyalty-progress-track {
    height: 10px;
    background-color: var(--bg-alt);
    border-radius: 10px;
    margin-top: 25px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.loyalty-progress-fill {
    height: 100%;
    width: 80%;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 10px;
}

/* Favorite chef cards */
.chef-quick-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background-color: var(--bg-alt);
    transition: var(--transition);
}
.chef-quick-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.chef-quick-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    border: 2px solid var(--accent);
    display: block;
}
.chef-quick-card h3 { font-size: 1.05rem; margin-bottom: 5px; color: var(--text); }
.chef-quick-card p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 14px; }

/* Authentication Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1550966841-3ee7adac1661?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
}

.auth-card {
    background-color: var(--white);
    width: 100%;
    max-width: 450px;
    padding: 50px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    text-align: center;
}

.auth-card h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.auth-footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--accent);
    font-weight: 700;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.terms-container {
    text-align: left;
    margin: 10px 0 25px;
}

.terms-label {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    text-transform: none !important;
}

.terms-checkbox {
    width: auto !important;
    margin-top: 3px !important;
}

@media (max-width: 1024px) {
    .user-grid {
        grid-template-columns: 1fr;
    }
    .user-sidebar {
        display: none;
        position: relative;
        top: auto;
    }
    .user-sidebar.open {
        display: block;
    }
    .user-sidebar-toggle { display: flex; }
}

@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .pref-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   NEW UPGRADE: Unique Page Sections Infrastructure
   ========================================================================== */

/* ─── Timeline (About Page) ─── */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
    padding: 20px 0;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border);
    top: 0; bottom: 0; left: 50%;
    margin-left: -1px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px; height: 16px;
    right: -8px; top: 15px;
    background: var(--accent);
    border: 3px solid var(--bg);
    border-radius: 50%;
    z-index: 1;
}
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }
.timeline-item.right::after { left: -8px; }
.timeline-content {
    padding: 20px 30px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.timeline-content:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.timeline-content h3 { color: var(--accent); margin-bottom: 5px; }

/* ─── Team/Awards/Values Grids ─── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.team-card {
    text-align: center;
    padding: 30px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-10px); }
.team-img {
    width: 150px; height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid var(--accent);
}

/* ─── Modern Awards Split Section ─── */
.awards-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-alt);
    padding: 60px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.award-modern-card {
    background: var(--bg);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.award-modern-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.award-modern-card img {
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}

.award-modern-card span {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* ─── Philosophy & Calendar (Menus Page) ─── */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.seasonal-calendar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.season-card {
    padding: 25px;
    text-align: center;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    border-top: 4px solid var(--accent);
    transition: var(--transition);
}
.season-card:hover { background: var(--white); transform: scale(1.05); }

/* ─── Premium Sommelier Section ─── */
.sommelier-banner {
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.sommelier-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('assets/images/texture-pattern.png'); /* If available, or just a subtle noise */
    opacity: 0.03;
    pointer-events: none;
}

.wine-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.wine-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.wine-card-premium:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.wine-icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
}

.wine-card-premium:hover .wine-icon-wrapper {
    background: var(--accent);
    transform: rotateY(180deg);
}

.wine-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.wine-card-premium:hover .wine-icon-wrapper i {
    color: var(--primary);
}

.wine-card-premium h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.wine-card-premium p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

/* ─── Gallery & Packages (Experiences Page) ─── */
.gallery-masonry {
    columns: 3 300px;
    column-gap: 20px;
}
.gallery-item {
    margin-bottom: 20px;
    break-inside: avoid;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%; transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.tier-card {
    padding: 40px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}
.tier-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    background: var(--white);
}
.tier-card h3 { font-size: 1.8rem; margin-bottom: 10px; }
.price-tag { font-size: 2.5rem; font-weight: 800; color: var(--accent); margin-bottom: 25px; }

/* ─── Video & Social (Blog/Other) ─── */
.video-banner {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 40px;
}
.play-btn {
    width: 80px; height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: var(--transition);
}
.play-btn:hover { transform: scale(1.1); background: var(--accent); color: white; }

.newsletter-box {
    background: var(--primary);
    color: white;
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
}
.newsletter-box h2 { color: white; }
.newsletter-box input {
    padding: 15px 25px;
    width: 300px;
    border: none;
    border-radius: var(--radius-sm);
    margin-right: 15px;
}

/* ─── Shop Components ─── */
.category-strip {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    margin-bottom: 40px;
}
.cat-item {
    flex-shrink: 0;
    padding: 15px 35px;
    background: var(--bg-alt);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}
.cat-item:hover, .cat-item.active { background: var(--accent); color: white; }

.bundle-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    overflow: hidden;
    align-items: center;
    margin: 60px 0;
}
.bundle-content { padding: 60px; }
.benefits-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

/* ─── Auth Extra Sections ─── */
.privilege-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.privilege-card {
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    text-align: center;
}
.privilege-card i { font-size: 1.5rem; color: var(--accent); margin-bottom: 10px; }

/* ─── Extra Utilities ─── */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.bg-accent { background-color: var(--accent); color: white; }
.text-white { color: white !important; }
.p-100-0 { padding: 100px 0; }
.m-100-0 { margin: 100px 0; }

@media (max-width: 1024px) {
    .philosophy-grid, .bundle-card, .tier-grid, .awards-split { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item.left { text-align: left; }
    .timeline-item.right { left: 0; }
    .timeline-item::after { left: 22px; right: auto; }
    .seasonal-calendar, .benefits-row { grid-template-columns: 1fr 1fr; }
    .awards-split { padding: 40px 20px; }
    .awards-grid { grid-template-columns: 1fr; }
    .newsletter-box input { width: 100%; margin-bottom: 20px; }
    .gallery-masonry { columns: 1; }
}

/* ─── NEW: Home 2 Unique Components ─── */

.split-hero {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .split-hero {
        flex-direction: column;
    }
    .split-hero > div {
        min-height: 50vh;
    }
}

.marquee-track {
    animation: marquee 20s linear infinite;
    display: flex;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.category-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    z-index: 0;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-card:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.category-card h3, .category-card p {
    position: relative;
    z-index: 1;
}

/* ─── Footer Layout Quick Fix ─── */
footer {
    border-top: 1px solid var(--border);
}
