/* ============================================================
   NOBLE CRUST — Premium Artisan Bakery Website
   Earthy palette: cream, warm browns, chocolate
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
    /* Enhanced Color Palette */
    --cream: #FDFBF7;
    --cream-dark: #F5EFDF;
    --warm-beige: #E6D5B8;
    --caramel: #8C5E3C;
    --caramel-dark: #6B4428;
    --chocolate: #2D1B0E;
    --choc-mid: #4A2D1A;
    --brown: #5C3D2E;
    --text-dark: #1A0F0A;
    --text-mid: #4A3B34;
    --text-light: #8A7066;
    --white: #FFFFFF;
    --accent-gold: #D4AF37;

    /* Modern Glassmorphism & Effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: 16px;

    /* Typography */
    --ff-serif: 'Playfair Display', Georgia, serif;
    --ff-sans: 'Inter', 'Poppins', system-ui, sans-serif;

    /* Transitions & Radii */
    --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-sm: 0 4px 20px rgba(26, 15, 10, 0.05);
    --shadow-md: 0 12px 40px rgba(26, 15, 10, 0.12);
    --shadow-lg: 0 24px 80px rgba(26, 15, 10, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-sans);
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    /* Security: Prevent text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Security: Prevent image dragging */
    -webkit-user-drag: none;
}

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

button {
    cursor: pointer;
    font-family: var(--ff-sans);
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3 {
    font-family: var(--ff-serif);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

em {
    font-style: italic;
    color: var(--caramel);
}

p {
    font-size: 1rem;
    color: var(--text-mid);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 14px 32px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--caramel);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200, 149, 90, 0.4);
}

.btn-primary:hover {
    background: var(--caramel-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 149, 90, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp i {
    font-size: 1.1rem;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: 0.6s;
}

.btn-whatsapp:hover::after {
    left: 100%;
}

.btn-whatsapp:hover {
    background: #1fbc58;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-small {
    font-size: 0.82rem;
    font-weight: 500;
    font-family: var(--ff-sans);
    letter-spacing: 0.04em;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--cream);
    color: var(--caramel-dark);
    border: 1.5px solid var(--caramel);
    transition: var(--transition);
}

.btn-small:hover {
    background: var(--caramel);
    color: var(--white);
    transform: translateY(-1px);
}

/* ============================================================
   SECTION GLOBALS
   ============================================================ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-eyebrow {
    font-family: var(--ff-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: 12px;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(26, 15, 10, 0.08);
    border-bottom: 1px solid rgba(200, 149, 90, 0.2);
}

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.navbar.scrolled .nav-logo {
    color: var(--text-dark);
}

.logo-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: #FDFBF7;
    /* Visha: Match the logo background */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--warm-beige);
    /* Visha: Professional circular border */
    flex-shrink: 0;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-mid);
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
    text-transform: uppercase;
}

.navbar.scrolled .nav-link {
    color: var(--text-mid);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--caramel);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--caramel);
}

.navbar.scrolled .nav-link:hover {
    color: var(--caramel);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown .nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    vertical-align: middle;
    min-width: 200px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-content a {
    display: block;
    padding: 10px 24px;
    color: var(--text-dark);
    font-family: var(--ff-sans);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.nav-dropdown-content a:hover {
    background: rgba(200, 149, 90, 0.08);
    color: var(--caramel);
}

@media (max-width: 760px) {
    .nav-dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-dropdown .nav-link i {
        display: none;
    }

    .nav-dropdown-content {
        position: static;
        box-shadow: none;
        background: transparent !important;
        backdrop-filter: none !important;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: flex;
        flex-direction: column;
        margin-top: 12px;
        padding-left: 16px;
        border-left: 2px solid var(--caramel-light);
    }

    .nav-dropdown-content a {
        padding: 8px 12px;
        color: var(--text-mid);
        font-size: 1.05rem;
    }
}

.nav-order-btn {
    font-family: var(--ff-sans);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--caramel);
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(140, 94, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-order-btn:hover {
    background: var(--caramel-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(140, 94, 60, 0.4);
}

.nav-cart-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--text-dark);
    border: 1.5px solid rgba(200, 149, 90, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 8px 18px rgba(26, 15, 10, 0.08);
}

.nav-cart-btn:hover {
    background: var(--caramel);
    color: var(--white);
    border-color: var(--caramel);
    transform: translateY(-1px);
}

.nav-cart-btn i {
    font-size: 1rem;
}

.nav-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--caramel);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(26, 15, 10, 0.2);
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .nav-order-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-cart-btn {
        width: 38px;
        height: 38px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        color: var(--text-dark) !important;
        font-size: 1.2rem;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

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

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

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

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

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100svh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--chocolate);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    position: relative;
    z-index: 5;
    width: 100%;
}

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(30, 12, 4, 0.5) 0%,
            rgba(30, 12, 4, 0.4) 50%,
            rgba(30, 12, 4, 0.8) 100%);
}

.steam-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.steam-particle {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0;
    animation: steam rises linear infinite;
}

.steam-1 {
    width: 300px;
    height: 300px;
    left: 20%;
    animation-duration: 9s;
    animation-delay: 0s;
}

.steam-2 {
    width: 450px;
    height: 450px;
    left: 50%;
    animation-duration: 12s;
    animation-delay: 3s;
}

.steam-3 {
    width: 350px;
    height: 350px;
    left: 70%;
    animation-duration: 10s;
    animation-delay: 5s;
}

@keyframes rises {
    0% {
        bottom: -150px;
        opacity: 0;
        transform: scale(0.8) translateX(0);
    }
    30% {
        opacity: 0.4;
    }
    70% {
        opacity: 0.2;
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: scale(1.5) translateX(80px);
    }
}

/* Collage styles removed for cleaner bakery look */

/* Animations */
.reveal-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition);
}

.reveal-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Collage reveal animations removed */

.text-italic {
    font-family: var(--ff-serif);
    font-style: italic;
    color: var(--warm-beige);
}

/* Mobile adjustments for centered hero */
@media (max-width: 900px) {
    .hero-container {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-content {
        margin: 0 auto;
        padding: 0 16px;
    }

    .hero-title {
        line-height: 1.1;
        margin-bottom: 24px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 860px;
    animation: heroFadeUp 1s 0.3s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-eyebrow {
    font-family: var(--ff-sans);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--warm-beige);
    margin-bottom: 16px;
}

.hero-title {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.badge i {
    color: var(--caramel);
    font-size: 0.9rem;
}

.hero-scroll-arrow {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

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

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
    background: var(--chocolate);
    color: var(--warm-beige);
    overflow: hidden;
    padding: 14px 0;
}

.marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--ff-serif);
    font-size: 1.05rem;
    font-style: italic;
    letter-spacing: 0.04em;
}

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

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

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
    padding: 100px 0;
    background: var(--cream);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.tab-btn {
    font-family: var(--ff-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 12px 32px;
    border-radius: 50px;
    border: 1.5px solid var(--warm-beige);
    color: var(--text-mid);
    background: var(--white);
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--caramel);
    color: var(--caramel-dark);
}

.tab-btn.active {
    background: var(--caramel);
    border-color: var(--caramel);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200, 149, 90, 0.35);
}

.menu-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.menu-grid.active {
    display: grid;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    animation: cardIn 0.55s ease forwards;
}

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

.menu-card:nth-child(1) {
    animation-delay: 0.05s;
}

.menu-card:nth-child(2) {
    animation-delay: 0.15s;
}

.menu-card:nth-child(3) {
    animation-delay: 0.25s;
}

.menu-card:nth-child(4) {
    animation-delay: 0.35s;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.menu-card--wide {
    grid-column: span 2;
}

.card-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
}

.card-img-wrap img {
    transition: transform 0.55s var(--transition);
}

.menu-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--caramel);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.card-badge--new {
    background: var(--choc-mid);
}

.card-body {
    padding: 22px;
}

.card-body h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

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

.price {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--caramel-dark);
}

/* ============================================================
   OUR STORY
   ============================================================ */
.story-section {
    background: var(--cream-dark);
    padding: 100px 0;
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.story-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

.story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.story-img-wrap:hover img {
    transform: scale(1.04);
}

.story-img-badge {
    position: absolute;
    bottom: 24px;
    right: -16px;
    background: var(--caramel);
    color: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-num {
    display: block;
    font-family: var(--ff-serif);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
}

.badge-label {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    opacity: 0.9;
}

.story-text-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.story-body {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 18px;
}

.story-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-item i {
    font-size: 1.1rem;
    color: var(--caramel);
    margin-top: 4px;
    flex-shrink: 0;
}

.value-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
    padding: 100px 0;
    background: var(--cream);
}

.insta-link {
    color: var(--caramel);
    font-weight: 500;
    transition: var(--transition);
}

.insta-link:hover {
    color: var(--caramel-dark);
    text-decoration: underline;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 12px;
}

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

.gallery-item:nth-child(1) {
    grid-column: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(62, 31, 10, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

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

/* ============================================================
   ORDER SECTION
   ============================================================ */
.order-section {
    padding: 100px 0;
    background: var(--cream-dark);
}

.order-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: flex-start;
}

.order-info .section-title {
    text-align: left;
}

.order-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin: 20px 0 36px;
}

.order-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.order-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.order-detail-item i {
    font-size: 1.2rem;
    color: var(--caramel);
    margin-top: 2px;
    width: 22px;
    flex-shrink: 0;
}

.order-detail-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.order-detail-item span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Order Form */
.order-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--ff-sans);
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 1.5px solid var(--warm-beige);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    outline: none;
    transition: var(--transition);
    resize: none;
    -webkit-appearance: none;
    appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--caramel);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 149, 90, 0.12);
}

.form-success {
    display: none;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    background: rgba(200, 149, 90, 0.1);
    border: 1px solid var(--caramel);
}

.form-success.show {
    display: flex;
}

.form-success i {
    font-size: 1.4rem;
    color: var(--caramel);
}

.form-success p {
    font-size: 0.9rem;
    color: var(--choc-mid);
    margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--chocolate);
    color: rgba(255, 255, 255, 0.75);
    padding: 72px 0 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-brand .nav-logo {
    color: var(--white);
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--caramel);
    border-color: var(--caramel);
    color: var(--white);
    transform: translateY(-2px);
}

.footer h4 {
    font-family: var(--ff-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--caramel);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--caramel);
    width: 14px;
}

.footer-hours {
    font-size: 0.82rem !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px 24px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1fbc58;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7);
    }
}

.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--caramel);
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--caramel-dark);
    transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .story-grid {
        gap: 48px;
    }

    .order-grid {
        gap: 48px;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-img-col {
        max-width: 480px;
        margin: 0 auto;
    }

    .story-img-badge {
        right: 0;
    }

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

    .gallery-grid {
        grid-template-rows: repeat(3, 220px);
    }
}

@media (max-width: 760px) {

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

    .hamburger {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 70px 0 0 0;
        background: var(--cream);
        padding: 32px 24px;
        gap: 24px;
        z-index: 999;
        overflow-y: auto;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .nav-links.open .nav-link {
        color: var(--text-dark);
        font-size: 1.2rem;
    }

    .nav-links.open .nav-order-btn-mobile {
        display: inline-block;
        font-family: var(--ff-sans);
        font-size: 0.95rem;
        font-weight: 500;
        padding: 14px 32px;
        border-radius: 50px;
        background: var(--caramel);
        color: var(--white);
        text-align: center;
        margin-top: 8px;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .menu-card--wide {
        grid-column: span 1;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .hero-badges {
        gap: 16px;
    }

    .badge {
        font-size: 0.75rem;
    }

    .testimonial-card {
        padding: 0 16px;
    }

    .order-form {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .gallery-item {
        height: 220px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .btn-outline {
        border-color: rgba(255, 255, 255, 0.5);
    }
}

/* ============================================================
   SCROLL ANIMATIONS (JS-triggered)
   ============================================================ */
[data-scroll] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-scroll].in-view {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll][data-delay="100"] {
    transition-delay: 0.1s;
}

[data-scroll][data-delay="200"] {
    transition-delay: 0.2s;
}

[data-scroll][data-delay="300"] {
    transition-delay: 0.3s;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--cream-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

@media (max-width: 760px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card__quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-card__author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--caramel);
    margin-top: auto;
}

.review-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .review-form-container {
        padding: 24px 20px;
    }
    
    .review-form__title {
        font-size: 1.5rem;
    }
}

.review-form__title {
    text-align: center;
    margin-bottom: 24px;
    font-family: var(--ff-serif);
    color: var(--text-dark);
    font-size: 1.8rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(200, 149, 90, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--ff-sans);
    font-size: 0.95rem;
    background: var(--cream);
    color: var(--text-dark);
    transition: var(--transition);
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--caramel);
}

.review-form__stars {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(200, 149, 90, 0.4);
    font-size: 1.2rem;
    cursor: pointer;
}

.review-form__stars span {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-right: 8px;
    cursor: default;
}

.review-form__stars i.active {
    color: var(--accent-gold);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
    padding: 100px 0;
    background: var(--cream);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 27, 14, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

@media (max-width: 760px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-auto-rows: 250px;
    }
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
    .gallery-item {
        height: 250px;
    }
}

/* ============================================================
   BEST SELLERS — PRODUCT CARD GRID
   ============================================================ */
.best-sellers-section {
    padding: 100px 0;
    background: var(--cream);
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 900px) {
    .best-sellers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.product-card__rating {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    gap: 2px;
}

/* ============================================================
   FROM OUR KITCHEN — CATEGORY OVERVIEW
   ============================================================ */
.kitchen-section {
    padding: 100px 0;
    background: var(--chocolate);
}

.kitchen-section .section-eyebrow {
    color: rgba(200, 149, 90, 0.9);
}

.kitchen-section .section-title {
    color: var(--white);
}

.kitchen-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

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

@media (max-width: 1024px) {
    .kitchen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .kitchen-grid {
        grid-template-columns: 1fr;
    }
}

.kitchen-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.kitchen-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(200, 149, 90, 0.45);
}

.kitchen-card--accent {
    background: rgba(200, 149, 90, 0.12);
    border-color: rgba(200, 149, 90, 0.25);
}

.kitchen-card--featured {
    background: var(--caramel);
    border-color: var(--caramel-dark);
}

.kitchen-card--featured:hover {
    background: var(--caramel-dark);
    border-color: var(--caramel-dark);
}

.kitchen-card__icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1;
}

.kitchen-card__body {
    flex: 1;
}

.kitchen-card__title {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.25;
}

.kitchen-card__sub {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
    margin-bottom: 16px;
}

.kitchen-card--featured .kitchen-card__sub {
    color: rgba(255, 255, 255, 0.8);
}

.kitchen-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kitchen-card__list li {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.kitchen-card__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--caramel);
    font-size: 0.65rem;
    top: 3px;
}

.kitchen-card--featured .kitchen-card__list li {
    color: rgba(255, 255, 255, 0.8);
}

.kitchen-card--featured .kitchen-card__list li::before {
    color: rgba(255, 255, 255, 0.7);
}

.kitchen-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--caramel);
    margin-top: auto;
}

.kitchen-card--featured .kitchen-card__cta {
    color: rgba(255, 255, 255, 0.9);
}

.kitchen-card__cta i {
    font-size: 0.68rem;
    transition: transform 0.3s ease;
}

.kitchen-card:hover .kitchen-card__cta i {
    transform: translateX(5px);
}

.kitchen-order-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    margin-top: 56px;
    flex-wrap: wrap;
}

.kitchen-order-cta p {
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 1.05rem;
    margin: 0;
}

/* ============================================================
   FROM OUR KITCHEN END
   ============================================================ */

/* ============================================================
   OUR COOKIES — PRODUCT CARD GRID
   ============================================================ */
.cookies-section {
    padding: 100px 0;
    background: var(--cream-dark);
}

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

/* ============================================================
   ARTISAN BREADS — PRODUCT CARD GRID
   ============================================================ */
.breads-section {
    padding: 100px 0;
    background: var(--cream);
}

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

/* ============================================================
   ARTISAN BAGELS — PRODUCT CARD GRID
   ============================================================ */
.bagels-section {
    padding: 100px 0;
    background: var(--cream-dark);
}

.bagels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
    gap: 32px;
    justify-content: center;
}

/* ============================================================
   ARTISAN FOCACCIA — PRODUCT CARD GRID
   ============================================================ */
.focaccia-section {
    padding: 100px 0;
    background: var(--cream);
}

.focaccia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
    gap: 32px;
    justify-content: center;
}

/* ============================================================
   ARTISAN BUNS — PRODUCT CARD GRID
   ============================================================ */
.buns-section {
    padding: 100px 0;
    background: var(--cream-dark);
}

.buns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
    gap: 32px;
    justify-content: center;
}

/* Variant Price List for Focaccia */
.product-card__variants {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(59, 31, 14, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card__variant-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--chocolate);
}

.product-card__variant-name {
    font-weight: 500;
}

.product-card__variant-price {
    font-weight: 700;
    color: var(--caramel);
}

/* ---- Individual Product Card ---- */
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

/* Image */
.product-card__img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #FFFFFF;
    /* Match clean white background of product photos */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /* Slight padding inside wrapper */
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    background: linear-gradient(180deg, rgba(26, 15, 10, 0.05) 0%, rgba(26, 15, 10, 0.65) 100%);
    opacity: 0;
    transform: translateY(6px);
    transition: var(--transition);
    gap: 10px;
}

.product-card__overlay-inner {
    width: 100%;
    background: rgba(253, 251, 247, 0.96);
    border: 1px solid rgba(200, 149, 90, 0.35);
    border-radius: 18px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    box-shadow: 0 14px 30px rgba(26, 15, 10, 0.2);
    backdrop-filter: blur(12px);
}

.product-card__overlay-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-card__overlay-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.product-card__overlay-sub {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card__overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--cream);
    color: var(--caramel-dark);
    border: 1px solid rgba(140, 94, 60, 0.4);
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: none;
}

.product-card__overlay-btn:hover {
    background: var(--caramel);
    color: var(--white);
    transform: translateY(-1px);
}

.product-card__overlay-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--caramel);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(140, 94, 60, 0.35);
    transition: var(--transition);
}

.product-card__overlay-icon:hover {
    background: var(--caramel-dark);
    transform: translateY(-1px);
}

.product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ensures image is fully visible, uncropped */
    transition: transform 0.55s ease;
}

.product-card:hover .product-card__img-wrap img {
    transform: scale(1.07);
}

.product-card:hover .product-card__overlay {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: none) {
    .product-card__overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .product-card__overlay-inner {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .product-card__overlay-btn {
        justify-content: center;
    }

    .product-card__overlay-icon {
        width: 100%;
        height: 38px;
        border-radius: 12px;
    }
}

/* Allergen badge */
.product-card__allergen {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(62, 31, 10, 0.88);
    color: var(--warm-beige);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.product-card__allergen i {
    font-size: 0.75rem;
    color: var(--caramel);
}

/* Body */
.product-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-card__name {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-card__desc {
    font-size: 0.95rem;
    /* Increased from 0.85rem for better legibility */
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

/* Meta row: pack size + price */
.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
    margin: 4px 0;
}

.product-card__pack {
    font-size: 0.88rem;
    /* Increased from 0.8rem for better legibility */
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    /* Added slight weight */
}

.product-card__pack i {
    color: var(--caramel);
    font-size: 0.75rem;
}

.product-card__price {
    font-family: var(--ff-serif);
    font-size: 1.45rem;
    /* Increased from 1.3rem */
    font-weight: 600;
    color: var(--caramel-dark);
}

/* WhatsApp CTA button */
.product-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 18px;
    /* Slightly larger padded button */
    border-radius: var(--radius-sm);
    background: #25D366;
    color: var(--white);
    font-family: var(--ff-sans);
    font-size: 0.92rem;
    /* Increased from 0.88rem */
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    box-shadow: 0 3px 14px rgba(37, 211, 102, 0.3);
    margin-top: auto;
}

.product-card__btn i {
    font-size: 1.05rem;
}

.product-card__btn:hover {
    background: #1fbc58;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {

    .cookies-grid,
    .breads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .cookies-grid,
    .breads-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   OUR CAKES — COMING SOON
   ============================================================ */
.cakes-section {
    padding: 100px 0;
    background: var(--cream);
}

/* ---- Coming-soon banner ---- */
.cakes-coming-soon {
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream-dark) 100%);
    border: 1.5px solid var(--warm-beige);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    margin-bottom: 52px;
    box-shadow: var(--shadow-sm);
}

.cakes-coming-soon__icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    animation: gentleFloat 3s ease-in-out infinite;
}

@keyframes gentleFloat {

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

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

.cakes-coming-soon__heading {
    font-family: var(--ff-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cakes-coming-soon__sub {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.cakes-coming-soon__btn {
    display: inline-flex;
    margin: 0 auto;
}

/* ---- Placeholder cards grid ---- */
.cakes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cakes-grid--centered {
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
}

.cakes-grid--centered .product-card {
    text-align: center;
}


.cake-placeholder-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    opacity: 0.62;
    pointer-events: none;
    user-select: none;
}

/* Blurred image with dark veil */
.cake-placeholder-card__img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.cake-placeholder-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) grayscale(35%) brightness(0.8);
    transform: scale(1.06);
    /* hide blur edges */
}

.cake-placeholder-card__veil {
    position: absolute;
    inset: 0;
    background: rgba(62, 31, 10, 0.42);
    display: flex;
    align-items: flex-end;
    padding: 14px;
}

.cake-placeholder-card__label {
    font-family: var(--ff-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* Shimmer skeleton lines */
.cake-placeholder-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cake-ph-line {
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg,
            var(--warm-beige) 25%,
            var(--cream-dark) 50%,
            var(--warm-beige) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.8s infinite linear;
}

@keyframes shimmer {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

.cake-ph-line--title {
    width: 70%;
    height: 16px;
}

.cake-ph-line--desc {
    width: 100%;
    height: 10px;
}

.cake-ph-line--short {
    width: 55%;
}

.cake-ph-line--price {
    width: 35%;
    height: 18px;
    margin-top: 6px;
    background-color: var(--warm-beige);
}

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

    .cakes-coming-soon {
        padding: 36px 24px;
    }
}

@media (max-width: 600px) {
    .cakes-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   HOW TO ORDER — 3-STEP SECTION
   ============================================================ */
.how-to-order-section {
    padding: 100px 0;
    background: var(--chocolate);
}

.how-to-order-section .section-eyebrow {
    color: var(--caramel);
}

.how-to-order-section .section-title {
    color: var(--white);
}

.how-to-order-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Step row ---- */
.hto-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 64px;
    position: relative;
}

/* Individual step */
.hto-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 320px;
    position: relative;
}

/* Dashed connector line between steps */
.hto-step__connector {
    position: absolute;
    top: 44px;
    /* vertically centred on the bubble */
    left: calc(50% + 52px);
    right: calc(-50% + 52px);
    height: 2px;
    border-top: 2px dashed rgba(200, 149, 90, 0.4);
    pointer-events: none;
}

.hto-step:last-child .hto-step__connector {
    display: none;
}

/* Bubble wrapper — stacks number + icon vertically */
.hto-step__bubble {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(200, 149, 90, 0.12);
    border: 2px solid rgba(200, 149, 90, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
    flex-shrink: 0;
}

.hto-step:hover .hto-step__bubble {
    background: var(--caramel);
    border-color: var(--caramel);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(200, 149, 90, 0.4);
}

/* Icon inside bubble */
.hto-step__icon-wrap i {
    font-size: 1.7rem;
    color: var(--caramel);
    transition: color 0.3s ease;
}

.hto-step:hover .hto-step__icon-wrap i {
    color: var(--white);
}

/* Step number badge top-right of bubble */
.hto-step__num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--caramel);
    color: var(--white);
    font-family: var(--ff-serif);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Step text */
.hto-step__body {
    padding: 0 16px;
}

.hto-step__body h3 {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
}

.hto-step__body p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
    margin: 0;
}

/* ---- Bottom CTA ---- */
.hto-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.hto-cta__text {
    font-family: var(--ff-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.hto-cta__btn {
    font-size: 1rem;
    padding: 16px 44px;
}

/* ---- Responsive ---- */
@media (max-width: 760px) {
    .hto-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .hto-step {
        flex-direction: row;
        text-align: left;
        max-width: 100%;
        gap: 20px;
    }

    .hto-step__bubble {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .hto-step__body {
        padding: 0;
    }

    /* Vertical connector for mobile */
    .hto-step__connector {
        top: calc(100% + 0px);
        left: 43px;
        right: auto;
        width: 2px;
        height: 40px;
        border-top: none;
        border-left: 2px dashed rgba(200, 149, 90, 0.4);
    }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
    position: relative;
    z-index: 1100;
    background: var(--chocolate);
    border-bottom: 1px solid rgba(200, 149, 90, 0.2);
    padding: 12px 60px 12px 24px;
    /* More right padding for close button */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.announce-bar.hidden {
    max-height: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
}

.announce-bar__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    /* More space between items */
    flex-wrap: wrap;
    justify-content: center;
}

.announce-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.announce-bar__item i {
    color: var(--caramel);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.announce-bar__item strong {
    color: var(--white);
    font-weight: 600;
}

.announce-bar__divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.announce-bar__close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 4px 6px;
    line-height: 1;
    transition: color 0.2s ease;
}

.announce-bar__close:hover {
    color: var(--white);
}

@media (max-width: 900px) {
    .announce-bar__inner {
        gap: 16px;
    }

    .announce-bar__divider {
        display: none;
    }
}

@media (max-width: 760px) {
    .announce-bar {
        padding: 10px 40px 10px 16px;
    }

    .announce-bar__inner {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
        /* Left align items on mobile for better flow */
    }

    .announce-bar__item {
        font-size: 0.78rem;
        white-space: normal;
        /* Allow text to wrap on very small screens */
    }
}

/* ============================================================
   DELIVERY INFO SECTION
   ============================================================ */
.delivery-section {
    padding: 60px 0;
    background: var(--cream-dark);
}

.delivery-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1.5px solid var(--warm-beige);
}

/* Left icon column */
.delivery-card__icon-col {
    background: linear-gradient(160deg, var(--caramel) 0%, var(--caramel-dark) 100%);
    padding: 40px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-card__icon-wrap i {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Centre content */
.delivery-card__content {
    padding: 36px 40px;
    border-right: 1.5px solid var(--cream-dark);
}

.delivery-card__title {
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.delivery-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 40px;
}

.delivery-fact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.delivery-fact__label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--caramel);
}

.delivery-fact__value {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.55;
}

.delivery-fact__value strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Right CTA column */
.delivery-card__cta-col {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    min-width: 180px;
}

.delivery-card__cta-text {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.delivery-card__btn {
    font-size: 0.85rem;
    padding: 12px 22px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
    .delivery-card {
        grid-template-columns: 1fr;
    }

    .delivery-card__icon-col {
        padding: 28px;
    }

    .delivery-card__icon-wrap i {
        font-size: 2rem;
    }

    .delivery-card__content {
        padding: 28px 24px;
        border-right: none;
        border-bottom: 1.5px solid var(--cream-dark);
    }

    .delivery-facts {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .delivery-card__cta-col {
        padding: 24px;
    }
}


/* Refining the Logo Circle to remove 'space' gaps */
.logo-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    /* Changed: Let the image background handle it */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--warm-beige);
    flex-shrink: 0;
}

.logo-circle img {
    width: 101%;
    /* Slightly larger to ensure no edge gaps */
    height: 101%;
    object-fit: cover;
}

/* ============================================================
   ABOUT PREVIEW SECTION
   ============================================================ */
.about-preview {
    padding: 100px 0;
    background: var(--cream-dark);
    text-align: center;
}

.about-preview__text {
    max-width: 700px;
    margin: 0 auto 32px;
    color: var(--text-mid);
    line-height: 1.8;
}

.about-preview__btn {
    color: var(--text-dark) !important;
    border-color: var(--warm-beige) !important;
}

.about-preview__btn:hover {
    border-color: var(--caramel) !important;
    color: var(--caramel) !important;
}

@media (max-width: 768px) {
    .about-preview {
        padding: 60px 0;
    }

    .about-preview__text {
        padding: 0 20px;
        font-size: 0.95rem;
    }
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 15, 10, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1200;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100vh;
    background: var(--cream);
    box-shadow: -20px 0 50px rgba(26, 15, 10, 0.2);
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 1300;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 22px 14px;
    border-bottom: 1px solid var(--cream-dark);
    background: var(--white);
}

.cart-drawer__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--caramel);
}

.cart-drawer__title {
    font-family: var(--ff-serif);
    font-size: 1.4rem;
    color: var(--text-dark);
}

.cart-drawer__close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--cream-dark);
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-drawer__close:hover {
    background: var(--caramel);
    color: var(--white);
}

.cart-drawer__body {
    padding: 18px 22px;
    overflow-y: auto;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    background: var(--white);
    border: 1px solid rgba(200, 149, 90, 0.2);
    border-radius: 14px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.cart-item__name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.cart-item__controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--cream-dark);
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--caramel);
    color: var(--white);
}

.qty-val {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 18px;
    text-align: center;
}

.cart-drawer__footer {
    border-top: 1px solid var(--cream-dark);
    padding: 18px 22px 22px;
    background: var(--white);
}

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

.cart-summary__label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.cart-summary__value {
    font-family: var(--ff-serif);
    font-size: 1.4rem;
    color: var(--caramel-dark);
    font-weight: 600;
}

.cart-whatsapp {
    width: 100%;
    justify-content: center;
}

.cart-empty {
    padding: 24px;
    text-align: center;
    color: var(--text-light);
    border: 1px dashed rgba(200, 149, 90, 0.3);
    border-radius: 16px;
    background: rgba(253, 251, 247, 0.8);
}

.product-card__actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 4px;
}

@media (max-width: 480px) {
    .product-card__actions {
        flex-direction: column;
    }
}

.product-card__add-btn,
.product-card__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    font-family: var(--ff-sans);
}

.product-card__add-btn {
    background: transparent;
    color: var(--caramel);
    border: 1.5px solid var(--caramel);
}

.product-card__add-btn:hover {
    background: var(--caramel);
    color: var(--white);
    transform: translateY(-2px);
}

.product-card__wa-btn {
    background: #25D366;
    color: var(--white);
    border: 1.5px solid #25D366;
}

.product-card__wa-btn:hover {
    background: #1fbc58;
    border-color: #1fbc58;
    transform: translateY(-2px);
}
