@font-face {
    font-family: 'Brittany Signature';
    src: url('BrittanySignatureScript.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f8e8cf;
    --bg-alt: #fffaf2;
    --bg-warm: #f0e6d3;
    --sage: #8ea58c;
    --sage-dark: #6e866c;
    --sage-deep: #475d45;
    --text: #1a1a1a;
    --text-muted: #6b6560;
    --border-light: #e0d8cf;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-script: 'Dancing Script', cursive;
    --font-sans: 'DM Sans', 'Helvetica Neue', sans-serif;
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --speed: 0.5s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
}

/* SECTION HEADING CURSIVE */
.section-heading-cursive {
    font-family: var(--font-script);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--sage-dark);
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-align: center;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.5s ease;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-filled {
    background: var(--sage);
    color: var(--white);
}

.btn-filled:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--text);
    color: var(--white);
}

.btn-small {
    padding: 0.65rem 1.4rem;
    font-size: 0.78rem;
    border-radius: 50px;
    background: var(--sage);
    color: var(--white);
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s;
}

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

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem clamp(1.5rem, 5vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 900;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(248, 232, 207, 0.95);
    backdrop-filter: blur(14px);
    padding: 0.8rem clamp(1.5rem, 5vw, 3rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-logo-link {
    text-decoration: none;
    display: inline-block;
}

.header-logo-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.header-logo-link:hover .header-logo-img {
    transform: scale(1.06);
}

/* HAMBURGER */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* NAV PANEL (30% slide-in from right) */
.nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    height: 100vh;
    background: rgba(71, 93, 69, 0.97);
    backdrop-filter: blur(14px);
    z-index: 998;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 4.5rem 2.5rem 3rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.6s var(--ease);
}

.nav-panel.open {
    transform: translateX(0);
}

/* CLOSE BUTTON FOR NAV SCREEN */
.nav-panel-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: 0.3s;
}

.nav-panel-close:hover {
    color: var(--white);
    transform: scale(1.15) rotate(90deg);
}

.nav-panel-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    z-index: 2;
    text-align: left;
    width: 100%;
    margin-top: 0.5rem;
}

.nav-panel-link {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: 0.3s;
    text-decoration: none;
    line-height: 1.2;
}

.nav-panel-link:hover {
    color: var(--bg);
    transform: translateX(6px);
}

/* Nav Screen Background Image — VERY BIG */
.nav-panel-decor {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    max-width: 360px;
    opacity: 0.28;
    pointer-events: none;
    z-index: 1;
}

.nav-panel-decor img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Nav Panel CTA Buttons */
.nav-panel-ctas {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: calc(100% - 3.5rem);
    max-width: 310px;
    z-index: 2;
}

.nav-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

/* Zomato Red Button */
.nav-cta-zomato {
    background: #e23744;
    color: #ffffff;
    border: none;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
}

.nav-cta-zomato span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.nav-cta-zomato:hover {
    background: #d02533;
}

.nav-cta-zomato-logo {
    height: 17px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    transform: translateY(-2px);
}

/* Swiggy Orange Button with logo placed immediately after text end */
.nav-cta-swiggy {
    background: #fc8019;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    border: none;
}

.nav-cta-swiggy:hover {
    background: #e5700e;
}

.nav-cta-swiggy-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    margin-left: 0;
    background: #ffffff;
    padding: 2px 5px;
    border-radius: 4px;
    display: inline-block;
}

/* WhatsApp Button */
.nav-cta-whatsapp {
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
}

.nav-cta-whatsapp:hover {
    background: #ffffff;
    color: var(--sage-deep);
    border-color: #ffffff;
}

.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
    padding: 8rem 0 5rem;
}

.hero-paint {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.hero-paint-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 194, 171, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -10%;
}

.hero-paint-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 230, 211, 0.5) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
}

.hero-paint-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(142, 165, 140, 0.15) 0%, transparent 70%);
    top: 40%;
    left: 30%;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2.5rem, 4vw, 5rem);
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 680px;
}

.hero-title {
    font-family: 'Brittany Signature', var(--font-script), cursive;
    font-size: clamp(3.2rem, 7.5vw, 6.8rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--text);
    white-space: nowrap;
}

/* Tagline AND CTA Buttons on ONE SINGLE LINE */
.hero-tagline-cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0.8rem 0 1.8rem;
}

.hero-tagline {
    font-family: var(--font-script);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    color: var(--sage-dark);
    margin-bottom: 0;
    white-space: nowrap;
}

.hero-ctas {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: nowrap;
}

.hero-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    line-height: 1.6;
}

.hero-visual {
    flex: 0 0 clamp(320px, 42vw, 540px);
    position: relative;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    display: block;
}

/* Small Floating hero image.png with pop-up animation after 1s */
.hero-floating-img {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: clamp(90px, 12vw, 110px);
    height: auto;
    z-index: 5;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
    transform: scale(0);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.hero-floating-img.popped-up {
    transform: scale(1);
    opacity: 1;
}

.hero-floating-img.floating {
    animation: floatHeroImg 4s ease-in-out infinite;
}

@keyframes floatHeroImg {

    0%,
    100% {
        transform: scale(1) translateY(0) rotate(0deg);
    }

    50% {
        transform: scale(1) translateY(-10px) rotate(2deg);
    }
}

/* SECTION WAVE DIVIDERS */
.section-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.section-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* PAINT STROKE BACKGROUND ELEMENTS */
.paint-stroke {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* About */
.ps-1 {
    width: 120%;
    height: 70px;
    top: 12%;
    left: -10%;
    background: linear-gradient(90deg, rgba(240, 230, 211, 0.55), transparent);
    transform: rotate(-2deg);
    filter: blur(18px);
}

.ps-2 {
    width: 80%;
    height: 55px;
    top: 48%;
    right: -5%;
    background: linear-gradient(90deg, transparent, rgba(212, 194, 171, 0.35));
    transform: rotate(1.5deg);
    filter: blur(14px);
}

.ps-3 {
    width: 130%;
    height: 80px;
    bottom: 25%;
    left: -15%;
    background: linear-gradient(90deg, rgba(248, 232, 207, 0.45), rgba(240, 230, 211, 0.25), transparent);
    transform: rotate(-1deg);
    filter: blur(22px);
}

.ps-4 {
    width: 60%;
    height: 50px;
    top: 75%;
    left: 20%;
    background: linear-gradient(90deg, transparent, rgba(142, 165, 140, 0.08), transparent);
    transform: rotate(0.5deg);
    filter: blur(16px);
}

/* MARQUEE TICKER */
.marquee-band {
    width: 100%;
    background: var(--sage);
    color: var(--white);
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative;
}

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

.marquee-track span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    flex-shrink: 0;
}

@keyframes marqueeSlide {
    0% {
        transform: translateX(0);
    }

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

/* ABOUT SECTION — Cake Slide-in from right end, Pop-up Treffles, Scroll Parallax */
.about {
    background: var(--bg-alt);
    padding: clamp(5rem, 10vw, 9rem) 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
}

.about-content {
    flex: 1;
    text-align: left;
}

.about .section-heading-cursive {
    text-align: left;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.about-body p {
    margin-bottom: 1.5rem;
}

.about-body em {
    color: var(--text);
    font-style: italic;
}

.about-closer {
    font-family: var(--font-script);
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    color: var(--sage-dark);
    margin-top: 1.5rem;
    line-height: 1.4;
    white-space: nowrap;
}

/* Very Big Cake Image Container with Entrance Slide-in (No Opacity Fade) */
.about-decor {
    flex: 0 0 clamp(360px, 40vw, 500px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100vw);
    /* Off-screen right end start */
    opacity: 1;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-decor.slid-in {
    transform: translateX(0);
}

/* Decor Inner MUST wrap EXACTLY around the cake image so treffles attach directly to the cake edges */
.about-decor-inner {
    position: relative;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
}

.about-cake-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.14));
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

/* TREFFLE FLOATING BALLS — Attached directly to cake slice edges as in reference screenshot */
.treffle-float {
    position: absolute;
    pointer-events: none;
    z-index: 4;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.treffle-float.popped-up {
    transform: scale(1);
    opacity: 1;
}

.treffle-float.floating-left {
    animation: floatTreffleLeft 3.5s ease-in-out infinite;
}

.treffle-float.floating-right {
    animation: floatTreffleRight 3.2s ease-in-out infinite 0.4s;
}

.treffle-float img {
    width: clamp(52px, 6vw, 68px);
    height: auto;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Left treffle: Attached directly to the bottom-left corner tip/base of the cake slice */
.treffle-float-left {
    left: 108px;
    bottom: -70px;
}

/* Right treffle: Attached directly to the right fudge layer edge of the cake slice */
.treffle-float-right {
    right: 107px;
    top: 60%;
}

@keyframes floatTreffleLeft {

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

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

@keyframes floatTreffleRight {

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

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

/* MENU/PRODUCTS */
.menu-section {
    background: var(--bg);
    padding: clamp(5rem, 10vw, 9rem) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.menu-paint-1 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 194, 171, 0.3) 0%, transparent 70%);
    top: 10%;
    right: -10%;
}

.featured-product {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    text-align: left;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.featured-img-wrap {
    flex: 0 0 40%;
    cursor: zoom-in;
}

.featured-img-wrap img {
    border-radius: 12px;
}

.featured-info {
    flex: 1;
}

.featured-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--sage);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.featured-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.featured-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.featured-price .price-now {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sage-dark);
}

.featured-price .price-was {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.featured-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.product-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: zoom-in;
}

.product-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--sage);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price .price-now {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sage-dark);
}

.product-price .price-was {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* REVIEWS */
.reviews {
    background: var(--bg-warm);
    padding: clamp(5rem, 10vw, 9rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.review-slider {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    z-index: 1;
}

.review-slides {
    position: relative;
}

.review-slide {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.review-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.review-stars {
    color: var(--sage-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.review-text {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
}

.review-author {
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.review-arrow {
    background: transparent;
    border: 1px solid var(--border-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: 0.3s;
}

.review-arrow:hover {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

.review-dots {
    display: flex;
    gap: 8px;
}

.r-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: 0.3s;
}

.r-dot.active {
    background: var(--sage);
    transform: scale(1.3);
}

/* FAQ */
.faq {
    background: var(--bg-alt);
    padding: clamp(5rem, 10vw, 9rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(142, 165, 140, 0.1);
    color: var(--sage);
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    background: var(--sage);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-a p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

/* CONTACT */
.contact {
    background: var(--bg);
    padding: clamp(5rem, 10vw, 9rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-bg-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.social-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.social-icon-img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.85;
}

.social-row:hover .social-icon-img {
    opacity: 1;
}

.social-row div {
    display: flex;
    flex-direction: column;
}

.social-row strong {
    font-size: 1rem;
    font-weight: 600;
}

.social-row span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hours-block {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.hours-block h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.hours-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.map-address {
    color: #000000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* FOOTER (Centered, Cursive Brand Title) */
.site-footer {
    background: var(--sage-deep);
    color: var(--white);
    padding: 5rem 0 2.5rem;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-brand-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.footer-logo-big {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
}

.footer-logo-big:hover {
    transform: scale(1.05);
}

.footer-title {
    font-family: var(--font-script);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
}

.footer-tagline {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--bg);
}

.footer-sub {
    font-size: 0.9rem;
    opacity: 0.75;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.footer-links-row {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0.8rem 0;
}

.footer-links-row a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: var(--font-serif);
    transition: 0.3s;
}

.footer-links-row a:hover {
    color: var(--bg);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-love {
    font-family: var(--font-script);
    font-size: 1.1rem;
    opacity: 0.7;
    margin-top: 0.4rem;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    cursor: zoom-out;
}

.lightbox-body {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 1;
}

.lightbox-body img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-cap {
    color: var(--white);
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.lightbox-x {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-tagline-cta-row {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem auto;
    }

    .hero-visual {
        margin-top: 2rem;
        flex: 0 0 auto;
        width: 100%;
        max-width: 480px;
    }

    .hero-floating-img {
        right: -15px;
        bottom: -20px;
        width: 90px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

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

    .about .section-heading-cursive {
        text-align: center;
    }

    .about-closer {
        white-space: normal;
    }

    .about-decor {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin-top: 2rem;
    }

    .featured-product {
        flex-direction: column;
        text-align: center;
    }

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

    .nav-panel {
        width: 45%;
        padding: 4rem 2rem 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 7rem 0 4rem;
    }

    .hero-title {
        font-size: clamp(2.3rem, 8.5vw, 4.2rem);
        white-space: nowrap;
    }

    .hero-tagline-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-tagline {
        font-size: 2.2rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 290px;
        gap: 0.75rem;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .hero-inner {
        gap: 0.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 0.5rem auto;
    }

    .hero-visual {
        margin-top: 0.5rem;
    }

    .hero-floating-img {
        width: 75px;
        right: -10px;
        bottom: -15px;
    }

    .nav-panel {
        width: 85%;
        max-width: 360px;
        padding: 4rem 2rem 3rem 2rem;
    }

    /* STORY SECTION (Cake & Treffles Static on Mobile) */
    .about-decor {
        flex: 0 0 auto;
        width: 100%;
        max-width: 340px;
        margin: 0.5rem auto 0 auto !important;
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }

    .about-closer {
        margin-top: 0.8rem;
    }

    .about-body p:last-child {
        margin-bottom: 0.5rem;
    }

    .about-cake-img {
        max-width: 100%;
        transform: none !important;
        transition: none !important;
    }

    .treffle-float {
        transform: scale(1) !important;
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
    }

    .treffle-float img {
        width: 48px;
        transform: none !important;
        transition: none !important;
    }

    .treffle-float-left {
        left: 35px;
        bottom: -30px;
    }

    .treffle-float-right {
        right: 35px;
        top: 55%;
    }

    #cakeImg, #leftTreffle, #rightTreffle {
        transform: none !important;
    }

    /* PRODUCT SECTION (Grandma's Fajita Roll Top Block & 2x3 Product Grid) */
    .featured-product {
        margin: 2rem 0;
        padding: 1.5rem 1.2rem;
        gap: 1.5rem;
    }

    .featured-img-wrap {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .featured-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .featured-name {
        font-size: 1.6rem;
    }

    .featured-price {
        justify-content: center;
    }

    .featured-desc {
        font-size: 0.9rem;
    }

    /* 2 Columns Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem 0.8rem;
    }

    .product-card {
        padding: 0.85rem;
        border-radius: 14px;
    }

    .product-img {
        margin-bottom: 0.6rem;
        border-radius: 10px;
    }

    .product-name {
        font-size: 0.95rem;
        line-height: 1.25;
        margin-bottom: 0.4rem;
    }

    .product-desc {
        font-size: 0.78rem;
        line-height: 1.35;
        margin-bottom: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-top: auto;
        width: 100%;
    }

    .product-price .price-now {
        font-size: 1rem;
    }

    .product-price .price-was {
        font-size: 0.8rem;
    }

    .product-bottom .btn-small {
        width: 100%;
        padding: 0.5rem 0.6rem;
        font-size: 0.7rem;
        text-align: center;
    }

    .product-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
        top: 6px;
        right: 6px;
    }

    .review-text {
        font-size: 1rem;
    }

    .section-wave svg {
        height: 50px;
    }

    .footer-logo-big {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0.6rem;
    }

    .product-card {
        padding: 0.7rem;
    }

    .product-name {
        font-size: 0.88rem;
    }

    .product-desc {
        font-size: 0.74rem;
        -webkit-line-clamp: 2;
    }

    .hero-title {
        font-size: clamp(1.9rem, 7.8vw, 3rem);
    }

    .hero-floating-img {
        width: 65px;
    }

    .header-logo-text {
        font-size: 1.5rem;
    }

    .about-decor {
        max-width: 290px;
    }

    .treffle-float img {
        width: 40px;
    }

    .treffle-float-left {
        left: 25px;
        bottom: -25px;
    }

    .treffle-float-right {
        right: 25px;
        top: 55%;
    }
}