/* GLOBAL DESIGN SYSTEM */
:root {
    --bg-warm-cream: #FAF3E8;
    --dark: #3B1F0E;
    --mid-brown: #6B3A20;
    --gold-accent: #C8943A;
    --gold-light: #E8B96A;
    --saffron: #F4A825;
    --white-warm: #FDF8F0;
    --blush: #E8C4A0;
    --nav-bg: rgba(250, 243, 232, 0.85);

    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;

    --shadow-soft: 0 10px 30px rgba(59, 31, 14, 0.08);
    --shadow-hover: 0 15px 40px rgba(59, 31, 14, 0.15);
    --transition: 0.3s ease;

    --padding-desktop: 4rem;
    --padding-mobile: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-warm-cream);
    color: var(--dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: none;
    /* Hide default for premium feel */
}

/* PREMIUM UI ELEMENTS */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-accent));
    z-index: 10000;
    transition: width 0.1s ease-out;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--gold-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s, opacity 0.2s;
    opacity: 0.6;
}

/* Hover States for Cursor */
.custom-cursor.hovering {
    width: 0;
    height: 0;
    background-color: transparent;
}

.cursor-trail.hovering {
    width: 50px;
    height: 50px;
    background-color: rgba(200, 148, 58, 0.1);
    border-color: var(--gold-accent);
    backdrop-filter: blur(2px);
    opacity: 1;
}

/* Ensure links and buttons have no cursor too */
a,
button,
.btn {
    cursor: none;
}


.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 i,
h2 i,
h3 i {
    font-style: italic;
    color: var(--gold-accent);
}

.subtitle,
.quote {
    font-family: var(--font-subheading);
    font-style: italic;
    color: var(--mid-brown);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--padding-desktop);
}

.section-padding {
    padding: 6rem 0;
}

.center {
    text-align: center;
}

.dark-section {
    background-color: var(--dark);
    color: var(--bg-warm-cream);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.1rem;
}

.btn-pill {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--gold-accent);
    color: var(--dark);
    box-shadow: var(--shadow-soft);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--dark);
    border: 1px solid var(--mid-brown);
}

.btn-secondary:hover {
    background-color: var(--mid-brown);
    color: var(--bg-warm-cream);
}

.btn-secondary-light {
    background-color: transparent;
    color: var(--bg-warm-cream);
    border: 1px solid var(--gold-accent);
}

.btn-secondary-light:hover {
    background-color: var(--gold-accent);
    color: var(--dark);
}

.nav-order-btn {
    background-color: var(--dark);
    color: var(--bg-warm-cream);
    margin-right: 1.5rem;
}

.nav-order-btn:hover {
    background-color: var(--gold-accent);
    color: var(--dark);
}

/* NavBar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(168, 98, 42, 0.15);
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(59, 31, 14, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 85px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    margin-left: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--nav-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1001;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold-accent);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.drawer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.close-btn {
    background: none;
    border: none;
    color: var(--dark);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.drawer-content-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    width: 100%;
}

.drawer-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: calc(0.1s * var(--i));
}

.mobile-drawer.open .drawer-links li {
    opacity: 1;
    transform: translateY(0);
}

.drawer-links a {
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-decoration: none;
    transition: color var(--transition), padding-left var(--transition);
    display: block;
}

.drawer-links a:hover,
.drawer-links a:active {
    color: var(--gold-accent);
    padding-left: 1rem;
}

.drawer-footer {
    border-top: 1px solid rgba(59, 31, 14, 0.15);
    padding-top: 2rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.6s, transform 0.5s ease 0.6s;
}

.mobile-drawer.open .drawer-footer {
    opacity: 1;
    transform: translateY(0);
}

.drawer-footer p {
    color: rgba(59, 31, 14, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.drawer-whatsapp {
    color: #25D366;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    text-decoration: none;
    display: inline-block;
    transition: transform var(--transition);
}

.drawer-whatsapp:hover {
    transform: translateX(5px);
}

/* Hero */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

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

.eyebrow {
    font-variant: small-caps;
    color: var(--gold-accent);
    letter-spacing: 0.3em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.eyebrow-line {
    width: 2rem;
    height: 2px;
    background-color: var(--gold-accent);
}

.hero h1 {
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.3s;
}

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

.visual-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinning-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(200, 148, 58, 0.4);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.solid-circle {
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: linear-gradient(var(--white-warm), var(--white-warm)) padding-box,
        linear-gradient(45deg, var(--gold-accent), var(--gold-light)) border-box;
    border: 6px solid transparent;
}

.glow-backdrop {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    opacity: 0.12;
    filter: blur(40px);
}

.hero-kulfi-img {
    position: absolute;
    width: 350px;
    height: auto;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.badge {
    position: absolute;
    background: var(--white-warm);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 3;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background-color: var(--gold-accent);
    border-radius: 50%;
}

.badge-tl {
    top: 10%;
    left: -5%;
    animation: float 5s ease-in-out infinite 0.5s;
}

.badge-tr {
    top: 20%;
    right: -5%;
    animation: float 6s ease-in-out infinite 1s;
}

.badge-bl {
    bottom: 20%;
    left: -10%;
    animation: float 4.5s ease-in-out infinite 1.5s;
}

.badge-br {
    bottom: 10%;
    right: 0;
    animation: float 5.5s ease-in-out infinite 2s;
}

/* Marquee */
.marquee-strip {
    background-color: var(--dark);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(200, 148, 58, 0.2);
    border-bottom: 1px solid rgba(200, 148, 58, 0.2);
}

.marquee-content {
    display: inline-flex;
    animation: marquee 25s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-right: 1.5rem;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-accent);
    border-radius: 50%;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Our Story */
.section-label {
    display: block;
    font-variant: small-caps;
    color: var(--gold-accent);
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.our-story h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
}

.story-para {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: var(--mid-brown);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    border-left: 3px solid var(--gold-accent);
    padding-left: 1.5rem;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-desc {
    color: var(--mid-brown);
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--white-warm);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(200, 148, 58, 0.3);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.card-top {
    margin-top: 0;
}

.card-bottom {
    margin-top: 0;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--mid-brown);
}

/* Video Section */
.video-section {
    background-color: var(--white-warm);
    position: relative;
}

.video-section .section-label {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    margin-bottom: 1.2rem;
}

.video-section h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 0.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(200, 148, 58, 0.3);
}

.kulfi-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 31, 14, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-btn-mock {
    width: 80px;
    height: 80px;
    background-color: rgba(253, 248, 240, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-accent);
    font-size: 2rem;
    padding-left: 5px;
    /* Visual center for triangle */
    box-shadow: 0 0 0 10px rgba(253, 248, 240, 0.3);
    backdrop-filter: blur(5px);
}

/* Products */
.products h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Base styles for old card structure, layout only.
   Main glowing card styles are lower in the file */
.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 148, 58, 0.6);
    box-shadow: 0 15px 40px rgba(200, 148, 58, 0.1);
}

.product-card:hover .card-gradient {
    opacity: 1;
}

.product-card .product-icon,
.product-card h3,
.product-card p,
.product-card .product-price {
    position: relative;
    z-index: 1;
}

.badge-pill {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.gold-badge {
    background-color: var(--gold-accent);
    color: var(--dark);
}

.special-badge {
    background-color: var(--white-warm);
    color: var(--dark);
}

.product-image-container {
    height: 160px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 15px rgba(59, 31, 14, 0.2));
    transition: transform var(--transition);
}

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

.waffle-img {
    transform: scale(1.2);
}

.product-card:hover .waffle-img {
    transform: scale(1.3) rotate(2deg);
}

.slice-img {
    transform: scale(1.2);
}

.product-card:hover .slice-img {
    transform: scale(1.3) rotate(-2deg);
}

.falooda-img {
    transform: scale(1.1);
}

.product-card:hover .falooda-img {
    transform: scale(1.2) rotate(2deg);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.product-card p {
    font-size: 0.95rem;
    color: var(--mid-brown);
    margin-bottom: 2rem;
    min-height: 80px;
}

.product-price {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gold-accent);
    border-top: 1px solid rgba(200, 148, 58, 0.3);
    padding-top: 1rem;
    width: 100%;
}

/* Menu */
.menu h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.italic-subtitle {
    margin-bottom: 3rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: transparent;
    border: 1px solid var(--mid-brown);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark);
    font-family: var(--font-body);
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--dark);
    color: var(--bg-warm-cream);
}

.tab-panel {
    display: none;
    animation: fadeUpTab 0.4s ease forwards;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeUpTab {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.menu-list.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 6rem;
    row-gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    align-items: center;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
    position: relative;
    /* important for absolute positioning of hover image */
}

.menu-item:hover {
    transform: translateX(4px);
    border-color: rgba(200, 148, 58, 0.3);
    background-color: rgba(253, 248, 240, 0.5);
    z-index: 10;
    /* Bring hovered item to front */
}

/* Professional Hover Reveal Image */
.hover-reveal-img {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Position it nicely over the menu item or to the side */
    transform: translate(-50%, -50%) translateY(20px) scale(0.9);
    width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* So it doesn't interrupt standard hover behavior on item */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--white-warm);
}

.menu-item:hover .hover-reveal-img,
.special-card:hover .hover-reveal-img,
.menu-item.touch-hover .hover-reveal-img,
.special-card.touch-hover .hover-reveal-img {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) translateY(0) scale(1);
    z-index: 1000;
}

.menu-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-sf {
    background-color: #2e7d32;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: var(--font-body);
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.menu-dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(107, 58, 32, 0.3);
    margin: 0 1rem;
    position: relative;
    top: -4px;
}

.menu-price {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gold-accent);
}

/* Specials */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Card Glow Effect - Follows mouse position set via JS */
.product-card {
    background-color: var(--white-warm);
    color: var(--dark);
    border: 1px solid rgba(200, 148, 58, 0.3);
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    /* Set default variables for mouse position */
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.product-card p {
    color: var(--mid-brown);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(200, 148, 58, 0.15), transparent 40%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-5px);
}

.special-card {
    background-color: var(--dark);
    color: var(--bg-warm-cream);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    --mouse-x: 50%;
    --mouse-y: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 260px;
}

.special-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.special-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(200, 148, 58, 0.15) 0%, transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.special-card:hover .special-glow {
    opacity: 0.8;
}


.special-card h3 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--gold-light);
    position: relative;
    z-index: 1;
}

.special-price {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white-warm);
}

/* Testimonials */
.blush-gradient {
    background: linear-gradient(135deg, var(--bg-warm-cream), var(--blush));
}

.testimonials h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white-warm);
    padding: 3rem 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(200, 148, 58, 0.3);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-card .quote {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.author {
    font-weight: 700;
    color: var(--mid-brown);
    border-top: 1px solid rgba(107, 58, 32, 0.1);
    padding-top: 1.5rem;
}

/* Franchise Form */
.franchise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.franchise-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
}

.benefits-list {
    margin-bottom: 2.5rem;
}

.benefits-list li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.franchise .tagline {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold-light);
}

.franchise-form form {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(200, 148, 58, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background-color: var(--bg-warm-cream);
    border: 1px solid var(--mid-brown);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 148, 58, 0.3);
    border-color: var(--gold-accent);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--mid-brown);
    pointer-events: none;
}

select {
    appearance: none;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background-color: var(--gold-accent);
    color: var(--dark);
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--mid-brown);
    color: var(--bg-warm-cream);
}

.form-note {
    font-size: 0.9rem;
    color: rgba(250, 243, 232, 0.6);
    margin-top: 1.5rem;
    text-align: center;
}

/* WA Float */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.wa-tooltip {
    position: absolute;
    left: -140px;
    background-color: var(--dark);
    color: var(--bg-warm-cream);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    white-space: nowrap;
}

.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(-10px);
}

/* ANIMATIONS (Safe CSS setup) */
/* The .js-hidden class is added by JS so elements don't get stuck hidden if JS fails */
.scroll-reveal.js-hidden {
    opacity: 0;
    transform: translateY(40px);
}

.scroll-reveal {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Footer */
.footer {
    background-color: var(--white-warm);
    padding: 5rem 0 0 0;
    border-top: 1px solid rgba(200, 148, 58, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--gold-light), var(--gold-accent));
}

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

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold-accent);
}

.brand-col .footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.footer-desc {
    color: var(--mid-brown);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col ul li a,
.footer-col ul li span {
    color: var(--mid-brown);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold-accent);
    transform: translateX(5px);
}

.wa-text-link {
    color: #25D366 !important;
    font-weight: 700;
}

.footer-bottom {
    background-color: var(--dark);
    color: var(--bg-warm-cream);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 var(--padding-mobile);
    }

    .hero-grid,
    .story-grid,
    .franchise-grid {
        gap: 3rem;
    }

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

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

@media screen and (max-width: 768px) {

    /* Font Size Optimizations for Mobile */
    html {
        font-size: 14px;
        /* Scaled down base font */
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .menu-name,
    .special-card h3 {
        font-size: 1.2rem;
    }

    .nav-links,
    .nav-order-btn {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-right: 1.5rem;
        /* Shift slightly left */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .hero-visual {
        padding: 2rem 0;
    }

    .visual-container {
        width: 280px;
        height: 280px;
    }

    .badge {
        display: none;
    }

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

    .story-text {
        text-align: center;
    }

    .stats-grid {
        text-align: left;
    }

    .card-top,
    .card-bottom {
        margin-top: 0;
    }

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

    .menu-list.two-cols {
        grid-template-columns: 1fr;
    }

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

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

    .menu-name,
    .menu-item {
        flex-wrap: wrap;
        /* allow tags to drop if text is too long */
    }

    .tab-content {
        padding-top: 2rem;
    }

    /* Optimizing the popup images for mobile screens */
    .hover-reveal-img {
        width: 160px;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .menu-item.touch-hover .hover-reveal-img,
    .special-card.touch-hover .hover-reveal-img {
        pointer-events: none !important;
        z-index: 9999;
    }

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

    .form-group.two-cols {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: start;
        text-align: center;
    }

    .footer-col.brand-col {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-col ul {
        align-items: center;
        justify-content: center;
    }

    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1rem;
    }
}