:root {
    --red: #b31224;
    --deep-red: #7f0e1b;
    --green: #176d38;
    --leaf: #eaf5df;
    --white: #fffaf2;
    --paper: #ffffff;
    --ink: #231b18;
    --muted: #746760;
    --line: rgba(127, 14, 27, 0.14);
    --shadow: 0 22px 55px rgba(69, 25, 16, 0.13);
    --radius: 8px;
    --heading: "Playfair Display", Georgia, serif;
    --body: "Manrope", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: var(--body);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 54px);
    background: rgba(255, 250, 242, 0.9);
    border-bottom: 1px solid rgba(179, 18, 36, 0.12);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(35, 27, 24, 0.08);
    padding-block: 10px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--deep-red));
    border: 3px solid var(--green);
    border-radius: 50%;
    font-family: var(--heading);
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(179, 18, 36, 0.22);
}

.brand-logo {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    object-fit: cover;
    border: 2px solid var(--green);
    border-radius: 50%;
    background: var(--paper);
    filter: drop-shadow(0 8px 16px rgba(179, 18, 36, 0.2));
}

.brand strong {
    display: block;
    color: var(--green);
    font-family: var(--heading);
    font-size: 1.25rem;
    line-height: 1;
}

.brand small {
    display: block;
    color: var(--deep-red);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 2vw, 24px);
    min-width: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
}

.site-nav a {
    color: var(--deep-red);
    font-size: 0.95rem;
    font-weight: 800;
    position: relative;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

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

.site-search {
    width: clamp(170px, 18vw, 240px);
}

.site-search input {
    min-height: 42px;
    padding: 10px 14px;
    border-color: rgba(127, 14, 27, 0.18);
    border-radius: 999px;
    color: var(--deep-red);
    font-size: 0.9rem;
    font-weight: 800;
}

.site-search input::placeholder {
    color: rgba(127, 14, 27, 0.58);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 2px solid var(--green);
    background: var(--paper);
    border-radius: var(--radius);
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--deep-red);
    border-radius: 999px;
}

.page-section {
    scroll-margin-top: 86px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 130px clamp(18px, 6vw, 84px) 64px;
    overflow: hidden;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg {
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.78) 38%, rgba(255, 250, 242, 0.16) 70%),
        radial-gradient(circle at 19% 42%, rgba(255, 250, 242, 0.78), rgba(255, 250, 242, 0) 31%),
        linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(23, 109, 56, 0.08));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-poster {
    display: grid;
    grid-template-columns: clamp(118px, 15vw, 230px) minmax(0, 1fr);
    gap: clamp(16px, 3vw, 34px);
    align-items: start;
}

.hero-logo {
    width: clamp(118px, 15vw, 230px);
    aspect-ratio: 1;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(69, 25, 16, 0.12));
}

.hero-message {
    max-width: 520px;
    padding-top: clamp(28px, 7vw, 88px);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--heading);
    line-height: 1.05;
}

.hero-title {
    margin-top: 26px;
    color: var(--green);
    font-family: var(--heading);
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    text-shadow: 0 2px 0 rgba(255, 250, 242, 0.78);
}

.chilli {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.85em;
    transform: rotate(-12deg) translateY(4px);
}

.heart-text {
    color: var(--red);
    font-family: "Great Vibes", "Brush Script MT", cursive;
    font-size: clamp(6.2rem, 13vw, 12rem);
    font-weight: 400;
    line-height: 0.72;
    text-shadow: 0 4px 0 rgba(255, 250, 242, 0.88);
}

.hero-caption {
    position: relative;
    width: fit-content;
    margin: 28px 0 0;
    padding-inline: 64px;
    color: var(--ink);
    font-family: var(--heading);
    font-size: clamp(1rem, 1.6vw, 1.45rem);
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.hero-caption::before,
.hero-caption::after {
    content: "";
    position: absolute;
    top: 0.75em;
    width: 48px;
    height: 1px;
    background: var(--red);
}

.hero-caption::before {
    left: 0;
}

.hero-caption::after {
    right: 0;
}

.hero-caption-ornament {
    display: block;
    width: min(280px, 100%);
    height: 18px;
    margin: 12px 0 0 36px;
    background:
        linear-gradient(90deg, transparent 0 28%, var(--red) 28% 45%, transparent 45% 55%, var(--red) 55% 72%, transparent 72% 100%),
        radial-gradient(circle at center, var(--red) 0 8px, transparent 9px);
    background-repeat: no-repeat;
    background-size: 100% 1px, 18px 18px;
    background-position: center, center;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: var(--paper);
    background: var(--green);
    box-shadow: 0 14px 26px rgba(23, 109, 56, 0.22);
}

.btn.secondary {
    color: var(--deep-red);
    background: var(--paper);
    border-color: var(--line);
}

.about,
.categories,
.process,
.why,
.order,
.contact {
    padding: clamp(66px, 9vw, 116px) clamp(18px, 6vw, 84px);
}

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--green);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.category-kicker {
    color: var(--red);
    font-size: 1.35rem;
    letter-spacing: 0;
    text-transform: none;
}

.section-heading .category-heading-title {
    color: var(--green);
}

.about-kicker {
    display: grid;
    gap: 2px;
    font-size: 2.5rem;
    letter-spacing: 0.08em;
    text-transform: none;
}

.about-kicker span {
    color: var(--deep-red);
}

.about-kicker strong {
    color: var(--green);
    font-family: var(--heading);
    font-weight: 700;
    line-height: 1;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2,
.about h2,
.order-intro h2,
.contact-panel h2 {
    color: var(--deep-red);
    font-size: clamp(2rem, 4vw, 4.2rem);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(28px, 5vw, 78px);
    align-items: center;
}

.split p,
.section-heading + p,
.order-intro p,
.contact-panel p {
    color: var(--muted);
    font-size: 1.05rem;
}

.about-highlights {
    color: var(--green);
    font-weight: 900;
}

.about-copy {
    max-width: 800px;
    margin-left: auto;
    line-height: 1.8;
    text-align: right;
}

.about-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 22px;
    align-items: center;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-card img {
    width: 150px;
    aspect-ratio: 1;
    border-radius: var(--radius);
    object-fit: cover;
    background: var(--leaf);
}

.about-card strong {
    color: var(--green);
    font-size: 1.15rem;
}

.why,
.why-grid,
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 190px));
    justify-content: center;
    gap: 30px;
}

.category-card,
.why-card,
.process-step,
.product-card,
.contact-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 16px 38px rgba(69, 25, 16, 0.08);
}

.category-card {
    display: grid;
    align-content: center;
    justify-items: center;
    width: 100%;
    min-height: 118px;
    padding: 14px;
    border-color: var(--green);
    text-align: center;
    cursor: pointer;
}

.category-card > span {
    display: block;
    color: var(--deep-red);
    font-family: var(--heading);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.1;
}

.category-card small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.25;
}

.category-status {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.category-count,
.stock-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 1;
}

.category-count {
    color: var(--deep-red);
    background: rgba(127, 14, 27, 0.08);
}

.stock-badge.in-stock {
    color: var(--paper);
    background: var(--green);
}

.stock-badge.no-stock {
    color: var(--paper);
    background: var(--red);
}

.category-card.active {
    color: var(--paper);
    background: linear-gradient(135deg, var(--red), var(--deep-red));
    border-color: var(--green);
}

.category-card.active > span,
.category-card.active small {
    color: var(--paper);
}

.category-card.active .category-count {
    color: var(--deep-red);
    background: var(--paper);
}

.process-step,
.why-card {
    padding: 26px;
}

.process-step span {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 18px;
    color: var(--paper);
    background: var(--green);
    border-radius: 50%;
    font-weight: 900;
}

.process-step h3,
.why-card h3 {
    color: var(--deep-red);
    font-size: 1.45rem;
}

.process-step p,
.why-card p {
    color: var(--muted);
}

.order {
    background:
        linear-gradient(180deg, rgba(179, 18, 36, 0.07), rgba(23, 109, 56, 0.06)),
        var(--white);
}

.order-intro {
    max-width: 820px;
    margin-bottom: 36px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.no-results {
    grid-column: 1 / -1;
    padding: 26px;
    color: var(--muted);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 800;
}

.product-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.product-card img {
    width: 100%;
    aspect-ratio: 1.05;
    object-fit: cover;
    background: var(--leaf);
}

.product-body {
    padding: 18px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.pill {
    display: inline-flex;
    padding: 5px 10px;
    color: var(--green);
    background: var(--leaf);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
}

.price {
    color: var(--red);
    font-weight: 900;
}

.product-card h3 {
    color: var(--deep-red);
    font-size: 1.25rem;
}

.product-card p {
    color: var(--muted);
    min-height: 52px;
    margin: 10px 0 16px;
    font-size: 0.94rem;
}

.whatsapp-card {
    width: 100%;
    color: var(--paper);
    background: var(--green);
}

.text-link {
    display: inline-block;
    margin-top: 22px;
    color: var(--green);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.contact-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(24px, 5vw, 70px);
    padding: clamp(22px, 5vw, 52px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 245, 223, 0.94)),
        var(--paper);
}

.feedback-form {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--deep-red);
    font-size: 0.9rem;
    font-weight: 900;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: var(--ink);
    background: var(--paper);
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(23, 109, 56, 0.11);
}

.form-status {
    min-height: 24px;
    margin: 0;
    color: var(--green);
    font-weight: 800;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 15;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.34);
    animation: waPulse 2.4s infinite;
}

.floating-whatsapp svg {
    width: 31px;
    fill: #fff;
}

.shipping-ticker {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 16;
    display: none;
    overflow: hidden;
    border-top: 2px solid var(--green);
    background: var(--paper);
    color: var(--green);
    box-shadow: 0 -10px 26px rgba(69, 25, 16, 0.18);
}

.shipping-ticker.show {
    display: block;
}

.shipping-ticker-track {
    display: flex;
    width: max-content;
    gap: 42px;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 900;
    white-space: nowrap;
    animation: shippingScroll 22s linear infinite;
}

.shipping-ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@keyframes shippingScroll {
    from {
        transform: translateX(100vw);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes waPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.site-footer {
    display: grid;
    gap: 72px;
    padding: 52px clamp(18px, 6vw, 84px) 24px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--deep-red);
    text-align: center;
}

.footer-quick-links {
    display: grid;
    gap: 28px;
}

.footer-quick-links h2 {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    color: var(--paper);
    font-family: var(--body);
    font-size: 1.45rem;
    font-weight: 900;
}

.footer-quick-links h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: var(--green);
    transform: translateX(-50%);
}

.footer-quick-links nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 28px;
    max-width: 880px;
    margin: 0 auto;
}

.footer-quick-links a {
    position: relative;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    font-weight: 800;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-quick-links a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: var(--green);
    transform: scaleX(0.65);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.footer-quick-links a:hover,
.footer-quick-links a:focus-visible,
.footer-quick-links a:active {
    border-color: var(--green);
    color: #dceecf;
    background: rgba(23, 109, 56, 0.18);
    outline: none;
}

.footer-quick-links a:hover::after,
.footer-quick-links a:focus-visible::after,
.footer-quick-links a:active::after {
    transform: scaleX(1);
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.88rem;
    text-align: left;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .header-actions {
        flex: 1;
        gap: 10px;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 44px;
    }

    .site-search {
        width: min(210px, 38vw);
        margin-left: auto;
    }

    .site-search input {
        min-height: 40px;
        padding-inline: 13px;
        font-size: 0.85rem;
    }

    .site-nav {
        position: fixed;
        inset: 76px 14px auto 14px;
        display: grid;
        gap: 0;
        padding: 10px;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .site-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 14px;
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: 760px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 250, 242, 0.82) 44%, rgba(255, 250, 242, 0.18) 100%);
    }

    .hero-content {
        align-self: start;
    }

    .hero-poster {
        grid-template-columns: clamp(86px, 18vw, 150px) minmax(0, 1fr);
        gap: 14px;
    }

    .hero-logo {
        width: clamp(86px, 18vw, 150px);
    }

    .hero-message {
        padding-top: 18px;
    }

    .split,
    .contact-panel,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .process-steps,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .site-header {
        padding-inline: 14px;
    }

    .header-actions {
        flex: 0 0 auto;
    }

    .site-search {
        width: 126px;
    }

    .site-search input {
        padding-inline: 10px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .brand-logo {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .brand strong {
        font-size: 1.08rem;
    }

    .brand small {
        font-size: 0.62rem;
    }

    .hero {
        min-height: 720px;
        padding-inline: 18px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .heart-text {
        font-size: clamp(5.7rem, 25vw, 8rem);
    }

    .hero-caption {
        padding-inline: 42px;
        font-size: 1rem;
    }

    .hero-caption::before,
    .hero-caption::after {
        width: 32px;
    }

    .hero-actions,
    .footer-links {
        display: grid;
    }

    .shipping-ticker-track {
        gap: 28px;
        padding-block: 9px;
        font-size: 0.9rem;
        animation-duration: 18s;
    }

    .btn {
        width: 100%;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, 132px);
        gap: 14px;
    }

    .category-card {
        width: 132px;
        padding: 10px;
    }

    .category-card > span {
        font-size: 1rem;
    }

    .category-card small {
        font-size: 0.68rem;
    }

    .why-grid,
    .process-steps,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        grid-template-columns: 1fr;
    }

    .about-card img {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .brand small {
        display: none;
    }

    .site-search {
        width: 108px;
    }

    .site-search input {
        font-size: 0.8rem;
    }
}
