/* ============================================
   F&B AMERICAN BLACK AND BROWN PIZZA PLACE
   PREMIUM REDESIGN — CONSOLIDATED STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
    --color-primary: #1a1a1a;
    --color-secondary: #2a2a2a;
    --color-accent: #a0522d;
    --color-accent-light: #c47a4a;
    --color-brown: #6f4e37;
    --color-dark-brown: #2c1810;
    --color-rich-brown: #3e2723;
    --color-light-brown: #d7ccc8;
    --color-cream: #fdf6ee;
    --color-warm-white: #faf7f2;
    --color-bg: #f5f0eb;
    --color-white: #ffffff;
    --color-text: #1a1a1a;
    --color-text-light: #5a5a5a;
    --color-gold: #d4a017;
    --color-gold-light: #f0c75e;
    --color-red-badge: #c0392b;
    --color-green-badge: #27ae60;
    --gradient-hero: linear-gradient(135deg, #1a1a1a 0%, #2c1810 40%, #3e2723 70%, #1a1a1a 100%);
    --gradient-dark: linear-gradient(135deg, #2c1810 0%, #1a0f0a 50%, #3e2723 100%);
    --gradient-warm: linear-gradient(135deg, #fdf6ee 0%, #f5ebe0 50%, #faf7f2 100%);
    --gradient-accent: linear-gradient(135deg, #a0522d 0%, #c47a4a 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.18);
    --shadow-glow: 0 0 30px rgba(160, 82, 45, 0.3);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 999px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
    padding-top: 64px;
}

/* Grain Texture Overlay (reusable) */
.section-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
    z-index: 0;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    background: var(--color-dark-brown);
    color: var(--color-cream);
    border: 2px solid var(--color-accent);
    text-decoration: none;
    transform: translateY(-200%);
    transition: transform var(--transition-fast);
    z-index: 2000;
    font-weight: 600;
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid var(--color-gold);
    outline-offset: 2px;
}

*:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================
   GLOBAL SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1a0f0a;
    /* Dark brown tracking */
}

::-webkit-scrollbar-thumb {
    background: #5c3a21;
    /* Accent color base */
    border-radius: 6px;
    border: 2px solid #1a0f0a;
    /* Add padding effect */
}

::-webkit-scrollbar-thumb:hover {
    background: #a0522d;
    /* Brighter accent on hover */
}

html {
    scrollbar-width: thin;
    scrollbar-color: #5c3a21 #1a0f0a;
}


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 90px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--color-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 1500;
    transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
}

.back-to-top:hover,
.back-to-top:focus {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ============================================
   FLOATING ORDER CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: var(--color-white);
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 32px rgba(160, 82, 45, 0.45);
    transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
    animation: ctaPulse 3s ease-in-out infinite;
}

.floating-cta:hover,
.floating-cta:focus {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(160, 82, 45, 0.55);
}

.floating-cta-icon {
    font-size: 1.3rem;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(160, 82, 45, 0.45);
    }

    50% {
        box-shadow: 0 8px 32px rgba(160, 82, 45, 0.7), 0 0 20px rgba(160, 82, 45, 0.3);
    }
}

.wrapper {
    width: 100%;
    background: var(--color-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: var(--gradient-dark);
    border-bottom: 3px solid var(--color-accent);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-cream);
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
}

.nav-brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 1px;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0;
    margin: 0;
}

.nav-link {
    color: var(--color-light-brown);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: all var(--transition-smooth);
    font-size: 0.92rem;
    border: 2px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color-white);
    background: rgba(160, 82, 45, 0.2);
    border-color: rgba(160, 82, 45, 0.3);
}

.nav-link-cta {
    background: var(--gradient-accent) !important;
    color: var(--color-white) !important;
    font-weight: 700;
    border: none !important;
}

.nav-link-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: var(--spacing-sm);
    gap: 5px;
    z-index: 10;
}

.nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--color-light-brown);
    border-radius: 3px;
    transition: all var(--transition-smooth);
    transform-origin: center;
}

.nav-toggle:checked+.hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle:checked+.hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle:checked+.hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO HEADER
   ============================================ */
.header {
    background: var(--gradient-hero);
    color: var(--color-white);
    padding: var(--spacing-2xl) var(--spacing-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(160, 82, 45, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(196, 122, 74, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.06;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-logo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    border: 5px solid var(--color-accent);
    box-shadow: 0 0 40px rgba(160, 82, 45, 0.5), 0 0 80px rgba(160, 82, 45, 0.2);
    transition: transform var(--transition-bounce);
    animation: logoGlow 4s ease-in-out infinite alternate;
}

.header-logo:hover {
    transform: scale(1.08) rotate(2deg);
}

@keyframes logoGlow {
    0% {
        box-shadow: 0 0 40px rgba(160, 82, 45, 0.4), 0 0 80px rgba(160, 82, 45, 0.15);
    }

    100% {
        box-shadow: 0 0 50px rgba(160, 82, 45, 0.6), 0 0 100px rgba(160, 82, 45, 0.25);
    }
}

.logo {
    font-family: 'Playfair Display', serif;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.logo-line-1 {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 8px;
    opacity: 0.9;
    animation: slideRight 1s ease-out 0.3s both;
}

.logo-line-2 {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-light) 50%, var(--color-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideLeft 1s ease-out 0.5s both;
}

.tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    opacity: 0.85;
    animation: fadeUp 1s ease-out 0.7s both;
}

.intro {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto var(--spacing-xs);
    opacity: 0.8;
    animation: fadeUp 1s ease-out 0.9s both;
}

.hero-sub {
    font-size: 0.95rem;
    opacity: 0.6;
    margin-bottom: var(--spacing-md);
    animation: fadeUp 1s ease-out 1s both;
}

.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gradient-accent);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(160, 82, 45, 0.4);
    transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
    animation: fadeUp 1s ease-out 1.1s both;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(160, 82, 45, 0.55);
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 0.9;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.main-content {
    flex: 1;
}

section {
    position: relative;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--gradient-warm);
    padding: var(--spacing-2xl) var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.9;
    color: var(--color-text);
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
    min-width: 280px;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-smooth);
}

.about-image:hover {
    transform: scale(1.02);
}

.cta-button {
    display: inline-block;
    margin-top: var(--spacing-sm);
    padding: 14px 32px;
    background: var(--gradient-accent);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
    box-shadow: 0 6px 24px rgba(160, 82, 45, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(160, 82, 45, 0.45);
}

/* ============================================
   OWNERS SECTION
   ============================================ */
.owners-section {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: var(--color-warm-white);
    position: relative;
    overflow: hidden;
}

.owners-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    justify-items: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.owner-card {
    text-align: center;
    padding: var(--spacing-md);
}

.owner-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: var(--spacing-md);
    border: 5px solid var(--color-accent);
    transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
}

.owner-image:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 12px 40px rgba(160, 82, 45, 0.3);
}

.owner-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin: 0 0 var(--spacing-sm);
}

.owner-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.owners-story {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-cream) 0%, #fff5eb 100%);
    border-left: 5px solid var(--color-accent);
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.owners-story h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: var(--spacing-md);
}

.owners-story p {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.9;
    font-weight: 300;
}

/* ============================================
   SPECIALS SECTION
   ============================================ */
.specials-section {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.specials-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.special-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.special-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.special-image-wrap {
    position: relative;
    overflow: hidden;
}

.special-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.special-card:hover .special-image {
    transform: scale(1.1);
}

/* Diagonal Ribbon Banner */
.special-ribbon {
    position: absolute;
    top: 20px;
    left: -35px;
    background: var(--gradient-accent);
    color: var(--color-white);
    padding: 8px 40px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Limited Time Badge */
.limited-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--color-gold-light);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    animation: limitedPulse 2s ease-in-out infinite;
}

@keyframes limitedPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.special-body {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.special-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: var(--spacing-xs);
}

.special-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
}

.special-price {
    margin-bottom: var(--spacing-md);
}

.discount-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.special-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px var(--spacing-md);
    background: var(--gradient-dark);
    color: var(--color-cream);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-pill);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-smooth);
    margin-top: auto;
}

.special-button:hover {
    background: var(--gradient-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.special-button.item-order-btn {
    margin: auto 0 0 0;
    width: 100%;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section-container {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: var(--gradient-warm);
    position: relative;
    overflow: hidden;
}

.menu-section-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Polished Pill Tabs */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: var(--spacing-lg);
    justify-content: center;
    position: relative;
    z-index: 1;
}

.tab-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tab-button {
    border: 2px solid var(--color-light-brown);
    background: var(--color-white);
    color: var(--color-dark-brown);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    display: inline-block;
}

.tab-button:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

#tab-all:checked~.menu-tabs label[for="tab-all"],
#tab-appetizers:checked~.menu-tabs label[for="tab-appetizers"],
#tab-mains:checked~.menu-tabs label[for="tab-mains"],
#tab-desserts:checked~.menu-tabs label[for="tab-desserts"],
#tab-beverages:checked~.menu-tabs label[for="tab-beverages"] {
    background: var(--gradient-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
    box-shadow: 0 6px 20px rgba(160, 82, 45, 0.35);
    transform: translateY(-2px);
}

/* Tab Visibility */
.menu-sections .menu-section {
    display: none;
}

#tab-all:checked~.menu-sections .menu-section {
    display: block;
}

#tab-appetizers:checked~.menu-sections #appetizers {
    display: block;
}

#tab-mains:checked~.menu-sections #mains {
    display: block;
}

#tab-desserts:checked~.menu-sections #desserts {
    display: block;
}

#tab-beverages:checked~.menu-sections #beverages {
    display: block;
}

.menu-section {
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.5px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
    margin-top: var(--spacing-xs);
}

/* Menu Items */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.menu-item {
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 2px solid #e8e0d8;
    border-radius: var(--radius-md);
    background: var(--color-white);
    transition: all var(--transition-smooth);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.menu-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.menu-item:hover .menu-item-image {
    transform: scale(1.08);
}

.item-content {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md) 0;
}

.item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: 4px;
    line-height: 1.3;
}

.item-description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: var(--spacing-xs);
}

/* Prominent Price */
.item-price {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md) 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-accent);
    letter-spacing: 0.5px;
}

/* Add to Cart Button */
.item-order-btn {
    display: block;
    width: calc(100% - 2 * var(--spacing-md));
    margin: var(--spacing-xs) var(--spacing-md) var(--spacing-md);
    padding: 10px 16px;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--gradient-accent);
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease,
        filter 0.3s ease;
    box-shadow: 0 4px 16px rgba(160, 82, 45, 0.3);
}

.item-order-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(160, 82, 45, 0.5);
    filter: brightness(1.1);
}

.item-order-btn:active {
    transform: scale(0.97);
}

/* Menu Badges */
.item-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.item-badge-bestseller {
    background: linear-gradient(135deg, #f0c75e, #d4a017);
    color: #3e2723;
}

.item-badge-popular {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--color-white);
}

.item-badge-new {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: var(--color-white);
}

/* Featured Item */
.menu-item-featured {
    border-color: var(--color-gold);
    border-width: 3px;
    background: linear-gradient(135deg, #fffef5 0%, var(--color-white) 100%);
}

.menu-item-featured:hover {
    box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 160, 23, 0.3);
}

.hidden {
    display: none !important;
}

/* ============================================
   ORDER SECTION
   ============================================ */
.order-section {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: var(--gradient-warm);
    position: relative;
    overflow: hidden;
}

.order-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.order-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark-brown);
}

.order-header p {
    color: var(--color-text-light);
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.order-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-md);
}

.order-pill {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(160, 82, 45, 0.2);
    color: var(--color-dark-brown);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.92rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(4px);
}

/* Step Indicators */
.order-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-light-brown);
    color: var(--color-dark-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-smooth);
}

.step-active .step-number {
    background: var(--gradient-accent);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(160, 82, 45, 0.4);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.step-active .step-label {
    color: var(--color-accent);
}

.step-connector {
    width: 60px;
    height: 3px;
    background: var(--color-light-brown);
    border-radius: 3px;
    margin-bottom: 20px;
}

/* Order Form */
.order-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    background: var(--color-white);
    border: 1px solid #e8e0d8;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-md);
}

.order-card {
    border: 1px solid #e8e0d8;
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    background: var(--color-warm-white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-smooth);
}

.order-card:hover {
    box-shadow: var(--shadow-md);
}

.order-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark-brown);
    border-bottom: 3px solid var(--color-accent);
    padding-bottom: 8px;
}

.order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    padding: 10px 0;
    border-bottom: 1px dashed #e0d6cc;
    font-size: 0.95rem;
    transition: background var(--transition-fast);
}

.order-item:hover {
    background: rgba(160, 82, 45, 0.03);
}

.order-item:last-of-type {
    border-bottom: none;
}

.order-price {
    display: block;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 2px;
    font-size: 0.9rem;
}

.order-item input[type="number"] {
    width: 72px;
    padding: 10px 8px;
    border: 2px solid #e0d6cc;
    border-radius: var(--radius-pill);
    text-align: center;
    font-weight: 600;
    color: var(--color-dark-brown);
    background: var(--color-white);
    font-size: 1rem;
    transition: all var(--transition-fast);
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
}

.order-item input[type="number"]:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.15);
    background: var(--color-cream);
}

/* Floating Labels */
.form-group-floating {
    position: relative;
}

.form-group-floating input {
    width: 100%;
    padding: 18px 16px 8px;
    border: 2px solid #e0d6cc;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: var(--color-white);
    transition: all var(--transition-fast);
    color: var(--color-text);
}

.form-group-floating label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--color-text-light);
    pointer-events: none;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.form-group-floating input:focus,
.form-group-floating input:not(:placeholder-shown) {
    border-color: var(--color-accent);
    padding-top: 22px;
    padding-bottom: 6px;
}

.form-group-floating input:focus+label,
.form-group-floating input:not(:placeholder-shown)+label {
    top: 12px;
    transform: translateY(0);
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 700;
}

.form-group-floating input:focus {
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.15);
}

.order-customer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
}

.order-notes label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark-brown);
}

.order-notes textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid #e0d6cc;
    border-radius: var(--radius-sm);
    min-height: 120px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: all var(--transition-fast);
}

.order-notes textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.15);
    outline: none;
}

.submit-button {
    width: 100%;
    padding: 16px var(--spacing-md);
    background: var(--gradient-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all var(--transition-bounce);
    box-shadow: 0 8px 30px rgba(160, 82, 45, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(160, 82, 45, 0.45);
}

.order-disclaimer {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: var(--spacing-xs);
    text-align: center;
}

/* ============================================
   ORDER SECTION
   ============================================ */
.order-section {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: var(--color-warm-white);
    position: relative;
    overflow: hidden;
}

.order-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.order-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: var(--spacing-sm);
}

.order-header p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: var(--spacing-md);
}

.order-quick-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
}

.order-pill {
    background: rgba(160, 82, 45, 0.1);
    color: var(--color-dark-brown);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    border: 1px solid rgba(160, 82, 45, 0.2);
}

/* Steps */
.order-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.step-active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-light-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-text-light);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.step-active .step-number {
    background: var(--gradient-accent);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(160, 82, 45, 0.3);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark-brown);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.step-connector {
    height: 2px;
    width: 40px;
    background: var(--color-light-brown);
    margin-top: -20px;
}

.step-active+.step-connector {
    background: var(--gradient-accent);
}

/* Order Form Layout */
.order-form {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.order-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--color-accent);
}

.order-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--color-dark-brown);
    margin-bottom: var(--spacing-md);
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(160, 82, 45, 0.1);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--color-light-brown);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.order-item:hover {
    background: rgba(160, 82, 45, 0.02);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item span {
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.4;
}

.order-price {
    color: var(--color-accent) !important;
    font-weight: 700 !important;
    font-size: 0.9rem;
}

.order-item input[type="number"] {
    width: 60px;
    padding: 8px;
    border: 2px solid #e0d6cc;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.order-item input[type="number"]:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.15);
}

/* Customer Details */
.order-customer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
}

/* Floating Label for Customer Inputs (reusing modal pattern) */
.form-group-floating {
    position: relative;
    margin-bottom: 0;
}

.form-group-floating input {
    width: 100%;
    padding: 18px 14px 10px;
    border: 2px solid #e0d6cc;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--color-white);
}

.form-group-floating label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-light);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.25s ease;
    background: var(--color-white);
    padding: 0 4px;
}

.form-group-floating input:focus,
.form-group-floating input:not(:placeholder-shown) {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.1);
}

.form-group-floating input:focus+label,
.form-group-floating input:not(:placeholder-shown)+label {
    top: 0;
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 700;
}

.order-notes {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
}

.order-notes label {
    display: block;
    font-weight: 600;
    color: var(--color-dark-brown);
    margin-bottom: 12px;
}

.order-notes textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid #e0d6cc;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: border-color var(--transition-fast);
}

.order-notes textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.15);
}

.submit-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto var(--spacing-sm);
    padding: 16px 32px;
    background: var(--gradient-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(160, 82, 45, 0.35);
    transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(160, 82, 45, 0.5);
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.order-disclaimer {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: var(--gradient-dark);
    position: relative;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-item {
    background: rgba(255, 255, 255, 0.06);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--color-accent);
    transition: background var(--transition-fast);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-label {
    display: block;
    font-weight: 700;
    color: var(--color-accent-light);
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
}

.contact-item p {
    color: var(--color-light-brown);
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-item small {
    opacity: 0.7;
}

.contact-link {
    color: var(--color-gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
    border-bottom: 1px dashed var(--color-gold);
}

.contact-link:hover {
    color: var(--color-white);
}

.contact-map {
    margin-top: var(--spacing-sm);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label-static {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark-brown);
}

.contact-form textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid #e0d6cc;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: all var(--transition-fast);
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
    margin-bottom: var(--spacing-xs);
}

.footer-name {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.7;
    font-size: 0.9rem;
    color: var(--color-light-brown);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
    color: var(--color-accent-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    transition: color var(--transition-fast);
    padding: 4px 8px;
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-sitemap {
    margin-bottom: var(--spacing-sm);
}

.footer-sitemap p {
    font-size: 0.85rem;
    color: var(--color-light-brown);
    opacity: 0.7;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width:768px) {
    .header {
        min-height: 420px;
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .logo-line-1 {
        font-size: 1.5rem;
        letter-spacing: 6px;
    }

    .logo-line-2 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .intro {
        font-size: 1rem;
    }

    .header-logo {
        width: 130px;
        height: 130px;
    }

    .hero-cta {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .nav-list {
        gap: 4px;
    }

    .nav-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .about-section,
    .owners-section,
    .specials-section,
    .menu-section-container,
    .order-section,
    .reviews-section,
    .contact-section {
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .about-section h2,
    .owners-section h2,
    .specials-section h2,
    .menu-section-container h2,
    .order-header h2,
    .reviews-section h2,
    .contact-section h2 {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .menu-items {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .reviews-container {
        grid-template-columns: 1fr;
    }

    .specials-grid {
        grid-template-columns: 1fr;
    }

    .order-steps {
        flex-wrap: wrap;
    }

    .step-connector {
        width: 30px;
    }

    .floating-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .back-to-top {
        right: 16px;
        bottom: 80px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width:600px) {
    .hamburger {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--gradient-dark);
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-bottom: 3px solid var(--color-accent);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform var(--transition-smooth), opacity var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .nav-toggle:checked~.nav-list {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 16px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1rem;
    }

    .nav-link-cta {
        border-radius: 0 !important;
        margin: 0;
    }

    .header {
        min-height: 380px;
    }

    .header-logo {
        width: 110px;
        height: 110px;
        border-width: 4px;
    }

    .logo-line-1 {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .logo-line-2 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .order-grid {
        grid-template-columns: 1fr;
    }

    .order-customer {
        grid-template-columns: 1fr;
    }

    .order-item {
        flex-direction: column;
        align-items: stretch;
    }

    .order-item input[type="number"] {
        width: 100%;
        padding: 14px;
        font-size: 1.1rem;
    }

    .summary-score {
        font-size: 3rem;
    }

    .summary-stars {
        font-size: 1.5rem;
    }

    .owners-grid {
        grid-template-columns: 1fr;
    }

    .owner-image {
        width: 150px;
        height: 150px;
    }

    .footer-nav {
        gap: var(--spacing-xs);
    }

    .floating-cta-text {
        display: none;
    }

    .floating-cta {
        padding: 14px;
        border-radius: 50%;
    }
}

@media (max-width:400px) {
    .header {
        min-height: 340px;
        padding: var(--spacing-lg) var(--spacing-xs);
    }

    .logo-line-2 {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 0.8rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .step-number {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }

    .step-connector {
        width: 20px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    body {
        background: #fff;
        color: #000;
    }

    .navbar,
    .footer,
    .hamburger,
    .floating-cta,
    .back-to-top,
    .section-grain {
        display: none !important;
    }

    .header {
        min-height: unset;
        background: #fff;
        color: #000;
    }

    .header-overlay,
    .header::before {
        display: none;
    }

    .menu-section,
    .specials-section,
    .reviews-section,
    .contact-section {
        page-break-inside: avoid;
    }
}

/* ============================================
   LOGIN & SIGNUP MODAL (Pure CSS, No JavaScript)
   ============================================ */

/* --- Hidden Toggle Inputs --- */
.modal-toggle,
.modal-flip-toggle,
.pw-show-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* --- Scroll Lock via :has() --- */
body:has(.modal-toggle:checked) {
    overflow: hidden;
}

/* --- Nav Trigger Button --- */
.nav-link-login {
    cursor: pointer;
    color: var(--color-gold-light) !important;
    border: 2px solid var(--color-gold) !important;
    font-weight: 600 !important;
    transition: all var(--transition-smooth);
}

.nav-link-login:hover,
.nav-link-login:focus {
    background: var(--color-gold) !important;
    color: var(--color-dark-brown) !important;
    transform: scale(1.05);
}

/* --- Overlay --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}

#modal-toggle:checked~.modal-overlay:not(.cart-overlay):not(.checkout-overlay):not(.reservation-overlay):not(.account-overlay):not(.admin-overlay) {
    opacity: 1;
    visibility: visible;
}

#add-cart-toggle:checked~.cart-overlay {
    opacity: 1;
    visibility: visible;
}

#checkout-toggle:checked~.checkout-overlay,
#reservation-toggle:checked~.reservation-overlay,
#account-toggle:checked~.account-overlay {
    opacity: 1;
    visibility: visible;
}

/* --- Container --- */
.modal-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    perspective: 1200px;
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

#modal-toggle:checked~.modal-overlay:not(.cart-overlay):not(.checkout-overlay):not(.reservation-overlay):not(.account-overlay):not(.admin-overlay) .modal-container,
#add-cart-toggle:checked~.cart-overlay .modal-container,
#checkout-toggle:checked~.checkout-overlay .modal-container,
#reservation-toggle:checked~.reservation-overlay .modal-container,
#account-toggle:checked~.account-overlay .modal-container {
    transform: scale(1);
    opacity: 1;
}

/* --- Close Button --- */
.modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 20;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-bounce), background var(--transition-fast);
    text-decoration: none;
}

.modal-close:hover,
.modal-close:focus {
    transform: scale(1.15) rotate(90deg);
    background: #c0392b;
}

/* --- 3D Flipper --- */
.modal-flipper {
    position: relative;
    width: 100%;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
}

.modal-flip-toggle:checked~.modal-overlay:not(.cart-overlay):not(.checkout-overlay):not(.admin-overlay) .modal-flipper {
    transform: rotateY(180deg);
}

/* --- Panels (Front / Back) --- */
.modal-panel {
    width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 36px 32px 28px;
    background: linear-gradient(160deg, #2c1810 0%, #1a0f0a 40%, #2a1a10 100%);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 40px rgba(160, 82, 45, 0.15);
    overflow-y: auto;
    max-height: 90vh;
}

.modal-panel-login {
    position: relative;
    z-index: 2;
}

.modal-panel-signup {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
    z-index: 1;
}

/* --- Monogram Logo --- */
.modal-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-monogram {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 1px;
    box-shadow: 0 0 0 4px rgba(160, 82, 45, 0.3), 0 0 30px rgba(160, 82, 45, 0.25);
    animation: monogramBreathe 3s ease-in-out infinite;
}

.modal-monogram-signup {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #c47a4a, #a0522d);
    box-shadow: 0 0 0 4px rgba(196, 122, 74, 0.3), 0 0 30px rgba(196, 122, 74, 0.25);
}

@keyframes monogramBreathe {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(160, 82, 45, 0.3), 0 0 30px rgba(160, 82, 45, 0.2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(160, 82, 45, 0.15), 0 0 50px rgba(160, 82, 45, 0.35);
    }
}

/* --- Headings --- */
.modal-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-cream);
    text-align: center;
    margin-bottom: 4px;
}

.modal-subheading {
    text-align: center;
    color: var(--color-light-brown);
    font-size: 0.88rem;
    margin-bottom: 24px;
    opacity: 0.8;
}

/* --- Form --- */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* --- Floating Label Fields --- */
.modal-field {
    position: relative;
}

.modal-field input,
.modal-field select,
.modal-field textarea {
    width: 100%;
    padding: 16px 14px 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(215, 204, 200, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-cream);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.modal-field select {
    cursor: pointer;
    padding-right: 36px;
    height: 48px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23a0522d' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    appearance: none;
    -webkit-appearance: none;
}

.modal-field select option {
    background: #2c1810;
    color: var(--color-cream);
    font-size: 0.8rem;
    padding: 2px 6px;
    line-height: 1.2;
}


.modal-field label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-light-brown);
    font-size: 0.92rem;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.25s ease;
}

.modal-field input:focus,
.modal-field input:not(:placeholder-shown),
.modal-field select:focus,
.modal-field select:valid,
.modal-field textarea:focus,
.modal-field textarea:not(:placeholder-shown) {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.09);
    padding-top: 20px;
    padding-bottom: 6px;
}

.modal-field input:focus+label,
.modal-field input:not(:placeholder-shown)+label,
.modal-field select:focus+label,
.modal-field select:valid+label,
.modal-field textarea:focus+label,
.modal-field textarea:not(:placeholder-shown)+label {
    top: 10px;
    transform: translateY(0);
    font-size: 0.7rem;
    color: var(--color-accent-light);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Border glow pulse */
.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.2), 0 0 20px rgba(160, 82, 45, 0.1);
}

/* Animated left-border micro-interaction */
.field-border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    border-radius: 3px 0 0 3px;
    transition: background 0.3s ease;
}

.modal-field input:focus~.field-border,
.modal-field select:focus~.field-border,
.modal-field textarea:focus~.field-border {
    background: var(--color-accent);
}

/* --- Password Eye Toggle --- */
.modal-field-pw {
    position: relative;
}

.pw-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
    z-index: 2;
}

.pw-eye:hover {
    opacity: 1;
}

/* When checked, change password inputs to text-like appearance (visual hint only — true toggle requires JS) */
#pw-show-login:checked~.modal-overlay:not(.cart-overlay):not(.checkout-overlay):not(.admin-overlay) .modal-panel-login .modal-field-pw .pw-eye,
#pw-show-signup:checked~.modal-overlay:not(.cart-overlay):not(.checkout-overlay):not(.admin-overlay) .modal-panel-signup .modal-field-pw .pw-eye {
    opacity: 1;
    color: var(--color-accent-light);
}

/* --- Remember Me / Terms Checkboxes --- */
.modal-remember,
.modal-terms {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-light-brown);
    font-size: 0.88rem;
    cursor: pointer;
}

.modal-remember input,
.modal-terms input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-check {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(215, 204, 200, 0.3);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-fast);
    background: rgba(255, 255, 255, 0.05);
}

.modal-remember input:checked+.custom-check,
.modal-terms input:checked+.custom-check {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.modal-remember input:checked+.custom-check::after,
.modal-terms input:checked+.custom-check::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
}

.modal-remember input:focus-visible+.custom-check,
.modal-terms input:focus-visible+.custom-check {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

.modal-terms a {
    color: var(--color-accent-light);
    text-decoration: underline;
}

.modal-terms a:hover {
    color: var(--color-gold-light);
}

/* --- Options Row --- */
.modal-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-forgot {
    color: var(--color-accent-light);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.modal-forgot:hover {
    color: var(--color-gold-light);
    text-decoration: underline;
}

/* --- Primary Login Button with Shimmer --- */
.modal-btn {
    position: relative;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    overflow: hidden;
    transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
    margin-top: 4px;
}

.modal-btn-primary {
    background: var(--gradient-accent);
    color: var(--color-white);
    box-shadow: 0 6px 24px rgba(160, 82, 45, 0.4);
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(160, 82, 45, 0.55);
}

/* Shimmer */
.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
    transition: none;
}

.modal-btn-primary:hover .btn-shimmer {
    animation: shimmerSweep 0.8s ease forwards;
}

@keyframes shimmerSweep {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* --- Sign Up Button with Fill-from-left --- */
.modal-btn-signup {
    background: transparent;
    color: var(--color-cream);
    border: 2px solid var(--color-accent);
    box-shadow: 0 6px 20px rgba(160, 82, 45, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-accent);
    transition: width 0.4s ease;
    z-index: 1;
}

.modal-btn-signup:hover .btn-fill {
    width: 100%;
}

.modal-btn-signup:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(160, 82, 45, 0.45);
}

/* --- Divider --- */
.modal-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
    color: rgba(215, 204, 200, 0.4);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(215, 204, 200, 0.15);
}

/* --- Social Buttons --- */
.modal-social {
    display: flex;
    gap: 10px;
}

.modal-btn-social {
    flex: 1;
    padding: 10px;
    border: 2px solid rgba(215, 204, 200, 0.2);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--color-light-brown);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-smooth);
}

.modal-btn-social:hover {
    border-color: var(--color-accent);
    background: rgba(160, 82, 45, 0.1);
    color: var(--color-cream);
}

.social-icon {
    font-weight: 800;
    font-size: 1.05rem;
}

/* --- Switch Link (Login ↔ Sign Up) --- */
.modal-switch {
    text-align: center;
    color: var(--color-light-brown);
    font-size: 0.88rem;
    margin-top: 16px;
}

.modal-switch-link {
    color: var(--color-accent-light);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.modal-switch-link:hover {
    color: var(--color-gold-light);
}

/* --- Password Strength Indicator --- */
.pw-strength {
    padding: 0 2px;
}

.pw-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px;
}

.pw-bar span {
    display: block;
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, #e74c3c 0%, #f39c12 50%, #27ae60 100%);
    border-radius: 4px;
    transition: width 0.4s ease;
    background-size: 300% 100%;
    animation: strengthShift 3s ease infinite alternate;
}

@keyframes strengthShift {
    0% {
        background-position: 0% 0%;
        width: 25%;
    }

    50% {
        background-position: 50% 0%;
        width: 55%;
    }

    100% {
        background-position: 100% 0%;
        width: 85%;
    }
}

.pw-hint {
    color: rgba(215, 204, 200, 0.5);
    font-size: 0.75rem;
}

/* ============================================
   MODAL FIT FIXES — Generous Layout
   ============================================ */

/* --- Container: centered, constrained, shifted UP --- */
.modal-container {
    max-width: 520px;
    width: 92vw;
    /* Ensure it centers properly but shifted higher */
    position: fixed;
    top: 45%;
    /* Moved up from 50% */
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
}

.modal-toggle:checked~.modal-overlay .modal-container {
    transform: translate(-50%, -50%) scale(1);
}

/* Admin modal should NOT be controlled by general modal-toggle rules */
#admin-toggle:checked~.admin-overlay .modal-container {
    transform: translate(-50%, -50%) scale(1);
}

/* --- Panels: generous padding, scroll if necessary --- */
.modal-panel {
    padding: 2.2rem 2.4rem 1.6rem;
    overflow: visible;
    margin-top: 40px;
}

/* --- Monogram: slightly larger, overlapping top edge --- */
.modal-logo-wrap {
    margin-bottom: 12px;
}

.modal-monogram {
    width: 70px;
    height: 70px;
    font-size: 1.2rem;
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.3), 0 0 20px rgba(160, 82, 45, 0.2);
    margin-top: -35px;
    position: relative;
    z-index: 10;
}

.modal-monogram-signup {
    font-size: 1.6rem;
}

/* --- Headings --- */
.modal-heading {
    font-size: 1.65rem;
    margin-bottom: 4px;
}

.modal-subheading {
    font-size: 0.88rem;
    margin-bottom: 16px;
}

/* --- Form: relaxed gap --- */
.modal-form {
    gap: 14px;
}

/* --- Input fields: taller, more generous, padded for autofill icons --- */
.modal-field input {
    padding: 14px 14px 6px 34px;
    /* Added 34px left padding to clear autofill icons */
    font-size: 0.95rem;
    height: 50px;
    background-clip: padding-box;
    /* Suppress autofill bleed */
}

/* Fix eye icon overlap */
.modal-field-pw input {
    padding-right: 44px;
}

.modal-field label {
    font-size: 0.9rem;
    left: 34px;
    /* Shifted label to match new input padding */
}

.modal-field input:focus+label,
.modal-field input:not(:placeholder-shown)+label {
    top: 9px;
    font-size: 0.72rem;
}

.modal-field input:focus,
.modal-field input:not(:placeholder-shown) {
    padding-top: 18px;
    padding-bottom: 4px;
}

/* --- Password eye --- */
.pw-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--color-light-brown);
    opacity: 1;
    /* Reset opacity from previous rules */
}

/* --- Options row --- */
.modal-options {
    margin: 4px 0;
}

.modal-remember,
.modal-terms {
    font-size: 0.88rem;
    gap: 8px;
}

.custom-check {
    width: 18px;
    height: 18px;
}

.modal-forgot {
    font-size: 0.88rem;
}

/* --- Buttons: taller --- */
.modal-btn {
    padding: 10px;
    font-size: 0.9rem;
    margin-top: 6px;
}

/* --- Divider --- */
.modal-divider {
    margin: 10px 0;
    font-size: 0.82rem;
    gap: 14px;
}

/* --- Social buttons: shorter --- */
.modal-btn-social {
    padding: 7px;
    font-size: 0.78rem;
    gap: 5px;
}

.social-icon {
    font-size: 0.95rem;
}

/* --- Switch link: compact --- */
.modal-switch {
    font-size: 0.82rem;
    margin-top: 10px;
}

/* --- Sign Up specific: extra compact to prevent scroll --- */
.modal-panel-signup {
    overflow: hidden;
    max-height: 96vh;
    border-radius: var(--radius-lg);
}

.modal-panel-signup .modal-form {
    gap: 0.55rem;
}

.modal-panel-signup .modal-field input {
    height: 46px;
    padding: 12px 14px 4px;
}

.modal-panel-signup .modal-heading {
    font-size: 1.45rem;
}

.modal-panel-signup .modal-subheading {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

/* --- Password strength --- */
.pw-strength {
    padding: 0;
    margin: 0;
}

.pw-bar {
    height: 4px;
    margin: 0.25rem 0;
}

.pw-hint {
    font-size: 0.72rem;
    line-height: 1.3;
    display: block;
    margin: 0.15rem 0 0;
}

/* --- Terms --- */
.modal-terms {
    margin: 0.5rem 0;
    font-size: 0.85rem;
}

.modal-panel-signup .modal-btn {
    height: 46px;
    margin-top: 0.6rem;
    padding: 0;
    line-height: 46px;
}

/* --- Close button --- */
.modal-close {
    width: 38px;
    height: 38px;
    top: -12px;
    right: -12px;
    font-size: 1rem;
}

/* --- Mobile: relaxed compaction --- */
@media (max-width: 480px) {
    .modal-container {
        max-width: 95vw;
        top: 42%;
        /* Shifted even higher on mobile */
    }

    .modal-panel {
        padding: 1.6rem 1.5rem 1.2rem;
        border-radius: var(--radius-md);
    }

    .modal-heading {
        font-size: 1.4rem;
    }

    .modal-subheading {
        font-size: 0.82rem;
        margin-bottom: 12px;
    }

    .modal-form {
        gap: 12px;
    }

    .modal-field input {
        height: 46px;
        font-size: 0.9rem;
        padding: 12px 12px 5px;
    }

    .modal-field label {
        font-size: 0.85rem;
        left: 12px;
    }

    .modal-btn {
        padding: 12px;
        font-size: 0.95rem;
    }

    .modal-social {
        flex-direction: row;
        gap: 10px;
    }

    .modal-btn-social {
        padding: 9px;
        font-size: 0.82rem;
    }

    .modal-options {
        flex-direction: row;
        justify-content: space-between;
    }

    .modal-switch {
        font-size: 0.82rem;
        margin-top: 10px;
    }

    .modal-logo-wrap {
        margin-top: -1.8rem;
        margin-bottom: 10px;
    }

    .modal-monogram {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }

    .nav-link-login {
        font-size: 0.85rem !important;
        padding: 6px 12px !important;
    }
}

/* --- Very short screens --- */
@media (max-height: 700px) {
    .modal-panel {
        padding: 0.8rem 1.2rem 0.6rem;
    }

    .modal-form {
        gap: 6px;
    }

    .modal-field input {
        height: 38px;
        font-size: 0.82rem;
    }

    .modal-heading {
        font-size: 1.2rem;
    }

    .modal-subheading {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .modal-btn {
        padding: 9px;
        font-size: 0.85rem;
    }

    .modal-divider {
        margin: 4px 0;
    }

    .modal-btn-social {
        padding: 6px;
        font-size: 0.78rem;
    }

    .modal-switch {
        margin-top: 6px;
        font-size: 0.78rem;
    }

    .pw-hint {
        display: none;
    }

    .modal-logo-wrap {
        margin-top: -1.2rem;
        margin-bottom: 4px;
    }

    .modal-monogram {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }
}

/* ============================================
   ULTRA PREMIUM POLISH & MICRO-INTERACTIONS
   ============================================ */

/* Fix nasty browser autofill styling for dark backgrounds */
.modal-field input:-webkit-autofill,
.modal-field input:-webkit-autofill:hover,
.modal-field input:-webkit-autofill:focus,
.modal-field input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #2c1810 inset !important;
    -webkit-text-fill-color: var(--color-light-brown) !important;
    transition: background-color 5000s ease-in-out 0s;
    border-color: var(--color-accent) !important;
}

.modal-field input:-webkit-autofill+label {
    top: 7px;
    font-size: 0.65rem;
    color: var(--color-accent-light) !important;
    font-weight: 700;
}

/* Glassmorphism subtle border for the modal panels */
.modal-panel {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8), 0 0 40px rgba(160, 82, 45, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Crisp Input Borders & Clearer Backgrounds */
.modal-field input {
    border-width: 1.5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.modal-field input:focus {
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.15), 0 0 16px rgba(160, 82, 45, 0.25);
}

/* Checkbox Polish (Transforms into a clean CSS drawing) */
.custom-check {
    border-radius: 4px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-remember input:checked+.custom-check::after,
.modal-terms input:checked+.custom-check::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: block;
    animation: checkPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes checkPop {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(45deg);
        opacity: 1;
    }
}

/* Button Soft Hover Lift */
.modal-btn {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, filter 0.3s ease;
}

.modal-btn:active {
    transform: scale(0.97) !important;
}

/* Pure CSS Interactive Password Strength Indicator */
/* Base (0 chars): empty */
.pw-bar span {
    width: 0%;
    opacity: 0;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease, opacity 0.3s ease;
    animation: none;
    background-size: 100% 100%;
}

/* User typing, but invalid (< 6 chars) -> Weak (Red/Orange) */
#signup-password:not(:placeholder-shown):invalid~.pw-strength .pw-bar span {
    width: 35%;
    opacity: 1;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
}

/* User typed 6+ chars -> Strong (Green/Yellow) */
#signup-password:not(:placeholder-shown):valid~.pw-strength .pw-bar span {
    width: 100%;
    opacity: 1;
    background: linear-gradient(90deg, #f39c12, #27ae60);
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.4);
}

/* Hint text reactive color */
#signup-password:not(:placeholder-shown):invalid~.pw-strength .pw-hint {
    color: #e74c3c;
}

#signup-password:not(:placeholder-shown):valid~.pw-strength .pw-hint {
    color: #27ae60;
}

/* Social Login Hover Micro-interaction */
.modal-btn-social {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
}

.modal-btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Close button soft blur */
.modal-close {
    background: rgba(160, 82, 45, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* === SIGNUP FULL FIT FIX === */

/* --- Problem 1: Logo inside card, no clipping --- */
.modal-logo-wrap {
    margin: 0 auto 0.6rem;
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.modal-monogram {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
    margin-top: 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.3), 0 0 20px rgba(160, 82, 45, 0.2);
}

.modal-monogram-signup {
    font-size: 1.4rem;
}

/* --- Problem 2: Card height & element compaction --- */
.modal-panel {
    box-sizing: border-box;
    max-height: 92vh;
    overflow: hidden;
    padding: 1rem 2rem;
    margin-top: 0;
}

.modal-panel-signup {
    max-height: 92vh;
    overflow: hidden;
}

.modal-panel-signup .modal-heading,
.modal-heading {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.modal-panel-signup .modal-subheading {
    font-size: 0.82rem;
    margin-bottom: 0.7rem;
}

.modal-panel-signup .modal-form {
    gap: 0.45rem;
}

.modal-panel-signup .modal-field input {
    height: 44px;
    padding: 12px 12px 4px 44px;
}

/* Password strength bar */
.pw-bar {
    height: 3px;
    margin: 0.2rem 0;
}

/* Remove password strength helper text */
.pw-hint {
    display: none !important;
}

/* Terms row */
.modal-terms {
    margin-top: 0.4rem;
    margin-bottom: 0;
    font-size: 0.83rem;
}

/* Create Account button */
.modal-panel-signup .modal-btn,
.modal-btn-signup {
    height: 44px;
    margin-top: 0.5rem;
    padding: 0;
    line-height: 44px;
}

/* "Already have an account? Log In" link */
.modal-panel-signup .modal-switch {
    font-size: 0.82rem;
    margin-top: 0.4rem;
}

/* --- Problem 3: Card width --- */
.modal-container {
    max-width: 520px;
    width: 92vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
}

#modal-toggle:checked~.modal-overlay:not(.cart-overlay):not(.checkout-overlay):not(.reservation-overlay):not(.account-overlay):not(.admin-overlay) .modal-container,
#add-cart-toggle:checked~.cart-overlay .modal-container,
#checkout-toggle:checked~.checkout-overlay .modal-container,
#reservation-toggle:checked~.reservation-overlay .modal-container,
#account-toggle:checked~.account-overlay .modal-container {
    transform: translate(-50%, -50%) scale(1);
}

/* --- Problem 4: Close button anchored to card --- */
.modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Ensure all inputs stretch full width */
.modal-field input {
    width: 100%;
}

/* --- Eye icon on the RIGHT side of password fields --- */
.pw-eye {
    left: auto;
    right: 12px;
}

.modal-field-pw input {
    padding-right: 44px !important;
}

.modal-field-pw label {
    left: 34px;
}

/* --- Problem 5: Media queries for shorter screens --- */
@media (max-width: 540px) {
    .modal-container {
        width: 90vw;
    }
}

@media (max-height: 800px) {

    .modal-panel-signup input,
    .modal-panel-signup .modal-field input {
        height: 40px;
    }

    .modal-panel-signup,
    .modal-panel {
        padding: 0.8rem 1.5rem;
    }

    .modal-panel-signup .modal-heading {
        font-size: 1.3rem;
    }

    .modal-panel-signup .modal-btn,
    .modal-btn-signup {
        height: 40px;
        line-height: 40px;
    }

    .modal-monogram {
        width: 48px;
        height: 48px;
    }
}

@media (max-height: 680px) {

    .modal-panel-signup input,
    .modal-panel-signup .modal-field input {
        height: 36px;
        font-size: 0.82rem;
    }

    .modal-panel-signup,
    .modal-panel {
        padding: 0.6rem 0.8rem;
    }

    .modal-panel-signup .modal-form {
        gap: 0.35rem;
    }

    .modal-panel-signup .modal-heading {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
    }

    .modal-panel-signup .modal-subheading {
        display: none;
    }

    .modal-monogram {
        width: 42px;
        height: 42px;
    }
}

/* === END SIGNUP FULL FIT FIX === */

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    min-width: 260px;
    max-width: 380px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    pointer-events: auto;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-show {
    opacity: 1;
    transform: translateX(0);
}

.toast-hide {
    opacity: 0;
    transform: translateX(100%);
}

.toast-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.toast-error {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.toast-info {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.toast-icon {
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.toast-msg {
    flex: 1;
    line-height: 1.4;
}

/* ============================================
   USER STATUS (NAVBAR)
   ============================================ */
#user-status {
    display: none;
    align-items: center;
    gap: 8px;
}

#user-status .user-greeting {
    color: var(--color-gold-light, #f4c97e);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: default;
}

.nav-link-logout {
    color: var(--color-accent-light, #d4956a) !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-link-logout:hover {
    color: #e74c3c !important;
}

/* ============================================
   BUTTON LOADING STATE
   ============================================ */
.btn-loading {
    opacity: 0.7;
    cursor: wait !important;
    pointer-events: none;
}

@media (max-width: 480px) {
    #toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .toast {
        min-width: auto;
        max-width: none;
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

/* ==========================================
   CART & CHECKOUT MODALS PREMIUM STYLES
   ========================================== */

/* Add to Cart Modal Specifics */
.add-cart-panel {
    padding: 32px 24px;
    text-align: center;
}

.add-cart-header {
    margin-bottom: 24px;
}

.add-cart-emoji {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: bounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.add-cart-panel .modal-heading {
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.add-cart-price {
    font-family: 'Inter', sans-serif;
    color: var(--color-accent-light);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Quantity Stepper */
.qty-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--color-light-brown);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 20px;
}

.qty-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-dark-brown);
    border-radius: var(--radius-capsule);
    padding: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--color-light-brown);
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    width: 40px;
    background: transparent;
    border: none;
    color: var(--color-accent-light);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Subtotal */
.add-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

#add-cart-subtotal-value {
    color: var(--color-accent-light);
    font-size: 1.4rem;
    font-weight: 800;
}

.add-cart-submit {
    margin-top: 0 !important;
}

/* ==========================================
   CHECKOUT MODAL SPECIFICS
   ========================================== */
.checkout-panel {
    padding: 32px 24px;
}

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.checkout-icon {
    font-size: 2rem;
}

.checkout-header .modal-heading {
    margin-bottom: 0;
}

.checkout-cart-items {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 8px;
}

.checkout-cart-items::-webkit-scrollbar {
    width: 6px;
}

.checkout-cart-items::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.checkout-cart-items::-webkit-scrollbar-thumb {
    background: var(--color-light-brown);
    border-radius: 4px;
}

.cart-item-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    align-items: center;
}

.cart-item-qty {
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
}

.cart-item-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
}

.cart-item-notes {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 4px;
    font-style: italic;
}

.cart-item-price-wrap {
    text-align: right;
}

.cart-item-price {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-accent-light);
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.checkout-total-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
}

.checkout-total-amount {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-accent);
}

.checkout-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0 20px;
    color: var(--color-text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.checkout-divider::before,
.checkout-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.checkout-divider span {
    padding: 0 12px;
}

.checkout-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 16px;
    font-style: italic;
}

/* Legacy reviews styles removed — see REVIEWS SECTION REDESIGNED LAYOUT below */


/* ===== ADMIN PANEL ===== */
.admin-overlay {
    background: rgba(0, 0, 0, 0.85);
}

.admin-container {
    max-width: 800px;
    max-height: 80vh;
    width: 90%;
}

.admin-container-full {
    max-width: 900px;
    max-height: 90vh;
}

.admin-panel {
    max-height: 85vh;
    overflow-y: auto;
    padding: 24px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-accent);
}

/* Admin Stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.admin-stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.admin-stat-card.stat-pending {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.admin-stat-card.stat-completed {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.admin-stat-card.stat-revenue {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Admin Filters */
.admin-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.admin-filter-btn {
    padding: 8px 16px;
    border: 2px solid var(--color-accent);
    background: transparent;
    color: var(--color-accent);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

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

.admin-filter-select {
    padding: 10px 16px;
    border: 2px solid var(--color-accent);
    background: rgba(26, 15, 10, 0.95);
    color: var(--color-white);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s;
    min-width: 200px;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23c47a4a%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}

.admin-filter-select:hover,
.admin-filter-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(160, 82, 45, 0.2);
}

.admin-filter-select option {
    background: #1a0f0a;
    color: var(--color-cream);
    padding: 10px;
}

.admin-orders-list {
    max-height: 50vh;
    overflow-y: auto;
}

.nav-link-admin {
    color: var(--color-accent) !important;
    font-weight: 600;
}

#admin-toggle:checked~.admin-overlay .modal-container {
    transform: translate(-50%, -50%) scale(1);
}

/* Make sure admin overlay is visible when checked */
#admin-toggle:checked~.modal-overlay.admin-overlay {
    opacity: 1;
    visibility: visible;
}

#admin-toggle:checked~.modal-overlay.admin-overlay .modal-container {
    transform: translate(-50%, -50%) scale(1);
}

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

    .admin-container-full {
        max-width: 95%;
    }
}

/* Admin Status Buttons */
.status-btn {
    padding: 6px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
    opacity: 0.6;
}

.status-btn:hover {
    opacity: 1;
    transform: scale(1.05);
}

.status-btn.active {
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.status-pending {
    background: #ffa234;
    color: white;
}

.status-completed {
    background: #4ecf52;
    color: white;
}

.status-cancelled {
    background: #ff4444;
    color: white;
}

.status-delete {
    background: #dc3545;
    color: white;
    margin-left: auto;
}

/* ============================================
   ADMIN ORDER CARDS — PREMIUM STYLES
   ============================================ */

/* --- Orders Grid --- */
.admin-orders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* --- Order Card --- */
.order-card {
    background: linear-gradient(145deg, rgba(44, 24, 16, 0.95), rgba(26, 15, 10, 0.98));
    border: 1px solid rgba(160, 82, 45, 0.15);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.order-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(160, 82, 45, 0.1);
    border-color: rgba(160, 82, 45, 0.35);
}

/* --- Order Header --- */
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-id {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-accent-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- Status Badge --- */
.order-status-badge {
    color: #fff;    
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status-badge.status-new {
    background: rgba(52, 152, 219, 0.15);
    /* Blueish */
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.order-status-badge.status-pending {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.order-status-badge.status-completed {
    background: rgba(39, 174, 96, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.order-status-badge.status-cancelled {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* --- Order Date --- */
.order-date {
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--color-light-brown);
    opacity: 0.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* --- Order Items --- */
.order-items {
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.1);
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--color-cream);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.order-item-row:last-child {
    border-bottom: none;
}

.order-item-row span:last-child {
    color: var(--color-accent-light);
    font-weight: 700;
}

/* --- Order Footer (Total + Customer) --- */
.order-footer {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.08);
}

.order-total {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-white);
    white-space: nowrap;
}

/* --- Customer Info --- */
.order-customer {
    text-align: right;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--color-light-brown);
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 0;
    flex: 1 1 180px;
    max-width: 100%;
    word-wrap: break-word;
    word-break: break-word;
    /* fallback */
}

.order-customer a {
    word-break: break-all;
}

/* Ensure long text like emails wrap properly */
.order-customer * {
    word-break: break-word;
}

.order-customer strong {
    color: var(--color-cream);
    font-weight: 700;
    font-size: 0.88rem;
}

/* --- Action Buttons --- */
.order-actions {
    display: flex;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}

.order-action-btn {
    flex: 1;
    min-width: 0;
    padding: 8px 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-light-brown);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    white-space: nowrap;
}

.order-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.order-action-btn.btn-new {
    border-color: rgba(52, 152, 219, 0.3);
}

.order-action-btn.btn-new:hover,
.order-action-btn.btn-new.active {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.6);
}

.order-action-btn.btn-pending {
    border-color: rgba(243, 156, 18, 0.3);
}

.order-action-btn.btn-pending:hover,
.order-action-btn.btn-pending.active {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border-color: rgba(243, 156, 18, 0.6);
}

.order-action-btn.btn-completed {
    border-color: rgba(39, 174, 96, 0.3);
}

.order-action-btn.btn-completed:hover,
.order-action-btn.btn-completed.active {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border-color: rgba(39, 174, 96, 0.6);
}

.order-action-btn.btn-cancelled {
    border-color: rgba(231, 76, 60, 0.3);
}

.order-action-btn.btn-cancelled:hover,
.order-action-btn.btn-cancelled.active {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.6);
}

.order-action-btn.btn-delete {
    border-color: rgba(192, 57, 43, 0.3);
}

.order-action-btn.btn-delete:hover {
    background: rgba(192, 57, 43, 0.25);
    color: #e74c3c;
    border-color: rgba(192, 57, 43, 0.6);
}

/* --- Admin Empty / Error --- */
.admin-empty-state,
.admin-error-state {
    text-align: center;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--color-light-brown);
    opacity: 0.7;
    grid-column: 1 / -1;
}

/* --- Admin Loading --- */
.admin-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    grid-column: 1 / -1;
}

.admin-loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(160, 82, 45, 0.2);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: accountSpin 0.8s linear infinite;
    margin-bottom: 16px;
}

.admin-loading p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--color-light-brown);
    opacity: 0.7;
    animation: accountPulse 1.5s ease-in-out infinite;
}

/* --- Responsive Order Cards --- */
@media (max-width: 480px) {
    .admin-orders-grid {
        grid-template-columns: 1fr;
    }

    .order-footer {
        flex-direction: column;
        gap: 12px;
    }

    .order-customer {
        text-align: left;
        width: 100%;
    }

    .order-actions {
        flex-wrap: wrap;
    }

    .order-action-btn {
        flex: 1 1 calc(50% - 4px);
        min-width: calc(50% - 4px);
    }
}

/* ============================================
   ADMIN DASHBOARD
   Premium Admin Panel Styles
   ============================================ */

/* ----- Admin Body Override ----- */
.admin-body {
    padding-top: 0 !important;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    background: #0f0b09;
}

.admin-sidebar-check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* ----- Sidebar ----- */
.admin-sidebar {
    width: 260px;
    min-height: 100vh;
    background: linear-gradient(180deg, #1a0f0a 0%, #2c1810 50%, #1a0f0a 100%);
    border-right: 1px solid rgba(160, 82, 45, 0.2);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1100;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.admin-sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(160, 82, 45, 0.15);
}

.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.admin-sidebar-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 20px rgba(160, 82, 45, 0.3);
}

.admin-sidebar-brand-text {
    display: flex;
    flex-direction: column;
}

.admin-brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-cream);
    letter-spacing: 0.5px;
}

.admin-brand-sub {
    font-size: 0.72rem;
    color: var(--color-accent-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Sidebar Nav */
.admin-sidebar-nav {
    flex: 1;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--color-light-brown);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    border: 1px solid transparent;
}

.admin-nav-item:hover {
    background: rgba(160, 82, 45, 0.12);
    color: var(--color-cream);
    border-color: rgba(160, 82, 45, 0.15);
}

.admin-nav-item.active {
    background: linear-gradient(135deg, rgba(160, 82, 45, 0.2) 0%, rgba(196, 122, 74, 0.15) 100%);
    color: var(--color-cream);
    border-color: rgba(160, 82, 45, 0.3);
    box-shadow: 0 4px 15px rgba(160, 82, 45, 0.15);
}

.admin-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--gradient-accent);
    border-radius: 0 4px 4px 0;
}

.admin-nav-icon {
    font-size: 1.15rem;
    width: 24px;
    text-align: center;
}

.admin-nav-badge {
    margin-left: auto;
    background: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 22px;
    text-align: center;
}

/* Sidebar Footer */
.admin-sidebar-footer {
    padding: 12px;
    border-top: 1px solid rgba(160, 82, 45, 0.15);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-nav-logout {
    color: #e57373 !important;
}

.admin-nav-logout:hover {
    background: rgba(229, 115, 115, 0.1) !important;
    border-color: rgba(229, 115, 115, 0.2) !important;
}

/* Sidebar overlay (mobile) */
.admin-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    cursor: pointer;
    backdrop-filter: blur(2px);
}

/* ----- Main Content Area ----- */
.admin-main {
    flex: 1;
    margin-left: 260px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #13100d;
}

/* ----- Top Bar ----- */
.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    background: linear-gradient(135deg, rgba(26, 15, 10, 0.95) 0%, rgba(44, 24, 16, 0.95) 100%);
    border-bottom: 1px solid rgba(160, 82, 45, 0.12);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.admin-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.admin-hamburger:hover {
    background: rgba(160, 82, 45, 0.15);
}

.admin-hamburger span {
    width: 22px;
    height: 2.5px;
    background: var(--color-light-brown);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.admin-topbar-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin: 4px 0 0;
    opacity: 0.7;
}

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

.admin-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(160, 82, 45, 0.15) 0%, rgba(196, 122, 74, 0.1) 100%);
    border: 1px solid rgba(160, 82, 45, 0.3);
    border-radius: 10px;
    color: var(--color-cream);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.admin-action-btn:hover {
    background: linear-gradient(135deg, rgba(160, 82, 45, 0.25) 0%, rgba(196, 122, 74, 0.2) 100%);
    border-color: rgba(160, 82, 45, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(160, 82, 45, 0.2);
}

/* ----- Admin Content ----- */
.admin-content {
    padding: 28px 32px;
    flex: 1;
}

/* ----- Stat Cards Grid ----- */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.admin-stat-card {
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.9) 0%, rgba(44, 24, 16, 0.7) 100%);
    border: 1px solid rgba(160, 82, 45, 0.15);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.admin-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(160, 82, 45, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(160, 82, 45, 0.1);
}

.admin-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.admin-stat-total .admin-stat-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.admin-stat-pending .admin-stat-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.admin-stat-completed .admin-stat-icon {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2) 0%, rgba(52, 211, 153, 0.05) 100%);
}

.admin-stat-revenue .admin-stat-icon {
    background: linear-gradient(135deg, rgba(160, 82, 45, 0.25) 0%, rgba(160, 82, 45, 0.05) 100%);
}

.admin-stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-cream);
    line-height: 1;
}

.admin-stat-label {
    font-size: 0.78rem;
    color: var(--color-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Accent bar at bottom of stat card */
.admin-stat-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.admin-stat-card:hover .admin-stat-accent {
    opacity: 1;
}

.admin-stat-total .admin-stat-accent {
    background: linear-gradient(90deg, #6366f1, #818cf8);
}

.admin-stat-pending .admin-stat-accent {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.admin-stat-completed .admin-stat-accent {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.admin-stat-revenue .admin-stat-accent {
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
}

/* ----- Orders Section ----- */
.admin-orders-section {
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.6) 0%, rgba(44, 24, 16, 0.4) 100%);
    border: 1px solid rgba(160, 82, 45, 0.12);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.admin-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-cream);
    margin: 0;
}

/* ----- Filter Bar ----- */
.admin-filter-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    padding: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(160, 82, 45, 0.08);
}

.admin-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.admin-filter-btn:hover {
    background: rgba(160, 82, 45, 0.1);
    color: var(--color-cream);
}

.admin-filter-btn.active {
    background: linear-gradient(135deg, rgba(160, 82, 45, 0.25) 0%, rgba(196, 122, 74, 0.15) 100%);
    color: var(--color-cream);
    border-color: rgba(160, 82, 45, 0.3);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(160, 82, 45, 0.15);
}

.admin-filter-icon {
    font-size: 0.9rem;
}





/* ----- Loading Spinner ----- */
.admin-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 48px 20px;
}

.admin-loading p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    opacity: 0.7;
}

.admin-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(160, 82, 45, 0.15);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: adminSpin 0.8s linear infinite;
}

@keyframes adminSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Empty / Error states in orders */
.admin-orders-grid .admin-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--color-text-light);
    opacity: 0.6;
    font-size: 0.9rem;
}

.admin-orders-grid .admin-error-state {
    text-align: center;
    padding: 40px 20px;
    color: #f87171;
    font-size: 0.9rem;
}

/* ============================================
   ADMIN DASHBOARD — RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1100px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-sidebar-check:checked~.admin-sidebar {
        transform: translateX(0);
    }

    .admin-sidebar-check:checked~.admin-sidebar-overlay {
        display: block;
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-hamburger {
        display: flex;
    }

    .admin-topbar {
        padding: 14px 16px;
    }

    .admin-topbar-title {
        font-size: 1.2rem;
    }

    .admin-content {
        padding: 16px;
    }

    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .admin-stat-card {
        padding: 16px;
    }

    .admin-stat-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .admin-stat-number {
        font-size: 1.35rem;
    }

    .admin-orders-section {
        padding: 16px;
    }

    .admin-filter-bar {
        gap: 4px;
        padding: 4px;
    }

    .admin-filter-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .admin-filter-icon {
        display: none;
    }

    .order-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .order-customer {
        text-align: left;
    }

    .order-actions {
        gap: 6px;
    }

    .order-action-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-action-btn span {
        display: none;
    }
}


/* ============================================
   RESERVATION SECTION
   ============================================ */
.reservation-container {
    max-width: 650px !important;
}

.reservation-section {
    position: relative;
    padding: 80px 6% 90px;
    background: linear-gradient(175deg, #1a0f0a 0%, #2c1810 40%, #1a0f0a 100%);
    overflow: hidden;
}

.reservation-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(160, 82, 45, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.reservation-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196, 122, 74, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.reservation-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--color-cream);
    text-align: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.reservation-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.92rem, 1.8vw, 1.05rem);
    color: var(--color-text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* ----- Info Panel ----- */
.reservation-info-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.reservation-info-card {
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.85) 0%, rgba(44, 24, 16, 0.6) 100%);
    border: 1px solid rgba(160, 82, 45, 0.15);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.reservation-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(160, 82, 45, 0.35);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 0 25px rgba(160, 82, 45, 0.08);
}

.reservation-info-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block;
}

.reservation-info-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-cream);
    margin: 0 0 6px;
    letter-spacing: 0.3px;
}

.reservation-info-card p {
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
    opacity: 0.85;
}

.reservation-phone-link {
    color: var(--color-accent-light);
    text-decoration: none;
    transition: color 0.2s;
}

.reservation-phone-link:hover {
    color: var(--color-cream);
}

/* ============================================
   RESERVATION MODAL - BASIC STYLES
   ============================================ */

/* ----- Reservation Form ----- */
.reservation-form {
    background: rgba(30, 20, 15, 0.7);
    border: 1px solid rgba(160, 82, 45, 0.15);
    border-radius: 20px;
    padding: 36px 32px;
    backdrop-filter: blur(10px);
}

.reservation-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 20px;
}

/* ----- Reservation Fields ----- */
.modal-field {
    position: relative;
}

.modal-field input,
.modal-field select,
.modal-field textarea {
    width: 100%;
    padding: 16px 14px 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--color-cream);
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(160, 82, 45, 0.2);
    border-radius: 12px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 80px 6% 90px;
    background: linear-gradient(180deg, var(--color-espresso) 0%, #1a0f0a 100%);
    position: relative;
}

.contact-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--color-cream);
    margin-bottom: 48px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(160, 82, 45, 0.12);
    border-radius: 12px;
    padding: 18px 20px;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.contact-item:hover {
    border-color: rgba(160, 82, 45, 0.3);
    transform: translateY(-2px);
}

.contact-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent-light);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.contact-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--color-cream);
    line-height: 1.6;
    margin: 0;
}

.contact-item small {
    font-size: 0.78rem;
    color: var(--color-light-brown);
    opacity: 0.65;
}

.contact-link {
    color: var(--color-accent-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-cream);
}

.contact-map {
    margin-top: 8px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(160, 82, 45, 0.15);
}

.contact-map iframe {
    display: block;
}

/* --- Contact Form --- */
.contact-form {
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.7) 0%, rgba(44, 24, 16, 0.5) 100%);
    border: 1px solid rgba(160, 82, 45, 0.12);
    border-radius: 16px;
    padding: 32px 28px;
    backdrop-filter: blur(8px);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: 24px;
    text-align: center;
}

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

.form-group-floating {
    position: relative;
}

.form-group-floating input {
    width: 100%;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--color-cream);
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(160, 82, 45, 0.2);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group-floating input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(160, 82, 45, 0.15);
}

.form-group-floating input::placeholder {
    color: transparent;
}

.form-group-floating .form-label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--color-light-brown);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 4px;
    background: transparent;
}

.form-group-floating input:focus + .form-label,
.form-group-floating input:not(:placeholder-shown) + .form-label {
    top: 0;
    font-size: 0.75rem;
    color: var(--color-accent-light);
    background: linear-gradient(to bottom, transparent 50%, rgba(30, 20, 15, 0.9) 50%);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-label-static {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent-light);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--color-cream);
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(160, 82, 45, 0.2);
    border-radius: 12px;
    outline: none;
    resize: vertical;
    min-height: 110px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form textarea::placeholder {
    color: rgba(215, 204, 200, 0.4);
}

.contact-form textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(160, 82, 45, 0.15);
}

.contact-form .submit-button {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 16px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.contact-form .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(160, 82, 45, 0.4);
}

.contact-form .submit-button:active {
    transform: translateY(0);
}

/* --- Contact Responsive --- */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-section {
        padding: 60px 5% 70px;
    }

    .contact-form {
        padding: 24px 20px;
    }
}

.modal-field input::placeholder,
.modal-field select::placeholder,
.modal-field textarea::placeholder {
    color: rgba(215, 204, 200, 0.4);
}

/* Focus State with Glow Effect */
.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--color-accent);
    box-shadow: 
        0 0 0 4px rgba(160, 82, 45, 0.15),
        0 8px 24px rgba(160, 82, 45, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hover Effect */
.modal-field input:hover,
.modal-field select:hover,
.modal-field textarea:hover {
    border-color: rgba(160, 82, 45, 0.4);
    background: rgba(0, 0, 0, 0.45);
}

.modal-field textarea {
    resize: vertical;
    min-height: 90px;
    padding-top: 14px;
}

.modal-field select {
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23c47a4a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
}

.modal-field select option {
    background: #1a0f0a;
    color: var(--color-cream);
    padding: 12px;
}

/* Floating Label Animation */
.modal-field label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--color-light-brown);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 4px;
}

.modal-field input:focus + label,
.modal-field input:not(:placeholder-shown) + label,
.modal-field select:focus + label,
.modal-field select:valid + label,
.modal-field textarea:focus + label,
.modal-field textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.75rem;
    color: var(--color-accent-light);
    background: linear-gradient(to bottom, transparent 50%, rgba(30, 20, 15, 0.9) 50%);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Field Border Animation */
.field-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.modal-field input:focus ~ .field-border,
.modal-field select:focus ~ .field-border,
.modal-field textarea:focus ~ .field-border {
    width: 100%;
}
.reservation-field label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--color-text-light);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.75;
}

.reservation-field textarea~label {
    top: 18px;
    transform: none;
}

/* Float label up on focus / filled */
.reservation-field input:focus~label,
.reservation-field input:not(:placeholder-shown)~label,
.reservation-field select:focus~label,
.reservation-field select:valid~label,
.reservation-field textarea:focus~label,
.reservation-field textarea:not(:placeholder-shown)~label {
    top: 6px;
    transform: none;
    font-size: 0.68rem;
    color: var(--color-accent-light);
    opacity: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Date and number inputs always show label up since they have default values */
.reservation-field input[type="date"]~label,
.reservation-field input[type="number"]~label {
    top: 6px;
    transform: none;
    font-size: 0.68rem;
    color: var(--color-accent-light);
    opacity: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.reservation-field-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 10px 10px;
    transform: translateX(-50%);
}

.reservation-field input:focus~.reservation-field-border,
.reservation-field select:focus~.reservation-field-border,
.reservation-field textarea:focus~.reservation-field-border {
    width: 100%;
}

.reservation-field input:focus,
.reservation-field select:focus,
.reservation-field textarea:focus {
    border-color: rgba(160, 82, 45, 0.4);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.08), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.reservation-field-full {
    margin-top: 22px;
}

/* Chrome date input icon color */
.reservation-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.6) sepia(1) saturate(1.5) hue-rotate(350deg);
    cursor: pointer;
}

/* ----- Submit Button ----- */
.modal-btn-primary {
    display: block;
    width: 100%;
    margin-top: 28px;
    padding: 16px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-transform: none;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(160, 82, 45, 0.4), 0 0 40px rgba(160, 82, 45, 0.15);
}

.modal-btn-primary:active {
    transform: translateY(0);
}

.modal-btn-primary .btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.modal-btn-primary:hover .btn-shimmer {
    left: 100%;
}

.modal-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ----- Reservation Note ----- */
.reservation-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 14px;
    opacity: 0.65;
    font-style: italic;
}

/* ----- Admin Reservations Section ----- */
.admin-reservations-section {
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.6) 0%, rgba(44, 24, 16, 0.4) 100%);
    border: 1px solid rgba(160, 82, 45, 0.12);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
    margin-top: 24px;
}

.reservation-card {
    background: linear-gradient(135deg, rgba(26, 15, 10, 0.8) 0%, rgba(35, 22, 15, 0.6) 100%);
    border: 1px solid rgba(160, 82, 45, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.25s ease;
}

.reservation-card:hover {
    border-color: rgba(160, 82, 45, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.reservation-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.reservation-card-id {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-cream);
}

.reservation-card-datetime {
    font-size: 0.82rem;
    color: var(--color-accent-light);
    margin-bottom: 6px;
}

.reservation-card-details {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 14px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.reservation-card-details strong {
    color: var(--color-light-brown);
}

.reservation-card-footer {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid rgba(160, 82, 45, 0.08);
}

/* ============================================
   RESERVATION — RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .reservation-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reservation-info-panel {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 680px) {
    .reservation-section {
        padding: 60px 5% 70px;
    }

    .reservation-info-panel {
        grid-template-columns: 1fr 1fr;
    }

    .reservation-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .reservation-form {
        padding: 24px 18px;
    }

    .reservation-info-card {
        padding: 18px 14px;
    }

    .reservation-info-icon {
        font-size: 1.4rem;
    }
}

@media (max-width: 400px) {
    .reservation-info-panel {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MY ACCOUNT MODAL — PREMIUM STYLES
   ============================================ */

/* --- Account Container --- */
.account-container {
    max-width: 480px;
    width: 92vw;
}

/* --- Account Panel --- */
.account-panel {
    padding: 32px 28px 24px;
}

/* --- User Profile Header --- */
.account-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 1px;
    box-shadow: 0 0 0 4px rgba(160, 82, 45, 0.3), 0 8px 24px rgba(160, 82, 45, 0.3);
    margin-bottom: 14px;
    animation: monogramBreathe 3s ease-in-out infinite;
    text-transform: uppercase;
}

.account-user-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: 4px;
}

.account-user-email {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--color-light-brown);
    opacity: 0.7;
}

/* --- Segmented Tab Bar --- */
.account-tabs {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.account-tabs .tab-toggle {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.account-tabs .tab-bar {
    display: flex;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-pill);
    padding: 4px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.account-tabs .tab-label {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-light-brown);
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: color 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 2;
    user-select: none;
}

.account-tabs .tab-label:hover {
    color: var(--color-cream);
}

/* Sliding indicator */
.account-tabs .tab-indicator {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--gradient-accent);
    border-radius: var(--radius-pill);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    box-shadow: 0 4px 12px rgba(160, 82, 45, 0.4);
}

/* Active tab text */
#tab-orders:checked~.tab-bar .tab-label[for="tab-orders"],
#tab-reservations:checked~.tab-bar .tab-label[for="tab-reservations"] {
    color: var(--color-white);
}

/* Slide indicator on second tab */
#tab-reservations:checked~.tab-bar .tab-indicator {
    transform: translateX(100%);
}

/* --- Tab Content Visibility --- */
.account-tabs .tab-content {
    display: none;
    width: 100%;
    order: 10;
}

#tab-orders:checked~#content-orders {
    display: block;
}

#tab-reservations:checked~#content-reservations {
    display: block;
}

/* --- Scrollable List Container --- */
.account-tabs .list-content {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 6px;
}

.account-tabs .list-content::-webkit-scrollbar {
    width: 5px;
}

.account-tabs .list-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.account-tabs .list-content::-webkit-scrollbar-thumb {
    background: var(--color-light-brown);
    border-radius: 4px;
}

.account-tabs .list-content::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* --- Order Card --- */
.account-order-card {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.account-order-card:hover {
    border-color: rgba(160, 82, 45, 0.3);
    transform: translateY(-1px);
}

.account-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.account-order-id {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-accent-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.account-order-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--color-light-brown);
    opacity: 0.7;
}

.account-order-items {
    margin-bottom: 10px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
}

.account-order-item-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--color-cream);
    padding: 3px 0;
}

.account-order-item-row span:last-child {
    color: var(--color-light-brown);
    font-weight: 600;
}

.account-order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.account-order-total {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-white);
}

/* Status Badges */
.account-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-status-pending {
    background: rgba(243, 156, 18, 0.18);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.25);
}

.account-status-completed {
    background: rgba(39, 174, 96, 0.18);
    color: #2ecc71;
    border: 1px solid rgba(39, 174, 96, 0.25);
}

.account-status-cancelled {
    background: rgba(231, 76, 60, 0.18);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.25);
}

.account-status-confirmed {
    background: rgba(46, 204, 113, 0.18);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.25);
}

/* --- Reservation Card --- */
.account-reservation-card {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.account-reservation-card:hover {
    border-color: rgba(160, 82, 45, 0.3);
    transform: translateY(-1px);
}

.account-reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.account-reservation-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-cream);
}

.account-reservation-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.account-reservation-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--color-light-brown);
}

.account-reservation-detail-icon {
    font-size: 0.95rem;
    width: 20px;
    text-align: center;
}

/* --- Empty State --- */
.account-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.account-empty-icon {
    font-size: 3rem;
    margin-bottom: 14px;
    opacity: 0.5;
    filter: grayscale(0.3);
}

.account-empty-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--color-light-brown);
    opacity: 0.7;
    line-height: 1.5;
}

.account-empty-text strong {
    display: block;
    font-size: 1rem;
    color: var(--color-cream);
    opacity: 1;
    margin-bottom: 4px;
}

/* --- Loading State --- */
.account-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.account-loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(160, 82, 45, 0.2);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: accountSpin 0.8s linear infinite;
    margin-bottom: 14px;
}

@keyframes accountSpin {
    to {
        transform: rotate(360deg);
    }
}

.account-loading-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--color-light-brown);
    opacity: 0.7;
    animation: accountPulse 1.5s ease-in-out infinite;
}

@keyframes accountPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* --- Responsive --- */
@media (max-width: 540px) {
    .account-container {
        width: 95vw;
    }

    .account-panel {
        padding: 24px 18px 20px;
    }

    .account-avatar {
        width: 58px;
        height: 58px;
        font-size: 1.3rem;
    }

    .account-user-name {
        font-size: 1.2rem;
    }

    .account-reservation-details {
        grid-template-columns: 1fr;
    }

    .account-tabs .list-content {
        max-height: 260px;
    }
}

/* ============================================
   RESERVATION MODAL HEIGHT FIX
   ============================================ */
.reservation-panel {
    max-height: 70vh !important;
    overflow-y: auto;
}

/* ============================================
   CONTACT SECTION — REDESIGNED PREMIUM LAYOUT
   ============================================ */
.contact-section {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: var(--gradient-dark);
    position: relative;
    overflow: visible;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    text-align: center;
    color: var(--color-light-brown);
    font-size: 1.05rem;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

/* --- 3-Column Highlight Cards --- */
.contact-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.contact-highlight-card {
    text-align: center;
    padding: 36px 24px 32px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-highlight-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(160, 82, 45, 0.15);
    border-color: rgba(160, 82, 45, 0.25);
}

.contact-highlight-card:hover::before {
    opacity: 1;
}

.highlight-icon-wrap {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(160, 82, 45, 0.12);
    border: 2px solid rgba(160, 82, 45, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-highlight-card:hover .highlight-icon-wrap {
    transform: scale(1.1);
    background: rgba(160, 82, 45, 0.2);
}

.contact-highlight-card .contact-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.contact-highlight-card p {
    color: var(--color-light-brown);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-highlight-card .contact-link {
    color: var(--color-accent-light);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(160, 82, 45, 0.4);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-highlight-card .contact-link:hover {
    color: var(--color-gold-light);
    border-bottom-color: var(--color-gold-light);
}

/* --- Full-Width Google Maps --- */
.contact-map-full {
    max-width: 1100px;
    margin: 0 auto var(--spacing-lg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(160, 82, 45, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.contact-map-full iframe {
    display: block;
    width: 100%;
    border: 0;
    filter: brightness(0.85) contrast(1.1) saturate(0.9);
    transition: filter 0.4s ease;
}

.contact-map-full:hover iframe {
    filter: brightness(0.95) contrast(1.05) saturate(1);
}

/* --- 4-Column Details Row --- */
.contact-details-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-detail:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
}

.detail-icon {
    font-size: 1.4rem;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
}

.contact-detail p {
    color: var(--color-light-brown);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact-detail p strong {
    color: var(--color-cream);
}

.contact-detail p em {
    color: var(--color-accent-light);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .contact-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-details-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .contact-section h2 {
        font-size: 1.9rem;
    }

    .contact-details-row {
        grid-template-columns: 1fr;
    }

    .contact-highlight-card {
        padding: 28px 20px 24px;
    }

    .highlight-icon-wrap {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* ============================================
   REVIEWS SECTION — REDESIGNED LAYOUT
   ============================================ */
.reviews-section {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: var(--gradient-warm);
    position: relative;
    overflow: visible;
    flex-shrink: 0;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(160, 82, 45, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.reviews-header-container {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.reviews-header-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: 0.5rem;
}

.reviews-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
    font-weight: 300;
}

/* ---- Summary Rating Banner (full-width) ---- */
.reviews-summary-banner {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.summary-banner-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 110px;
}

.summary-score-large {
    font-size: 3.8rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-stars {
    font-size: 1.5rem;
    color: var(--color-gold);
    text-shadow: 0 2px 10px rgba(212, 160, 23, 0.3);
    letter-spacing: 2px;
}

.summary-stars .star-filled { color: var(--color-gold); }
.summary-stars .star-half { color: var(--color-gold); position: relative; }
.summary-stars .star-empty { color: #d7ccc8; }

/* Global star styles */
.star-filled {
    color: var(--color-gold);
    text-shadow: 0 0 2px rgba(212, 160, 23, 0.5);
}

.star-half {
    color: var(--color-gold);
    position: relative;
}

.star-half::after {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: #e0e0e0;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.star-empty {
    color: #e0e0e0;
}

.summary-banner-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
    opacity: 0.4;
    flex-shrink: 0;
}

.summary-banner-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 180px;
}

.summary-count {
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
}

.summary-count strong {
    color: var(--color-accent);
    font-weight: 800;
}

.summary-tagline {
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 300;
}

/* Rating distribution bars */
.summary-banner-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 180px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bar-label {
    width: 28px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-align: right;
    flex-shrink: 0;
}

.bar-track {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
}

.bar-count {
    width: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-align: left;
    flex-shrink: 0;
}

/* ---- Two-Column Content: Reviews + Form ---- */
.reviews-content-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* Glassmorphism Card Shared */
.glassmorphism-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

/* Left: Reviews List */
.reviews-main-col {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.reviews-list-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(160, 82, 45, 0.15);
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-height: 680px;
    overflow-y: auto;
    padding: 6px 12px 6px 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(160, 82, 45, 0.4) transparent;
}

.reviews-container::-webkit-scrollbar { width: 6px; }
.reviews-container::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.03);
    border-radius: 10px;
}
.reviews-container::-webkit-scrollbar-thumb {
    background: rgba(160, 82, 45, 0.3);
    border-radius: 10px;
}
.reviews-container::-webkit-scrollbar-thumb:hover {
    background: rgba(160, 82, 45, 0.6);
}

/* Review Card */
.review-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: rgba(160, 82, 45, 0.04);
    line-height: 1;
    z-index: 0;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-dark);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    border: 2px solid var(--color-accent);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.reviewer-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin: 0;
}

.review-rating {
    font-size: 1.1rem;
    color: var(--color-gold);
    text-shadow: 0 1px 4px rgba(212, 160, 23, 0.2);
}

.review-rating .star-empty {
    color: #e0e0e0;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
    position: relative;
    z-index: 1;
    font-style: italic;
    opacity: 0.9;
}

/* Right: Write Review Sidebar */
.reviews-sidebar-col {
    position: sticky;
    top: 84px;
    height: fit-content;
}

.write-review-section {
    padding: var(--spacing-lg);
}

.write-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.write-review-icon {
    font-size: 1.5rem;
}

.write-review-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--color-dark-brown);
    margin: 0;
}

.review-prompt {
    font-size: 0.92rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.review-field {
    position: relative;
    width: 100%;
}

.review-field input,
.review-field textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--color-text);
    outline: none;
    transition: all var(--transition-fast);
}

.review-field textarea {
    resize: vertical;
    min-height: 100px;
}

.review-field input:focus,
.review-field textarea:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(160, 82, 45, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.review-field label {
    position: absolute;
    left: 16px;
    top: 14px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all var(--transition-fast);
    background: transparent;
    padding: 0 4px;
    border-radius: 4px;
}

.review-field input:focus ~ label,
.review-field input:not(:placeholder-shown) ~ label,
.review-field textarea:focus ~ label,
.review-field textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.rating-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}

.rating-label {
    position: static !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--color-text) !important;
    pointer-events: auto !important;
    background: none !important;
    box-shadow: none !important;
}

.star-rating-input {
    display: inline-flex;
    gap: 3px;
    cursor: pointer;
}

.star-rating-input .star {
    font-size: 2rem;
    color: #d7ccc8;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s;
}

.star-rating-input .star:hover {
    transform: scale(1.15);
}

.star-rating-input .star.active {
    color: var(--color-gold);
    text-shadow: 0 0 15px rgba(212, 160, 23, 0.6);
}

.premium-btn-shimmer {
    position: relative;
    width: 100%;
    padding: 14px;
    background: var(--gradient-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(160, 82, 45, 0.3);
    transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
    margin-top: 6px;
}

.premium-btn-shimmer:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(160, 82, 45, 0.45);
}

.premium-btn-shimmer .btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: none;
}

.premium-btn-shimmer:hover .btn-shimmer {
    animation: shimmerSlide 0.8s ease-in-out;
}

.review-login-msg {
    text-align: center;
    color: var(--color-text-light);
}

/* ---- Responsive: Reviews Section ---- */
@media (max-width: 960px) {
    .reviews-summary-banner {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
        padding: var(--spacing-lg);
    }
    .summary-banner-divider {
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
    }
    .summary-banner-bars {
        max-width: 320px;
        margin: 0 auto;
    }
    .summary-banner-meta {
        align-items: center;
    }
    .reviews-content-wrapper {
        grid-template-columns: 1fr;
    }
    .reviews-sidebar-col {
        position: static;
    }
    .reviews-container {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
    .reviews-header-container h2 {
        font-size: 2.1rem;
    }
}

@media (max-width: 600px) {
    .reviews-summary-banner {
        padding: var(--spacing-md);
    }
    .summary-score-large {
        font-size: 3rem;
    }
    .summary-stars {
        font-size: 1.2rem;
    }
    .reviews-list-heading {
        font-size: 1.2rem;
    }
}

/* ============================================
   REVIEW LOGIN OVERLAY — Requires Login
   ============================================ */
.write-review-section {
    position: relative;
    overflow: hidden;
}

.write-review-section.review-locked .review-form {
    pointer-events: none;
    filter: blur(3px);
    opacity: 0.35;
    user-select: none;
}

.review-login-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.55) 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: inherit;
    animation: overlayFadeIn 0.4s ease-out;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.review-login-overlay-content {
    text-align: center;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.review-lock-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 4px;
    animation: lockBounce 2s ease-in-out infinite;
}

@keyframes lockBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.review-lock-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin: 0;
}

.review-lock-subtitle {
    font-size: 0.92rem;
    color: var(--color-text-light);
    margin: 0 0 8px;
    max-width: 240px;
    line-height: 1.5;
}

.review-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: var(--gradient-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(160, 82, 45, 0.35);
    transition: transform var(--transition-bounce),
                box-shadow var(--transition-fast);
    position: relative;
}

.review-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(160, 82, 45, 0.5);
}

.review-login-btn:active {
    transform: translateY(-1px);
}

.review-login-btn .btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
}

.review-login-btn:hover .btn-shimmer {
    animation: shimmerSlide 0.8s ease-in-out;
}