:root {
    --bg: #FBF5ED;
    --gold: #D8A441;
    --green: #5B6F3A;
    --brown: #8A6A3F;
    --text: #2B2B2B;
    --muted: #7a7366;
    --white: #ffffff;
    --whatsapp: #16974a;
}

/* =========================
   RESET & BASE
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, Segoe UI, Roboto, Arial;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   HERO
========================= */

header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo-wrap {
    width: min(88vmin, 460px);
    height: min(88vmin, 460px);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--brown);
    margin: 6px 0 2px;
}

.tagline-inline {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

.divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--green));
    margin: 14px auto;
    border-radius: 6px;
}

.tagline {
    max-width: 560px;
    margin: 0 auto 22px;
    color: var(--muted);
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */

.btn {
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.btn.primary {
    background: var(--gold);
}

.btn.whatsapp,
.btn.small {
    background: var(--whatsapp);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.btn.small {
    font-size: 14px;
    padding: 10px 16px;
    align-self: flex-start;
}

/* =========================
   SECTIONS & HEADINGS
========================= */

section {
    padding: 0;
    margin: 48px 0;
}

h2 {
    font-size: 26px;
    color: var(--green);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

section>h3 {
    font-size: 18px;
    color: var(--green);
    margin-top: 42px;
    margin-bottom: 12px;
}

p {
    color: var(--muted);
}

.muted-note {
    font-size: 14px;
    margin-bottom: 18px;
}

.badge {
    margin-left: 8px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 999px;
    background: rgba(216, 164, 65, 0.15);
    color: var(--brown);
}

/* =========================
   STORY & FROZEN INFO
========================= */

.story,
.frozen-info details {
    background: linear-gradient(180deg, #fffdfa, #fbf6ee);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 10px 28px rgba(35, 30, 20, 0.05);
}

.story p,
.frozen-info p,
.story ul,
.frozen-info ul {
    max-width: 760px;
}

.story-sub {
    font-size: 15px;
    margin: 26px 0 8px;
    color: var(--brown);
}

.story-list {
    margin: 10px 0 14px;
    padding-left: 18px;
    color: var(--muted);
}

.story-list li {
    margin-bottom: 6px;
}

details summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--green);
    list-style: none;
    position: relative;
    padding-right: 18px;
    transition: color 0.2s ease;
}

details summary:hover {
    color: var(--brown);
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: "▾";
    position: absolute;
    right: 0;
    transition: transform 0.2s ease;
}

details[open] summary::after {
    transform: rotate(180deg);
}

.frozen-info {
    margin-bottom: 24px;
}

/* =========================
   PRODUCTS & COMBOS
========================= */

.products-scroll {
    max-height: none;
    overflow: visible;
    padding-right: 6px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.product {
    background: linear-gradient(180deg, #fffdfa, #fbf6ee);
    border-radius: 20px;
    padding: 20px 22px 18px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product:hover {
    transform: translateY(-4px);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.08),
        0 6px 10px rgba(0, 0, 0, 0.05);
}

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

.product h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: var(--brown);
}

.product p {
    font-size: 15px;
    line-height: 1.6;
}

.variants {
    list-style: none;
    padding: 14px 16px;
    margin: 14px 0 18px;
    background: #ffffff;
    border-radius: 12px;
    font-size: 14px;
}

.variants li {
    margin-bottom: 6px;
    color: var(--muted);
}

.alt {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
}

.product .btn.small {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* =========================
   STORAGE
========================= */
.storage {
    margin-bottom: 24px;
}

.storage ul {
    padding-left: 18px;
    max-width: 760px;
}

.storage li {
    margin-bottom: 10px;
}

/* =========================
   FOOTER & FLOATING CTA
========================= */

footer {
    margin-top: 56px;
    text-align: center;
    font-size: 14px;
    padding: 28px 20px;
    color: var(--muted);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--whatsapp);
    color: #fff;
    padding: 12px 16px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    animation: floatPulse 4s ease-in-out infinite;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.95);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

}

.whatsapp-float.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.heating-list {
    list-style: none;
    /* 🔥 removes bullets */
    padding-left: 0;
    margin: 8px 0 0;
}

.heating-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.heat-icon {
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1.4;
}

.heating-list.alt {
    opacity: 0.80;
}

.menu-btn {
    background: transparent;
    color: var(--brown);
    border: 1.5px solid rgba(138, 106, 63, 0.45);
    box-shadow: none;
}

.menu-btn:hover {
    background: rgba(138, 106, 63, 0.08);
}

.testimonials {
    text-align: center;
    margin-top: 32px;   /* tighter than default */
    margin-bottom: 32px;
}

.testimonial-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 16px 4px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    flex: 0 0 auto;
    min-width: 280px;
    max-width: 320px;

    background: linear-gradient(180deg, #fffdfa, #fbf6ee);
    border-radius: 20px;
    padding: 22px 24px;

    box-shadow: 0 10px 24px rgba(35, 30, 20, 0.06);
    scroll-snap-align: start;

    text-align: left;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 14px;
}

.testimonial-card span {
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
}

/* Optional scrollbar polish */
.testimonial-grid::-webkit-scrollbar {
    height: 6px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}


@keyframes floatPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
    header {
        min-height: 70vh;
    }

    .products-scroll {
        max-height: none;
        overflow: visible;
    }

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