/* ============================================================
   JAGADAMBA MITHAI BHANDAR – COMPLETE UNIFIED STYLESHEET
   Works for index, menu, legacy, sweets – all pages
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --saffron: #E87722;
    --deep-red: #9B1B1B;
    --gold: #C9882A;
    --cream: #FDF6E3;
    --ivory: #FAF0C8;
    --brown: #3E1C0A;
    --text: #2A1200;
    --muted: #7A5C3A;
    --white: #FFFFFF;
    --fresh-green: #1a8a3f;
    --soft-shadow: 0 8px 32px rgba(62, 28, 10, 0.1);
    --hover-shadow: 0 16px 48px rgba(62, 28, 10, 0.18);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    cursor: default;
}

/* ── PRELOADER ── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    pointer-events: all;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.preloader-dot {
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    animation: preloaderBounce 0.7s ease-in-out infinite alternate;
    box-shadow: 0 0 24px rgba(201, 136, 42, 0.7);
}
.preloader-dot:nth-child(2) { animation-delay: 0.18s; }
.preloader-dot:nth-child(3) { animation-delay: 0.36s; }
.preloader-dots { display: flex; gap: 10px; }
.preloader-text {
    color: var(--ivory);
    font-family: 'Yatra One', cursive;
    font-size: 1rem;
    letter-spacing: 0.08em;
    animation: preloaderFade 1.4s ease-in-out infinite;
}
@keyframes preloaderBounce {
    0% { transform: translateY(0); opacity: 0.5; }
    100% { transform: translateY(-22px); opacity: 1; }
}
@keyframes preloaderFade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ── CUSTOM CURSOR GLOW ── */
.cursor-glow {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 119, 34, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    will-change: left, top;
}
.cursor-glow.hovering {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(201, 136, 42, 0.35) 0%, transparent 70%);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(62, 28, 10, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 68px;
    transition: height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
nav.scrolled {
    height: 76 spx;
    background: rgba(62, 28, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-logo {
    font-family: 'Yatra One', cursive;
    color: var(--gold);
    font-size: 1.35rem;
    letter-spacing: 0.03em;
    transition: font-size 0.35s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
nav.scrolled .nav-logo { font-size: 1.1rem; }
.nav-logo .logo-icon {
    display: inline-block;
    animation: logoWiggle 3s ease-in-out infinite;
    font-size: 1.3em;
}
@keyframes logoWiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(8deg); }
    75% { transform: rotate(-8deg); }
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--ivory);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.25s, transform 0.25s;
    position: relative;
    padding: 0.25rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active-page {
    color: var(--saffron);
    font-weight: 700;
}
.nav-links a.active-page::after {
    width: 100%;
    background: var(--saffron);
}

/* ── MOBILE NAV – ALWAYS VISIBLE, NO HAMBURGER ── */
.nav-toggle {
    display: none; /* hidden on desktop */
}
@media (max-width: 900px) {
    /* Hide the hamburger completely */
    .nav-toggle { display: none !important; }

    /* Always show links horizontally */
    .nav-links {
        position: static;
        flex-direction: row;
        background: none;
        width: auto;
        height: auto;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        right: auto;
        justify-content: center;
        gap: 0.6rem;
        font-size: 0.75rem;
    }
    .nav-links li { margin: 0; }
    .nav-links a { padding: 0.3rem 0.5rem; }

    /* Navbar adjustments for smaller screens */
    #navbar {
        padding: 0.6rem 0rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .nav-logo {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--brown);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5vw;
    text-align: center;
}
/* Base hero background pattern (homepage) */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(201, 136, 42, 0.12) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'%3E%3Ccircle cx='160' cy='160' r='155' fill='none' stroke='%23C9882A' stroke-width='0.5' opacity='0.2'/%3E%3Ccircle cx='160' cy='160' r='130' fill='none' stroke='%23C9882A' stroke-width='0.5' opacity='0.15'/%3E%3Ccircle cx='160' cy='160' r='100' fill='none' stroke='%23E87722' stroke-width='0.5' opacity='0.12'/%3E%3Cpath d='M160 5 L165 155 L160 315 L155 155 Z' fill='%23C9882A' opacity='0.06'/%3E%3Cpath d='M5 160 L155 165 L315 160 L155 155 Z' fill='%23C9882A' opacity='0.06'/%3E%3Cpath d='M160 5 L250 115 L315 250 L170 160 Z' fill='%23E87722' opacity='0.04'/%3E%3Cpath d='M160 5 L70 115 L5 250 L150 160 Z' fill='%23E87722' opacity='0.04'/%3E%3C/svg%3E");
    background-size: cover, 400px 400px;
    background-repeat: no-repeat, repeat;
    animation: bgDrift 30s linear infinite;
}
@keyframes bgDrift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 0 0, 400px 400px; }
}

/* ── MENU PAGE HERO – OVERRIDE WITH GRADIENT ── */
.menu-page .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #3E1F0D 0%, #6B2F14 40%, #8B4513 100%);
}
.menu-page .hero::before {
    display: none; /* remove the pattern */
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    animation: floatUp 6s ease-in-out infinite;
}
@keyframes floatUp {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 0.7; }
    90% { opacity: 0.1; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1.5); }
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(201, 136, 42, 0.4);
    padding: 0.35rem 1rem;
    border-radius: 2px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
}
.hero h1 {
    font-family: 'Yatra One', cursive;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--ivory);
    line-height: 1.05;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}
.hero h1 span {
    color: var(--saffron);
    display: inline-block;
    animation: saffronGlow 2.5s ease-in-out infinite;
}
@keyframes saffronGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(232, 119, 34, 0.4); }
    50% { text-shadow: 0 0 40px rgba(232, 119, 34, 0.8), 0 0 80px rgba(232, 119, 34, 0.3); }
}
.hero-sub {
    font-family: 'Noto Serif', serif;
    font-style: italic;
    color: rgba(250, 240, 200, 0.65);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.7s;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.9s;
}
.btn-primary {
    background: var(--saffron);
    color: var(--white);
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.25s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 24px rgba(232, 119, 34, 0.4);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover {
    background: #d06010;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232, 119, 34, 0.55);
}
.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.25s, color 0.25s, transform 0.3s, box-shadow 0.3s;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--brown);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 136, 42, 0.4);
}
.hero-rating {
    margin-top: 3rem;
    color: rgba(250, 240, 200, 0.5);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 1.1s;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; }
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounceDown 2s ease-in-out infinite;
    opacity: 0.6;
    cursor: pointer;
}
.hero-scroll-indicator span { display: block; font-size: 1.8rem; color: var(--gold); }
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(14px); }
}

/* ── SECTION SHARED ── */
section { padding: 6rem 5vw; position: relative; }
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: 'Yatra One', cursive;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--brown);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-body {
    font-family: 'Noto Serif', serif;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 560px;
}

/* ── DIVIDER ── */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(201, 136, 42, 0.3);
}
.divider-icon {
    font-size: 1.3rem;
    animation: dividerPulse 2s ease-in-out infinite;
}
@keyframes dividerPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* ── ABOUT ── */
.about {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: center;
}
@media(max-width:700px) { .about { grid-template-columns: 1fr; } }
.about-visual {
    background: linear-gradient(135deg, var(--ivory) 0%, #f5e8c0 100%);
    border-radius: 12px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid rgba(201, 136, 42, 0.25);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-visual:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(62, 28, 10, 0.2);
}
.about-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    transition: opacity 0.5s ease;
}
.about-visual:hover img { opacity: 0.22; }
.about-visual > *:not(img) { position: relative; z-index: 1; }
.about-icon {
    font-size: 4.5rem;
    line-height: 1;
    animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.about-since {
    font-family: 'Yatra One', cursive;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}
.about-badge {
    background: var(--deep-red);
    color: var(--ivory);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ── LEGACY (generations) ── */
.legacy {
    background: linear-gradient(180deg, #fdf5e6 0%, #fef9f0 40%, #fdf5e6 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 6rem 5vw 7rem;
}
.legacy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 50%, rgba(201,136,42,0.07) 0%, transparent 55%),
                radial-gradient(ellipse at 75% 50%, rgba(232,119,34,0.06) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 30%, rgba(201,136,42,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.legacy > * { position: relative; z-index: 1; }
.legacy-mega-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(100px, 16vw, 150px);
    height: clamp(100px, 16vw, 150px);
    border-radius: 50%;
    background: var(--deep-red);
    color: var(--ivory);
    font-family: 'Yatra One', cursive;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    line-height: 1.15;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 0 0 8px rgba(201,136,42,0.25), 0 0 0 18px rgba(201,136,42,0.12), 0 0 0 30px rgba(201,136,42,0.05), 0 8px 40px rgba(62,28,10,0.25);
    animation: legacyPulse 2.8s ease-in-out infinite;
    letter-spacing: 0.02em;
    transition: transform 0.4s ease;
    cursor: default;
}
.legacy-mega-badge:hover { transform: scale(1.08); }
@keyframes legacyPulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(201,136,42,0.25), 0 0 0 18px rgba(201,136,42,0.12), 0 0 0 30px rgba(201,136,42,0.05), 0 8px 40px rgba(62,28,10,0.25); }
    50% { box-shadow: 0 0 0 14px rgba(201,136,42,0.35), 0 0 0 28px rgba(201,136,42,0.2), 0 0 0 44px rgba(201,136,42,0.08), 0 12px 52px rgba(62,28,10,0.35); }
}
.legacy-mega-badge span { display: block; }
.legacy-mega-badge .years-num { font-size: 1.6em; font-weight: 700; color: var(--gold); }
.legacy-header { margin-bottom: 3.5rem; }
.legacy-header .section-title { color: var(--brown); margin-bottom: 0.6rem; }
.legacy-header .section-body { margin: 0 auto; color: var(--muted); max-width: 600px; }
.generations-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    flex-wrap: wrap;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.generations-row::before {
    content: '';
    position: absolute;
    top: clamp(60px, 8vw, 90px);
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(201,136,42,0.5) 12%, rgba(201,136,42,0.8) 30%, var(--gold) 50%, rgba(201,136,42,0.8) 70%, rgba(201,136,42,0.5) 88%, transparent 100%);
    border-radius: 50px;
    z-index: 0;
    pointer-events: none;
}
@media(max-width:750px) {
    .generations-row { flex-direction: column; align-items: center; gap: 2rem; }
    .generations-row::before {
        top: 8%; bottom: 8%; left: 50%; right: auto; width: 3px; height: auto;
        background: linear-gradient(180deg, transparent 0%, rgba(201,136,42,0.5) 12%, rgba(201,136,42,0.8) 30%, var(--gold) 50%, rgba(201,136,42,0.8) 70%, rgba(201,136,42,0.5) 88%, transparent 100%);
        transform: translateX(-50%);
    }
}
.gen-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative; z-index: 2; flex: 1; min-width: 200px; max-width: 280px;
    transition: transform 0.4s ease; cursor: default;
}
.gen-card:hover { transform: translateY(-10px); }
.gen-circle-wrap {
    position: relative; width: clamp(110px, 14vw, 155px); height: clamp(110px, 14vw, 155px);
    border-radius: 50%; margin-bottom: 1.4rem;
    box-shadow: 0 0 0 6px rgba(201,136,42,0.3), 0 0 0 12px rgba(201,136,42,0.13), 0 0 0 20px rgba(201,136,42,0.05), 0 6px 30px rgba(62,28,10,0.2);
    transition: box-shadow 0.4s ease, transform 0.4s ease; overflow: visible;
}
.gen-card:hover .gen-circle-wrap {
    box-shadow: 0 0 0 8px rgba(232,119,34,0.5), 0 0 0 16px rgba(201,136,42,0.25), 0 0 0 28px rgba(201,136,42,0.1), 0 10px 40px rgba(62,28,10,0.3);
    transform: scale(1.05);
}
.gen-circle-wrap::after {
    content: ''; position: absolute; inset: -10px; border-radius: 50%;
    border: 2.5px dashed rgba(201,136,42,0.45); pointer-events: none;
    animation: ringSpin 16s linear infinite;
}
@keyframes ringSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.gen-circle-img {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block;
    border: 3px solid var(--white); position: relative; z-index: 1;
    background: linear-gradient(135deg, #fdf5e6, #f5e8c0); transition: border-color 0.3s;
}
.gen-card:hover .gen-circle-img { border-color: var(--gold); }
.gen-badge {
    position: absolute; top: -8px; right: -8px; z-index: 5; background: var(--saffron);
    color: var(--white); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
    padding: 0.3rem 0.65rem; border-radius: 20px; text-transform: uppercase;
    box-shadow: 0 3px 12px rgba(232,119,34,0.5); white-space: nowrap;
    animation: badgeGlow 2s ease-in-out infinite;
}
.gen-badge.founder-badge { background: var(--deep-red); box-shadow: 0 3px 14px rgba(155,27,27,0.5); animation-name: badgeGlowRed; }
.gen-badge.bestseller-badge { background: var(--fresh-green); box-shadow: 0 3px 14px rgba(26,138,63,0.45); animation-name: badgeGlowGreen; }
@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 3px 12px rgba(232,119,34,0.5); }
    50% { box-shadow: 0 3px 22px rgba(232,119,34,0.75), 0 0 0 4px rgba(232,119,34,0.18); }
}
@keyframes badgeGlowRed {
    0%, 100% { box-shadow: 0 3px 14px rgba(155,27,27,0.5); }
    50% { box-shadow: 0 3px 24px rgba(155,27,27,0.75), 0 0 0 4px rgba(155,27,27,0.18); }
}
@keyframes badgeGlowGreen {
    0%, 100% { box-shadow: 0 3px 14px rgba(26,138,63,0.45); }
    50% { box-shadow: 0 3px 24px rgba(26,138,63,0.7), 0 0 0 4px rgba(26,138,63,0.18); }
}
.gen-name {
    font-family: 'Noto Serif', serif; font-weight: 700; color: var(--brown);
    font-size: 1.05rem; margin-bottom: 0.2rem; letter-spacing: 0.02em;
}
.gen-role {
    font-size: 0.8rem; color: var(--saffron); font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; margin-bottom: 0.3rem;
}
.gen-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; max-width: 220px; font-style: italic; }
.gen-highlight-star {
    display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 0.4rem;
    font-size: 0.7rem; font-weight: 700; color: var(--fresh-green); letter-spacing: 0.05em;
    background: rgba(26,138,63,0.08); padding: 0.25rem 0.7rem; border-radius: 20px;
    transition: background 0.3s;
}
.gen-card:hover .gen-highlight-star { background: rgba(26,138,63,0.16); }

/* ── DAILY HIGHLIGHTS ── */
.daily-highlights {
    background: var(--ivory);
    text-align: center;
    padding: 5rem 5vw;
    position: relative;
}
.daily-highlights::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
    animation: shimmerBar 3s ease-in-out infinite;
    background-size: 200% 100%;
}
@keyframes shimmerBar {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.highlights-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}
.highlight-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    max-width: 240px;
    flex: 1 1 220px;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(201, 136, 42, 0.25);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
    overflow: visible;
}
.highlight-card:hover { transform: translateY(-8px); box-shadow: var(--hover-shadow); }
.highlight-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fresh-green);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(26, 138, 63, 0.35);
}
.highlight-img {
    width: 125px; height: 125px; border-radius: 50%; object-fit: cover;
    margin: 0.5rem auto 1rem;
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 6px rgba(201, 136, 42, 0.15);
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.highlight-card:hover .highlight-img {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(201, 136, 42, 0.25);
}
.highlight-name { font-family: 'Noto Serif', serif; font-weight: 700; color: var(--brown); font-size: 1.1rem; margin-bottom: 0.4rem; }
.highlight-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; margin-bottom: 0.8rem; }
.highlight-price { font-weight: 700; color: var(--saffron); font-size: 1rem; }

/* ── SWEETS GRID ── */
.sweets { background: var(--cream); }
.sweets-header { margin-bottom: 3rem; text-align: center; }
.sweets-header .section-body { margin: 0 auto; }
.sweets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.8rem;
}
.sweet-card {
    background: var(--white); border-radius: 10px; overflow: hidden;
    border: 1px solid rgba(201,136,42,0.2); transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}
.sweet-card:hover { transform: translateY(-6px); box-shadow: var(--hover-shadow); }
.sweet-img {
    height: 190px; background: linear-gradient(135deg, var(--ivory), #f5e8c0);
    overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative;
}
.sweet-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(62,28,10,0.05) 100%);
    pointer-events: none;
}
.sweet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.sweet-card:hover .sweet-img img { transform: scale(1.06); }
.sweet-info { padding: 1.2rem 1.3rem 1.3rem; }
.sweet-name {
    font-family: 'Noto Serif', serif; font-weight: 700; color: var(--brown);
    margin-bottom: 0.3rem; font-size: 1.05rem;
}
.sweet-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.sweet-tag {
    display: inline-block; margin-top: 0.65rem; background: rgba(232,119,34,0.12);
    color: var(--saffron); font-size: 0.7rem; padding: 0.2rem 0.7rem; border-radius: 20px;
    font-weight: 600; letter-spacing: 0.04em; transition: background 0.3s, color 0.3s;
}
.sweet-card:hover .sweet-tag { background: var(--saffron); color: var(--white); }

.extra-sweets-container { display: none; opacity: 0; transition: opacity 0.5s ease; }
.extra-sweets-container.visible { display: block; opacity: 1; }
.extra-sweets-container.visible .sweet-card {
    animation: extraCardIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.extra-sweets-container.visible .sweets-grid .sweet-card:nth-child(1) { animation-delay: 0.02s; }
.extra-sweets-container.visible .sweets-grid .sweet-card:nth-child(2) { animation-delay: 0.06s; }
.extra-sweets-container.visible .sweets-grid .sweet-card:nth-child(3) { animation-delay: 0.10s; }
.extra-sweets-container.visible .sweets-grid .sweet-card:nth-child(4) { animation-delay: 0.14s; }
.extra-sweets-container.visible .sweets-grid .sweet-card:nth-child(5) { animation-delay: 0.18s; }
.extra-sweets-container.visible .sweets-grid .sweet-card:nth-child(6) { animation-delay: 0.22s; }
.extra-sweets-container.visible .sweets-grid .sweet-card:nth-child(7) { animation-delay: 0.26s; }
.extra-sweets-container.visible .sweets-grid .sweet-card:nth-child(8) { animation-delay: 0.30s; }
.extra-sweets-container.visible .sweets-grid .sweet-card:nth-child(9) { animation-delay: 0.34s; }
.extra-sweets-container.visible .sweets-grid .sweet-card:nth-child(10) { animation-delay: 0.38s; }
.extra-sweets-container.visible .sweets-grid .sweet-card:nth-child(11) { animation-delay: 0.42s; }
@keyframes extraCardIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.see-more-btn-wrapper { text-align: center; margin-top: 2rem; }
.btn-see-more {
    background: transparent; border: 2px solid var(--saffron); color: var(--saffron);
    padding: 0.75rem 2rem; border-radius: 30px; font-weight: 600; font-size: 0.95rem;
    cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-see-more:hover {
    background: var(--saffron); color: white; transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232,119,34,0.3);
}
.btn-see-more .arrow-icon { font-size: 1.2rem; transition: transform 0.3s ease; }
.btn-see-more.expanded .arrow-icon { transform: rotate(180deg); }

/* ── WEIGHT SLIDER & PRICE ── */
.weight-selector {
    margin-top: 0.6rem;
    width: 100%;
}
.weight-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 0.2rem;
}
.weight-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    background: linear-gradient(90deg, var(--saffron) 0%, var(--gold) 100%);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}
.weight-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--deep-red);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.weight-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.selected-weight {
    text-align: center;
    font-weight: 700;
    color: var(--brown);
    margin: 0.3rem 0 0.1rem;
    font-size: 0.9rem;
}
.dynamic-price {
    text-align: center;
    font-weight: 700;
    color: var(--saffron);
    font-size: 1rem;
    transition: color 0.25s ease;
}
.dynamic-price.price-flash {
    color: var(--deep-red);
}

/* ── PACKET QUANTITY SELECTOR ── */
.packet-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.qty-btn {
    background: var(--saffron);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.qty-btn:hover {
    background: #d06010;
    transform: scale(1.1);
}
.qty-btn:active { transform: scale(0.92); }
.qty-display {
    font-weight: 700;
    color: var(--brown);
    min-width: 24px;
    text-align: center;
}
.packet-label {
    color: var(--muted);
    font-size: 0.8rem;
}
.packet-total-price {
    transition: color 0.25s ease;
}

/* ── WHY US ── */
.why {
    background: var(--brown);
    color: var(--ivory);
    text-align: center;
}
.why .section-title { color: var(--ivory); }
.why .section-body {
    color: rgba(250, 240, 200, 0.65);
    margin: 0 auto 3rem;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 136, 42, 0.25);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
    cursor: default;
}
.why-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 136, 42, 0.5);
}
.why-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: iconFloat 3.5s ease-in-out infinite;
    transition: transform 0.3s;
}
.why-card:hover .why-icon {
    transform: scale(1.2);
    animation: none;
}
.why-card h3 {
    font-family: 'Noto Serif', serif;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.why-card p {
    font-size: 0.9rem;
    color: rgba(250, 240, 200, 0.6);
    line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--ivory); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--white);
    border-left: 4px solid var(--saffron);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
}
.testimonial-text {
    font-family: 'Noto Serif', serif;
    font-style: italic;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.testimonial-author {
    font-weight: 600;
    color: var(--brown);
    font-size: 0.9rem;
}
.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* ── CONTACT ── */
.contact {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: start;
}
@media(max-width:700px) { .contact { grid-template-columns: 1fr; } }
.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s;
}
.contact-item:hover { transform: translateX(4px); }
.contact-icon { font-size: 1.4rem; margin-top: 0.1rem; }
.contact-item h4 { font-weight: 600; color: var(--brown); margin-bottom: 0.2rem; }
.contact-item p,
.contact-item a {
    color: var(--muted);
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s;
}
.contact-item a:hover { color: var(--saffron); }
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}
.hours-table td {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--muted);
}
.hours-table td:first-child {
    font-weight: 600;
    color: var(--brown);
    width: 120px;
}

/* ── MAP ── */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(62, 28, 10, 0.15);
    border: 2px solid rgba(201, 136, 42, 0.3);
    background: var(--ivory);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.map-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(62, 28, 10, 0.22);
}
.map-container iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: 0;
}
.map-direct-btn {
    display: block;
    text-align: center;
    background: var(--saffron);
    color: white;
    padding: 0.8rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background 0.25s, letter-spacing 0.25s;
}
.map-direct-btn:hover {
    background: #d06010;
    letter-spacing: 0.07em;
}

/* ── FOOTER ── */
footer {
    background: var(--brown);
    color: rgba(250, 240, 200, 0.5);
    text-align: center;
    padding: 2.5rem 5vw;
    font-size: 0.85rem;
}
footer strong { color: var(--gold); }
.footer-hearts {
    display: inline-block;
    animation: heartBeat 1.2s ease-in-out infinite;
}
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.25); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BACK TO TOP ── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--saffron);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(232, 119, 34, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #d06010;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(232, 119, 34, 0.6);
}

/* ── MENU PAGE SPECIFIC COMPONENTS ── */
/* Sticky category navigation */
.category-nav-sticky {
    background: var(--cream);
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(139, 90, 43, 0.2);
    position: sticky;
    top: 70px;
    z-index: 90;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
@media (max-width: 768px) {
    .category-nav-sticky {
        top: 60px;
        padding: 0.8rem;
        gap: 0.35rem;
    }
    .category-nav-sticky .btn-outline {
        padding: 0.35rem 0.8rem;
        font-size: 0.72rem;
    }
}

/* Image wrapper with fallback (used in menu page) */
.menu-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    background: #fdf5e6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.menu-img-wrapper .img-fallback {
    display: none;
    font-size: 3.5rem;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf2e9, #f5d6b8);
    border-radius: 14px;
}
.menu-img-wrapper img.broken {
    display: none;
}
.menu-img-wrapper img.broken + .img-fallback {
    display: flex;
}

/* ── RESPONSIVE ADJUSTMENTS ── */
@media(max-width:600px) {
    .nav-logo { font-size: 1rem; }
    .hero h1 { font-size: 2.4rem; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .highlights-grid { gap: 1.2rem; }
    .highlight-card { max-width: 200px; padding: 1.5rem 1rem; }
    .map-container iframe { height: 260px; }
    .back-to-top { bottom: 20px; right: 16px; width: 38px; height: 38px; font-size: 1rem; }
    .sweets-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .sweet-img { height: 140px; }
    .sweet-info { padding: 0.8rem; }
    .sweet-name { font-size: 0.9rem; }
    .sweet-desc { font-size: 0.75rem; }
}
@media(max-width:430px) {
    .highlight-card { max-width: 160px; }
    .highlight-img { width: 70px; height: 70px; }
    .sweets-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .sweet-img { height: 110px; }
    .sweet-info { padding: 0.6rem; }
    .sweet-name { font-size: 0.8rem; }
    .sweet-desc { font-size: 0.7rem; }
    .sweet-tag { font-size: 0.6rem; padding: 0.1rem 0.5rem; }
}

/* MOBILE HIGHLIGHTS – CLEAN STACKED CARDS */
@media (max-width: 600px) {
    .highlights-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.8rem !important;
        padding: 0 0.5rem !important;
    }
    .highlight-card {
        width: 100% !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        padding: 1.8rem 1.5rem 1.5rem !important;
        border-radius: 16px !important;
        box-shadow: 0 8px 28px rgba(62, 28, 10, 0.1) !important;
        background: #ffffff !important;
        text-align: center !important;
        transition: transform 0.3s ease !important;
    }
    .highlight-card:hover { transform: translateY(-4px) !important; }
    .highlight-img {
        width: 100% !important;
        height: auto !important;
        min-height: 200px !important;
        max-height: 300px !important;
        object-fit: cover !important;
        border-radius: 12px 12px 0 0 !important;
        display: block !important;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }
    .highlight-badge {
        position: absolute !important;
        top: -10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: var(--fresh-green) !important;
        color: #fff !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        padding: 0.3rem 1.2rem !important;
        border-radius: 30px !important;
        white-space: nowrap !important;
        box-shadow: 0 4px 14px rgba(26, 138, 63, 0.35) !important;
        letter-spacing: 0.04em !important;
        z-index: 2 !important;
    }
    .highlight-name {
        font-family: 'Noto Serif', serif !important;
        font-size: 1.3rem !important;
        font-weight: 700 !important;
        color: var(--brown) !important;
        margin: 0.8rem 0 0.3rem !important;
        padding: 0 0.5rem !important;
    }
    .highlight-desc {
        font-size: 0.95rem !important;
        color: var(--muted) !important;
        line-height: 1.6 !important;
        padding: 0 0.5rem !important;
        margin-bottom: 0.6rem !important;
    }
    .highlight-price {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: var(--saffron) !important;
        padding: 0.3rem 1rem !important;
        background: rgba(232, 119, 34, 0.08) !important;
        border-radius: 30px !important;
        display: inline-block !important;
    }
    .highlight-card { position: relative !important; overflow: visible !important; }
    .daily-highlights .section-title { font-size: 1.8rem !important; }
    .daily-highlights .section-body { font-size: 1rem !important; padding: 0 1rem !important; }
}
@media (max-width: 400px) {
    .highlight-card { padding: 1.2rem 1rem 1.2rem !important; }
    .highlight-img { min-height: 160px !important; max-height: 240px !important; }
    .highlight-name { font-size: 1.1rem !important; }
    .highlight-desc { font-size: 0.85rem !important; }
}
