/* =============================================
   AMORA CAFÉ — Botanical Airy Elegance
   Design System & Global Styles
   ============================================= */

/* --- Google Fonts Import (Cormorant Garamond + Jost) --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Jost:wght@200;300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
    /* Backgrounds */
    --bg-primary:     #F8F5EF;   /* warm ivory */
    --bg-secondary:   #EFF7F5;   /* very light mint-wash */
    --bg-tertiary:    #E6F0EE;   /* seafoam wash */
    --bg-card:        rgba(255, 255, 255, 0.82);
    --bg-card-hover:  rgba(255, 255, 255, 0.95);
    --bg-cream:       #F8F5EF;

    /* Brand colours */
    --color-sage:          #8FAF8C;   /* sage green */
    --color-mint:          #B2CFCA;   /* mint */
    --color-seafoam:       #C9DDD8;   /* seafoam */
    --color-forest:        #3D6B4F;   /* deep forest green */
    --color-forest-light:  #567A62;   /* lighter forest */
    --color-gold:          #C9A84C;   /* gold */
    --color-gold-light:    #D9BC74;   /* lighter gold */
    --color-gold-dark:     #A8883A;   /* darker gold */
    --color-ivory:         #F8F5EF;   /* warm ivory */
    --color-white:         #FFFFFF;
    --color-text:          #2C3830;   /* deep dark green-brown */
    --color-text-muted:    #5A766B;   /* muted forest */
    --color-text-dim:      #8EA89E;   /* dim sage */
    --color-champagne:     #3D6B4F;   /* use forest for headings */
    --color-success:       #6CBF6C;
    --color-error:         #C0514A;
    --color-veg:           #6CBF6C;

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body:    'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script:  'Cormorant Garamond', 'Georgia', serif;

    /* Shadows — soft & warm */
    --shadow-sm:   0 2px 16px rgba(61, 107, 79, 0.08);
    --shadow-md:   0 8px 36px rgba(61, 107, 79, 0.12);
    --shadow-lg:   0 20px 60px rgba(61, 107, 79, 0.16);
    --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.14);
    --shadow-glow: 0 0 60px rgba(143, 175, 140, 0.20);

    /* Borders */
    --border-subtle: 1px solid rgba(201, 168, 76, 0.18);
    --border-gold:   1px solid rgba(201, 168, 76, 0.40);
    --border-sage:   1px solid rgba(143, 175, 140, 0.30);

    /* Radii */
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   28px;
    --radius-xl:   40px;
    --radius-arch: 50% 50% 0 0 / 60% 60% 0 0;   /* arched top */
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast:    0.2s ease;
    --transition-base:    0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-slow:    0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring:  0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-luxury:  0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

a { text-decoration: none; color: inherit; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

input, select, textarea { font-family: inherit; font-size: inherit; }

::selection { background: var(--color-gold); color: var(--color-white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ──────────────────────────────────────────────
   TYPOGRAPHY
────────────────────────────────────────────── */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
    text-align: center;
}

.section-eyebrow.light { color: var(--color-gold-light); }

.section-title {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    color: var(--color-forest);
    text-align: center;
    margin-bottom: 56px;
    letter-spacing: 0.5px;
    line-height: 1.15;
}

.section-title.light { color: var(--color-forest); }

/* Gold accent line */
.gold-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 0 auto 48px;
}

/* Botanical floral SVG watermark (decorative, reused) */
.floral-watermark {
    position: absolute;
    pointer-events: none;
    opacity: 0.06;
    z-index: 0;
}

/* ──────────────────────────────────────────────
   WAVE SECTION DIVIDERS
────────────────────────────────────────────── */
.wave-divider {
    position: relative;
    overflow: hidden;
    line-height: 0;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* ──────────────────────────────────────────────
   LOADING SCREEN
────────────────────────────────────────────── */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content { text-align: center; }

.loader-logo {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 5.5rem;
    font-weight: 300;
    color: var(--color-forest);
    margin-bottom: 8px;
    animation: fadeInUp 1s ease;
    letter-spacing: 2px;
}

.loader-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.3s both;
}

.loader-bar {
    width: 180px;
    height: 1px;
    background: rgba(143, 175, 140, 0.25);
    margin: 0 auto;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.6s both;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-sage), var(--color-gold), var(--color-forest));
    animation: loaderFill 2.2s ease-in-out forwards;
}

@keyframes loaderFill {
    0%   { width: 0%; }
    40%  { width: 55%; }
    100% { width: 100%; }
}

/* ──────────────────────────────────────────────
   HERO SECTION
────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -20px;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(1.1);
    animation: heroSlowZoom 30s ease-in-out infinite alternate;
}

@keyframes heroSlowZoom {
    0%   { transform: scale(1)    translate(0, 0); }
    100% { transform: scale(1.10) translate(-1%, -1%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(61, 107, 79, 0.45) 0%,
            rgba(61, 107, 79, 0.15) 40%,
            rgba(61, 107, 79, 0.65) 100%),
        radial-gradient(ellipse at center, transparent 20%, rgba(30, 60, 40, 0.55) 80%);
    z-index: 1;
}

/* Decorative botanical SVG overlay on hero */
.hero-botanical {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%23F8F5EF' stroke-width='0.8' opacity='0.12'%3E%3Cellipse cx='200' cy='100' rx='60' ry='30' transform='rotate(-30 200 100)'/%3E%3Cellipse cx='200' cy='100' rx='45' ry='20' transform='rotate(30 200 100)'/%3E%3Cpath d='M200 100 Q230 60 260 40'/%3E%3Cpath d='M200 100 Q170 60 140 40'/%3E%3Cpath d='M200 100 Q215 140 200 180'/%3E%3Ccircle cx='200' cy='100' r='6'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 400px 400px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-welcome {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(201, 221, 216, 0.85);
    margin-bottom: 12px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-title {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(4rem, 14vw, 7.5rem);
    color: var(--color-ivory);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease 0.5s both;
    text-shadow: 0 0 80px rgba(248, 245, 239, 0.18);
    letter-spacing: 2px;
}

.hero-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(201, 221, 216, 0.90);
    font-weight: 300;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease 0.7s both;
    letter-spacing: 1px;
}

/* Gold trim line under tagline */
.hero-content::before {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 0 auto 20px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 44px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.hero-cta-primary {
    background: var(--color-gold);
    color: var(--color-forest);
    border: 1px solid var(--color-gold);
}

.hero-cta-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.30);
}

.hero-cta-primary svg { stroke: var(--color-forest); transition: transform var(--transition-base); }
.hero-cta-primary:hover svg { transform: translateX(4px); }

.hero-cta-secondary {
    background: transparent;
    color: var(--color-ivory);
    border: 1px solid rgba(248, 245, 239, 0.40);
}

.hero-cta-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(248, 245, 239, 0.12);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    z-index: -1;
}

.hero-cta-secondary:hover {
    border-color: var(--color-ivory);
}

.hero-cta-secondary:hover::before { transform: scaleX(1); }

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1s ease 1.3s both;
}

.scroll-arrow {
    width: 20px;
    height: 36px;
    border: 1px solid rgba(201, 221, 216, 0.40);
    border-radius: 10px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 3px;
    animation: scrollBounce 2.5s infinite;
}

@keyframes scrollBounce {
    0%, 100% { opacity: 1;   transform: translateX(-50%) translateY(0); }
    50%       { opacity: 0.2; transform: translateX(-50%) translateY(14px); }
}

/* ──────────────────────────────────────────────
   ABOUT SECTION
────────────────────────────────────────────── */
.about {
    padding: 120px 0 100px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Decorative botanical background */
.about::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    height: 340px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%238FAF8C' stroke-width='1' opacity='0.25'%3E%3Cellipse cx='100' cy='60' rx='40' ry='18' transform='rotate(-20 100 60)'/%3E%3Cellipse cx='100' cy='60' rx='30' ry='14' transform='rotate(20 100 60)'/%3E%3Cpath d='M100 60 Q120 30 145 15'/%3E%3Cpath d='M100 60 Q80 30 55 15'/%3E%3Cpath d='M100 60 Q110 90 100 125'/%3E%3Cpath d='M100 60 Q90 85 75 110'/%3E%3Cpath d='M100 60 Q115 85 130 110'/%3E%3Ccircle cx='100' cy='60' r='5'/%3E%3Ccircle cx='145' cy='15' r='3'/%3E%3Ccircle cx='55' cy='15' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
}

.about .container { position: relative; z-index: 1; }

.about-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.4rem, 3.5vw, 2.1rem);
    color: var(--color-forest);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.65;
    letter-spacing: 0.3px;
    font-weight: 300;
}

.about-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about-divider { text-align: center; }

.divider-icon {
    display: inline-block;
    font-size: 1rem;
    color: var(--color-gold);
    position: relative;
}

.divider-icon::before,
.divider-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.30), transparent);
}

.divider-icon::before { right: calc(100% + 20px); }
.divider-icon::after  { left:  calc(100% + 20px); }

/* ──────────────────────────────────────────────
   SPECIALS SECTION
────────────────────────────────────────────── */
.specials {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.specials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143, 175, 140, 0.35), transparent);
}

.specials-carousel {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    padding: 20px 0 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.specials-carousel::-webkit-scrollbar { display: none; }

.special-card {
    flex: 0 0 min(340px, 85vw);
    scroll-snap-align: start;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    transition: all var(--transition-luxury);
    border: var(--border-sage);
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(143, 175, 140, 0.50);
}

/* Arched image container */
.special-card-image-container {
    overflow: hidden;
    position: relative;
    border-radius: 50% 50% 0 0 / 30% 30% 0 0;
    margin: 16px 16px 0;
}

.special-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform var(--transition-luxury);
    filter: brightness(0.95) saturate(1.05);
}

.special-card:hover .special-card-image {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.1);
}

.special-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: rgba(201, 168, 76, 0.92);
    color: var(--color-white);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.special-card-body { padding: 20px 24px 24px; }

.special-card-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.special-card-desc {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
    font-weight: 300;
}

.special-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.special-card-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-gold-dark);
}

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: transparent;
    color: var(--color-forest);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    border: 1px solid rgba(61, 107, 79, 0.30);
    border-radius: 0;
    transition: all var(--transition-base);
    text-transform: uppercase;
}

.add-to-cart-btn:hover {
    background: var(--color-forest);
    color: var(--color-ivory);
    border-color: var(--color-forest);
}

.add-to-cart-btn.added {
    background: var(--color-success);
    border-color: var(--color-success);
    color: var(--color-white);
}

/* ──────────────────────────────────────────────
   GALLERY SECTION
────────────────────────────────────────────── */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143, 175, 140, 0.35), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item-large {
    grid-row: span 2;
    border-radius: 50% 50% var(--radius-sm) var(--radius-sm) / 20% 20% var(--radius-sm) var(--radius-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
    filter: brightness(0.92) saturate(1.05);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 107, 79, 0.65) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-ivory);
    font-weight: 300;
    letter-spacing: 1px;
}

/* ──────────────────────────────────────────────
   BOOKING SECTION
────────────────────────────────────────────── */
.booking-section {
    padding: 100px 0;
    background: var(--bg-tertiary);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143, 175, 140, 0.40), transparent);
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 48px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    border: var(--border-sage);
}

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

.form-group { display: flex; flex-direction: column; }

.form-group label {
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 1px solid rgba(143, 175, 140, 0.25);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.70);
    color: var(--color-text);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(143, 175, 140, 0.15);
}

.form-group input::placeholder { color: var(--color-text-dim); }

.form-group select option { background: var(--color-white); color: var(--color-text); }

.booking-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--color-forest);
    color: var(--color-ivory);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: 1px solid var(--color-forest);
    border-radius: 0;
    transition: all var(--transition-base);
    width: 100%;
    justify-content: center;
    margin-top: 12px;
    position: relative;
    overflow: hidden;
}

.booking-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    z-index: -1;
}

.booking-submit:hover {
    color: var(--color-forest);
    border-color: var(--color-gold);
    background: transparent;
}

.booking-submit:hover::before { transform: scaleX(1); }

.booking-submit svg { transition: transform var(--transition-base); }
.booking-submit:hover svg { transform: translateX(4px); stroke: var(--color-forest); }

/* ──────────────────────────────────────────────
   REVIEWS SECTION
────────────────────────────────────────────── */
.reviews-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '\201C';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 24rem;
    color: rgba(143, 175, 140, 0.07);
    pointer-events: none;
    line-height: 1;
}

.reviews-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143, 175, 140, 0.35), transparent);
}

/* Rating banner */
.reviews-rating-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    padding: 20px 36px;
    background: var(--bg-card);
    border: var(--border-gold);
    border-radius: var(--radius-md);
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
}

.rating-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-forest);
    line-height: 1;
    letter-spacing: -1px;
}

.rating-stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.rating-count {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

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

.review-card {
    background: var(--bg-card);
    border: var(--border-sage);
    border-radius: var(--radius-md);
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--color-gold);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Avatar + name row */
.review-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-white);
    flex-shrink: 0;
    letter-spacing: 0;
}

.review-author-name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.review-stars {
    color: var(--color-gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
}

.review-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.98rem;
    color: var(--color-text);
    line-height: 1.80;
    font-weight: 300;
    flex: 1;
}

.review-tag {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-dim);
    border: 1px solid rgba(143, 175, 140, 0.30);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    align-self: flex-start;
}

/* ──────────────────────────────────────────────
   CONTACT SECTION
────────────────────────────────────────────── */
.contact-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143, 175, 140, 0.35), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: var(--border-sage);
    transition: all var(--transition-base);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(143, 175, 140, 0.50);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(61, 107, 79, 0.25);
    color: var(--color-forest);
    border-radius: var(--radius-full);
    margin-bottom: 18px;
    transition: all var(--transition-base);
    background: rgba(143, 175, 140, 0.10);
}

.contact-card:hover .contact-icon {
    background: var(--color-forest);
    color: var(--color-ivory);
    border-color: var(--color-forest);
    transform: scale(1.08);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-forest);
    margin-bottom: 6px;
    font-weight: 400;
}

.contact-card p {
    font-size: 0.80rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

/* ──────────────────────────────────────────────
   LOCATION SECTION
────────────────────────────────────────────── */
.location-section {
    padding: 100px 0;
    background: var(--bg-tertiary);
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143, 175, 140, 0.40), transparent);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
}

.location-detail h3 {
    font-family: var(--font-body);
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 8px;
}

.location-detail p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    font-weight: 300;
}

.location-map {
    height: 360px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: var(--border-sage);
    box-shadow: var(--shadow-sm);
}

/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.footer {
    padding: 80px 0 48px;
    background: var(--color-forest);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Botanical overlay on footer */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%23F8F5EF' stroke-width='0.7' opacity='0.06'%3E%3Cellipse cx='150' cy='80' rx='55' ry='25' transform='rotate(-25 150 80)'/%3E%3Cellipse cx='150' cy='80' rx='40' ry='18' transform='rotate(25 150 80)'/%3E%3Cpath d='M150 80 Q175 45 205 25'/%3E%3Cpath d='M150 80 Q125 45 95 25'/%3E%3Cpath d='M150 80 Q160 115 150 155'/%3E%3Ccircle cx='150' cy='80' r='7'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 300px 300px;
    pointer-events: none;
    z-index: 0;
}

.footer .container { position: relative; z-index: 1; }

.footer-content { max-width: 500px; margin: 0 auto; }

.footer-logo {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-ivory);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

/* Gold trim under logo */
.footer-logo::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--color-gold);
    margin: 10px auto 0;
}

.footer-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(201, 221, 216, 0.80);
    line-height: 1.75;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(248, 245, 239, 0.20);
    color: rgba(201, 221, 216, 0.70);
    transition: all var(--transition-base);
    border-radius: 50%;
}

.footer-socials a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.10);
    transform: translateY(-2px);
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto 20px;
    opacity: 0.6;
}

.footer-address {
    font-size: 0.78rem;
    color: rgba(201, 221, 216, 0.65);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.footer-copy {
    font-size: 0.65rem;
    color: rgba(201, 221, 216, 0.40);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ──────────────────────────────────────────────
   CART DRAWER
────────────────────────────────────────────── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(61, 107, 79, 0.30);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(8px);
}

.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: min(400px, 90vw);
    height: 100vh;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 60px rgba(61, 107, 79, 0.18);
    transition: right var(--transition-spring);
    border-left: 1px solid rgba(143, 175, 140, 0.25);
}

.cart-drawer.active { right: 0; }

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(143, 175, 140, 0.20);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--color-forest);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cart-close {
    font-size: 1.6rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    line-height: 1;
}

.cart-close:hover { color: var(--color-forest); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 28px; }

.cart-items::-webkit-scrollbar { width: 3px; }
.cart-items::-webkit-scrollbar-track { background: transparent; }
.cart-items::-webkit-scrollbar-thumb {
    background: rgba(143, 175, 140, 0.35);
    border-radius: 3px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 12px;
    color: var(--color-text-muted);
    text-align: center;
}

.cart-empty svg { stroke: var(--color-text-dim); }

.cart-empty p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.cart-empty span { font-size: 0.8rem; color: var(--color-text-dim); }

.cart-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(143, 175, 140, 0.15);
    animation: fadeInUp 0.3s ease;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    filter: brightness(0.96);
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.98rem;
    font-weight: 400;
    color: var(--color-forest);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(61, 107, 79, 0.25);
    color: var(--color-forest);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    border-radius: 0;
}

.qty-btn:hover {
    background: var(--color-forest);
    color: var(--color-ivory);
    border-color: var(--color-forest);
}

.cart-item-qty {
    font-weight: 500;
    font-size: 0.95rem;
    min-width: 20px;
    text-align: center;
    color: var(--color-text);
}

.cart-item-remove {
    color: var(--color-error);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: auto;
    opacity: 0.55;
    transition: opacity var(--transition-fast);
    align-self: center;
}

.cart-item-remove:hover { opacity: 1; }

.cart-footer {
    padding: 24px 28px;
    border-top: 1px solid rgba(143, 175, 140, 0.20);
    background: var(--bg-tertiary);
}

.cart-footer.hidden { display: none; }

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cart-total span:first-child {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.cart-total span:last-child {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-forest);
}

.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    background: var(--color-forest);
    color: var(--color-ivory);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all var(--transition-base);
}

.checkout-btn:hover {
    background: var(--color-gold);
    color: var(--color-forest);
    transform: translateY(-1px);
}

.delivery-note {
    text-align: center;
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-top: 14px;
    letter-spacing: 0.5px;
}

/* ──────────────────────────────────────────────
   MODAL
────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(61, 107, 79, 0.35);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    padding: 20px;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-box {
    background: var(--bg-primary);
    border: var(--border-sage);
    border-radius: var(--radius-md);
    padding: 48px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-spring);
    border-top: 3px solid var(--color-gold);
}

.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }

.modal-icon { font-size: 3rem; margin-bottom: 20px; }

.modal-box h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-forest);
    margin-bottom: 14px;
    font-weight: 400;
}

.modal-box p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 28px;
    font-weight: 300;
}

.modal-btn {
    padding: 14px 36px;
    background: var(--color-forest);
    color: var(--color-ivory);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all var(--transition-base);
    border: 1px solid var(--color-forest);
}

.modal-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-forest);
}

.modal-btn-secondary {
    background: transparent;
    color: var(--color-text-muted);
    border-color: rgba(143, 175, 140, 0.35);
    margin-left: 12px;
}

.modal-btn-secondary:hover {
    background: rgba(143, 175, 140, 0.12);
    border-color: var(--color-sage);
    color: var(--color-forest);
}

.geo-modal-actions { display: flex; justify-content: center; gap: 12px; }
.geo-icon { font-size: 2.5rem; }

/* Address Modal */
.address-modal-box {
    max-width: 440px;
    max-height: 85vh; /* Limit height for scrolling */
    overflow-y: auto; /* Enable vertical scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    display: flex;
    flex-direction: column; /* Allow proper flex layout */
}

/* Ensure form container allows scrolling */
.address-form {
    width: 100%;
    margin-top: 24px;
    overflow: visible; /* Allow content to flow */
    flex: 1; /* Take available space */
    display: flex;
    flex-direction: column;
}

/* Make form sections flexible */
.form-section {
    flex-shrink: 0; /* Prevent shrinking */
}

/* Ensure modal header elements are fixed at top */
.modal-icon,
.modal-box h3,
.modal-box p {
    flex-shrink: 0; /* Prevent shrinking */
}

/* Make action buttons stick to bottom */
.address-modal-actions {
    flex-shrink: 0; /* Prevent shrinking */
    margin-top: auto; /* Push to bottom */
}

.form-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(143, 175, 140, 0.2);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
}

.form-section h4 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-forest);
    margin-bottom: 16px;
    text-align: left;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--color-mint);
    border-radius: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-ivory);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
    line-height: 1.4;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-forest);
    box-shadow: 0 0 0 3px rgba(61, 107, 79, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.address-modal-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.modal-close-x {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-muted);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: all 0.2s;
}

.modal-close-x:hover {
    color: var(--color-forest);
    transform: scale(1.1);
}

/* ──────────────────────────────────────────────
   ANIMATIONS
────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ──────────────────────────────────────────────
   UTILITY
────────────────────────────────────────────── */
.hidden { display: none !important; }

.veg-indicator {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--color-veg);
    border-radius: 2px;
    position: relative;
    flex-shrink: 0;
}

.veg-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--color-veg);
    border-radius: 50%;
}

.veg-indicator.non-veg { border-color: var(--color-error); }
.veg-indicator.non-veg::after { background: var(--color-error); }

/* ──────────────────────────────────────────────
   TOAST
────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 14px 28px;
    background: var(--color-forest);
    color: var(--color-ivory);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 1px;
    border: var(--border-sage);
    box-shadow: var(--shadow-lg);
    z-index: 10002;
    transition: transform var(--transition-spring);
    white-space: nowrap;
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ──────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 220px 220px 220px;
    }
    .gallery-item:nth-child(1) { grid-row: span 1; }
    .gallery-item:nth-child(6) { grid-row: span 1; grid-column: auto; }
    .gallery-item-large        { grid-row: span 1; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section-title { margin-bottom: 36px; }
    .hero-title { font-size: 4rem; }
    .hero-tagline { font-size: 0.95rem; margin-bottom: 32px; }
    .hero-cta { padding: 14px 28px; font-size: 0.68rem; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
    }
    .gallery-item-large,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-row: span 1;
        grid-column: auto;
    }

    .form-row { grid-template-columns: 1fr; }
    .booking-form { padding: 28px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-rating-banner { max-width: 100%; }
    .location-content { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 3.2rem; }
    .booking-form { padding: 20px; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
}

/* =============================================
   MOBILE-FIRST OPTIMIZATIONS
   Enhanced for best mobile experience
   ============================================= */

/* --- Extra Small Devices (320px - 480px) --- */
@media (max-width: 480px) {
    /* Base */
    html { font-size: 14px; }
    .container { padding: 0 16px; }
    
    /* Hero Section */
    .hero { min-height: 100svh; } /* Use svh for mobile viewport */
    .hero-title { 
        font-size: 2.6rem; 
        line-height: 1.1;
        margin-bottom: 16px;
    }
    .hero-tagline { 
        font-size: 0.85rem; 
        margin-bottom: 24px;
        padding: 0 10px;
    }
    .hero-welcome {
        font-size: 0.6rem;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 20px;
    }
    .hero-cta {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.7rem;
        justify-content: center;
    }
    
    /* Loader */
    .loader-logo { font-size: 3.5rem; }
    .loader-tagline { 
        font-size: 0.55rem; 
        letter-spacing: 4px;
    }
    
    /* Section Titles */
    .section-title { 
        font-size: 1.8rem; 
        margin-bottom: 32px;
        padding: 0 10px;
    }
    .section-eyebrow { 
        font-size: 0.6rem; 
        letter-spacing: 3px;
    }
    .gold-line { margin-bottom: 32px; }
    
    /* Cart Drawer - Full Width on Mobile */
    .cart-drawer {
        width: 100vw;
        right: -100vw;
    }
    .cart-header { padding: 20px 16px; }
    .cart-header h3 { font-size: 1.2rem; }
    .cart-items { padding: 12px 16px; }
    .cart-item { gap: 10px; padding: 14px 0; }
    .cart-item-image { 
        width: 60px; 
        height: 60px; 
    }
    .cart-item-name { font-size: 0.85rem; }
    .cart-footer { padding: 16px; }
    .checkout-btn { 
        padding: 16px; 
        font-size: 0.75rem;
    }
    
    /* Booking Form */
    .booking-form { 
        padding: 16px; 
        margin: 0 10px;
    }
    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    /* Gallery */
    .gallery-item { height: 200px !important; }
    
    /* Reviews */
    .review-card { padding: 24px 16px; }
    .review-text { font-size: 0.9rem; }
    
    /* Location Section */
    .location-hours { padding: 20px; }
    .map-wrapper { height: 250px; }
    
    /* Footer */
    .footer { padding: 50px 0 24px; }
    .footer-brand { font-size: 2.2rem; }
    .footer-links { gap: 24px; }
    .footer-link { font-size: 0.7rem; }
    
    /* Modals */
    .modal-box,
    .address-modal-box {
        width: calc(100% - 32px);
        padding: 24px 20px;
        max-height: 85vh; /* Allow more space for content */
        overflow-y: auto; /* Ensure scrolling works */
        -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
    }
    
    .address-modal-box h3 { font-size: 1.3rem; }
    .address-modal-box input,
    .address-modal-box textarea {
        padding: 14px;
        font-size: 16px; /* Prevents iOS zoom */
    }
}

/* --- Small Devices (481px - 768px) --- */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-title { font-size: 3.5rem; }
    .hero-tagline { font-size: 0.9rem; }
    .hero-actions { 
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-cta { 
        padding: 14px 26px;
        min-width: 180px;
    }
    
    .cart-drawer { width: 85vw; }
    
    .section-title { font-size: 2.2rem; }
}

/* --- Touch Device Optimizations --- */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-link { padding: 12px 8px; }
    .category-pill { 
        padding: 14px 24px; 
        min-height: 48px;
    }
    .menu-add-btn { 
        padding: 14px 24px; 
        min-height: 48px;
    }
    .cart-toggle { padding: 12px; }
    .hamburger { padding: 12px; }
    
    /* Disable hover effects on touch */
    .menu-card:hover {
        transform: none;
    }
    .menu-card:active {
        transform: scale(0.98);
    }
    
    /* Better tap feedback */
    .btn, button, a {
        -webkit-tap-highlight-color: rgba(201, 168, 76, 0.2);
    }
    
    /* Smooth scrolling for touch */
    .category-pills {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
}

/* --- Safe Area Support (iPhone X+) --- */
@supports (padding: max(0px)) {
    .navbar {
        padding-top: max(20px, env(safe-area-inset-top));
    }
    .cart-drawer {
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
    .footer {
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }
    .checkout-btn {
        margin-bottom: max(0px, env(safe-area-inset-bottom));
    }
}

/* --- Landscape Phone --- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    .hero-title { font-size: 2.5rem; }
    .loader-logo { font-size: 3rem; }
    .nav-links.active {
        padding: 60px 0 20px;
        gap: 16px;
    }
    
    /* Address modal for landscape phones - more aggressive height limiting */
    .address-modal-box {
        max-height: 70vh;
        padding: 16px 20px;
    }
    
    .form-section {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
}

/* --- Very Short Screens (any width) --- */
@media (max-height: 600px) {
    .address-modal-box {
        max-height: 80vh;
        padding: 16px 20px;
    }
    
    .modal-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .modal-box h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .modal-box p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .form-section {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    
    .form-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .address-modal-actions {
        margin-top: 16px;
    }
}

/* --- Extra Small Heights --- */
@media (max-height: 480px) {
    .address-modal-box {
        max-height: 75vh;
        padding: 12px 16px;
    }
    
    .form-section {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    
    .form-group {
        margin-bottom: 10px;
    }
    
    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .modal-btn {
        padding: 10px 24px;
        font-size: 0.65rem;
    }
}

/* --- Performance Optimizations --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* --- Dark Mode Support --- */
@media (prefers-color-scheme: dark) {
    /* Keep light theme for café branding, but reduce brightness */
    .hero-bg-image {
        filter: brightness(0.85);
    }
}

/* --- High Contrast Mode --- */
@media (prefers-contrast: high) {
    .nav-link, .category-pill, .menu-add-btn {
        border-width: 2px;
    }
    .section-title {
        font-weight: 600;
    }
}

/* --- Print Styles --- */
@media print {
    .navbar, .cart-overlay, .cart-drawer, 
    .hero-cta, .menu-add-btn, .hamburger,
    .loading-screen { display: none !important; }
    
    .hero { min-height: auto; padding: 20px; }
    .menu-card { break-inside: avoid; }
}

/* --- Mobile Menu Fail-safe Visibility --- */
@media (max-width: 768px) {
    #menu.reveal {
        opacity: 1;
        transform: none;
    }
}
