@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg: #f8f6f1;
    --bg-soft: #fcfbf8;
    --surface: #ffffff;
    --text: #121212;
    --muted: #67645d;
    --accent: #b48a4c;
    --accent-strong: #8f6c3b;
    --line: rgba(18, 18, 18, 0.12);
    --whatsapp: #25d366;
    --shadow-soft: 0 14px 36px rgba(29, 20, 8, 0.08);
    --shadow-hover: 0 18px 44px rgba(24, 17, 8, 0.14);
    --radius-lg: 20px;
    --mobile-gutter: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 6% -12%, rgba(196, 159, 99, 0.14), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(180, 138, 76, 0.08), transparent 38%),
        var(--bg);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.01em;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.22s ease, opacity 0.22s ease;
}

button,
input {
    font: inherit;
}

input:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid rgba(180, 138, 76, 0.9);
    outline-offset: 2px;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px) saturate(110%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.24s ease, background-color 0.24s ease;
}

.topbar {
    max-width: 1260px;
    margin: 0 auto;
    padding: 14px 22px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    transition: padding 0.24s ease, gap 0.24s ease;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: clamp(190px, 22vw, 280px);
    height: auto;
    display: block;
    transition: width 0.24s ease;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.brand-subtitle {
    margin-top: 6px;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7a766e;
    transition: opacity 0.2s ease, max-height 0.2s ease, margin 0.2s ease;
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    position: relative;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #252525;
    font-weight: 600;
}

@media (min-width: 781px) {
    .topbar-left {
        justify-self: start;
    }

    .brand-row {
        justify-self: center;
        text-align: center;
    }

    .header-controls {
        justify-self: end;
    }
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    border: none;
    background: #151515;
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
}

.header-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-search {
    min-width: 220px;
    width: 250px;
}

.hero-search input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 11px 15px;
    background: #fff;
    outline: none;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    padding: 11px 14px;
    cursor: pointer;
}

.cart-badge {
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 2px 9px;
    font-size: 0.78rem;
    font-weight: 700;
}

.btn-whatsapp,
.btn-primary,
.btn-secondary,
.btn-order,
.btn-orange-money {
    border: none;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp {
    padding: 11px 14px;
    background: var(--whatsapp);
    color: #fff;
}

.btn-primary {
    padding: 12px 20px;
    background: linear-gradient(135deg, #131313, #2c2c2c);
    color: #fff;
}

.btn-secondary {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #161616;
    border: 1px solid var(--line);
}

.btn-order {
    padding: 12px 16px;
    background: #151515;
    color: #fff;
}

.btn-orange-money {
    width: 100%;
    padding: 13px 18px;
    background: linear-gradient(135deg, #ff6a14, #ff8d2b);
    color: #fff;
}

.btn-whatsapp:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-order:hover,
.btn-orange-money:hover,
.icon-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(560px, 82vh, 860px);
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: clamp(56px, 8vw, 116px) 22px;
    max-width: 760px;
    color: #fff;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.42);
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(3px);
}

.home-hero h1 {
    margin: 0 0 14px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: 0.01em;
}

.home-hero p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-metrics {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hero-metrics article {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.2);
}

.hero-metrics strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
    margin-bottom: 5px;
}

.hero-metrics span {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(8, 8, 8, 0.8) 8%, rgba(8, 8, 8, 0.44) 46%, rgba(8, 8, 8, 0.18) 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.33) 100%);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    border: 0;
    transform: scale(1.06);
    animation: hero-pan 18s ease-in-out infinite alternate;
}

@keyframes hero-pan {
    from {
        transform: scale(1.06) translateY(0);
    }
    to {
        transform: scale(1.12) translateY(-1.5%);
    }
}

.about-section,
.section-intro,
.subscribe-section {
    padding-left: 22px;
    padding-right: 22px;
}

.home-proof,
.home-signature {
    padding-left: 22px;
    padding-right: 22px;
}

.home-proof {
    margin-top: -32px;
    position: relative;
    z-index: 3;
    padding-bottom: 18px;
}

.proof-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.proof-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), #fff);
    border: 1px solid rgba(180, 138, 76, 0.2);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 18px;
}

.proof-item h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}

.proof-item p {
    margin: 0;
    color: #59574f;
    font-size: 0.93rem;
}

.about-section {
    padding-top: 44px;
    padding-bottom: 20px;
}

.about-card,
.subscribe-card,
.cart-section,
.product-card,
.category-card,
.contact-card,
.testimonial-card,
.trust-item {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.about-card {
    max-width: 920px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    padding: 28px;
}

.about-lead {
    margin: 0 0 18px;
    color: #525048;
    line-height: 1.8;
}

.home-signature {
    padding-top: 30px;
    padding-bottom: 18px;
}

.signature-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 20px;
}

.signature-card {
    background: linear-gradient(150deg, #ffffff 0%, #fff9ef 100%);
    border: 1px solid rgba(180, 138, 76, 0.23);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    padding: 20px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.signature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.signature-tag {
    margin: 0 0 10px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-strong);
}

.signature-card h3 {
    margin: 0 0 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.signature-card p {
    margin: 0;
    color: #555147;
}

.about-card h2,
.subscribe-card h2,
.cart-title {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.01em;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
}

.checklist li {
    background: var(--bg-soft);
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
}

.section-intro {
    padding-top: 56px;
    text-align: center;
}

.section-title {
    margin: 0 0 10px;
    font-size: 0.9rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.section-subtitle {
    margin: 0 auto 42px;
    max-width: 760px;
    color: #5e5e5e;
    line-height: 1.8;
}

.category-cards,
.products-grid,
.trust-strip,
.testimonials {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 22px;
    padding-right: 22px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 28px;
}

.trust-item {
    border-radius: 16px;
    padding: 16px;
}

.trust-item h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}

.trust-item p {
    margin: 0;
    color: #5c5a53;
    font-size: 0.93rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 44px;
}

.testimonial-card {
    border-radius: 16px;
    padding: 18px;
}

.testimonial-card p {
    margin: 0 0 10px;
    color: #4f4d46;
}

.testimonial-card strong {
    color: #2c2a24;
}

.testimonial-rating {
    letter-spacing: 0.08em;
    color: var(--accent-strong);
}

.site-toast {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 24px);
    opacity: 0;
    pointer-events: none;
    z-index: 80;
    background: #1f1f1f;
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
    transition: transform 0.22s ease, opacity 0.22s ease;
    font-weight: 600;
    font-size: 0.92rem;
}

.site-toast.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    padding-bottom: 40px;
}

.category-card {
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card.active {
    border-color: rgba(154, 122, 69, 0.7);
}

.category-card h3 {
    margin: 0;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(180, 138, 76, 0.55);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    padding-bottom: 56px;
}

.product-card {
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.product-badge {
    align-self: flex-start;
    background: rgba(154, 122, 69, 0.15);
    color: #6a532f;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 0.76rem;
    font-weight: 700;
}

.product-name {
    font-weight: 700;
    font-size: 1.03rem;
}

.product-desc {
    color: #5d5d5d;
}

.products-grid > .product-card:only-child {
    text-align: left;
}

.product-highlights {
    margin: 0;
    padding-left: 18px;
    color: #4b4b4b;
    line-height: 1.6;
    flex: 1;
}

.product-price {
    font-weight: 700;
}

.cart-section {
    max-width: 780px;
    margin: 0 auto 64px;
    border-radius: var(--radius-lg);
    padding: 30px;
}

.cart-total-box {
    font-size: 1.03rem;
    margin-bottom: 16px;
}

.cart-title {
    margin: 0 0 14px;
}

.cart-items-list {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
}

.cart-item:last-child {
    border-bottom: none;
}

.qty-controls {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}

.qty-controls button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
}

.btn-remove {
    background: transparent;
    border: none;
    color: #cc3f30;
    font-weight: 700;
    cursor: pointer;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 40;
}

.modal-overlay.visible {
    display: flex;
}

.modal-content {
    width: min(560px, 100%);
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.subscribe-section {
    padding-top: 30px;
    padding-bottom: 40px;
}

.subscribe-card {
    max-width: 820px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.contact-card {
    border-radius: 14px;
    padding: 16px;
}

#subscribe-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

#subscribe-email {
    flex: 1 1 240px;
    min-width: 220px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 14px;
}

#subscribe-form button {
    min-width: 160px;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 44px 22px 54px;
    background:
        linear-gradient(160deg, #171410 0%, #201910 55%, #1a150f 100%);
    color: #f2eee6;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.footer-column h3 {
    margin: 0 0 10px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-column p,
.footer-column a {
    color: rgba(245, 239, 230, 0.86);
    line-height: 1.8;
    font-size: 0.93rem;
}

.footer-column strong {
    color: #fff;
}

.whatsapp-link:hover {
    color: #ffe0ab;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    background: rgba(255, 224, 171, 0.16);
    border-color: rgba(255, 224, 171, 0.55);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.reveal-item {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    will-change: opacity, transform;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-bottom {
    text-align: center;
    margin-top: 26px;
    color: rgba(242, 238, 230, 0.72);
    font-size: 0.88rem;
}

#subscribe-form {
    margin-top: 10px;
}

#subscribe-email {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.26);
    color: #fff;
}

#subscribe-email::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

#subscribe-form button {
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 50;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 700;
}

@media (max-width: 980px) {
    .home-hero {
        min-height: clamp(500px, 76vh, 760px);
    }

    .proof-grid,
    .signature-grid,
    .hero-metrics,
    .trust-strip,
    .testimonials {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 780px) {
    .nav-toggle {
        display: inline-flex;
        padding: 8px 14px;
        min-height: 44px;
        border-radius: 14px;
        font-weight: 600;
        letter-spacing: 0.01em;
        box-shadow: 0 6px 14px rgba(17, 17, 17, 0.15);
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 8px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.96);
    }

    .nav-links.open {
        display: flex;
    }

    .topbar {
        width: 100%;
        max-width: none;
        margin: 0;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 6px;
        padding: 8px 0 10px;
        align-items: start;
    }

    .topbar-left,
    .brand-row {
        width: auto;
        padding-left: calc(var(--mobile-gutter) + env(safe-area-inset-left));
        padding-right: 8px;
    }

    .header-controls {
        width: 100%;
        min-width: 0;
        padding-left: 8px;
        padding-right: calc(var(--mobile-gutter) + env(safe-area-inset-right));
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(18, 18, 18, 0.08);
        border-radius: 20px;
        padding-top: 8px;
        padding-bottom: 8px;
        backdrop-filter: blur(8px);
    }

    .topbar-left,
    .header-controls {
        gap: 6px;
    }

    .topbar-left {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .brand-row {
        grid-column: 1;
        grid-row: 2;
        order: 0;
        align-items: center;
        justify-content: center;
        padding-top: 0;
    }

    .brand-logo {
        width: min(112px, 31vw);
    }

    .brand-subtitle {
        display: none;
    }

    .header-controls {
        grid-column: 2;
        grid-row: 1 / span 2;
        display: grid;
        grid-template-columns: minmax(0, 1fr) fit-content(120px);
        grid-template-areas:
            "search cart"
            "whatsapp whatsapp";
        align-content: start;
        align-items: center;
        justify-content: stretch;
        row-gap: 6px;
        column-gap: 6px;
    }

    .hero-search {
        grid-area: search;
        min-width: 0;
        width: 100%;
    }

    .hero-search input {
        padding: 9px 14px;
        min-height: 44px;
        font-size: 16px;
        border-color: rgba(18, 18, 18, 0.14);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    }

    .icon-button {
        grid-area: cart;
        width: auto;
        white-space: nowrap;
        min-height: 44px;
        padding: 9px 13px;
        font-size: 16px;
        border-color: rgba(18, 18, 18, 0.14);
    }

    .btn-whatsapp {
        grid-area: whatsapp;
        width: 100%;
        min-height: 44px;
        padding: 9px 13px;
        font-size: 1rem;
        letter-spacing: 0.01em;
    }

    .topbar-left .nav-links {
        width: min(250px, calc(100vw - (var(--mobile-gutter) * 2)));
    }

    header.is-compact-mobile {
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

    header.is-compact-mobile .topbar {
        padding: 5px 0 7px;
        gap: 5px;
    }

    header.is-compact-mobile .topbar-left,
    header.is-compact-mobile .brand-row,
    header.is-compact-mobile .header-controls {
        transition: padding 0.2s ease;
    }

    header.is-compact-mobile .header-controls {
        border-radius: 16px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    header.is-compact-mobile .brand-logo {
        width: min(102px, 28vw);
    }

    header.is-compact-mobile .brand-subtitle {
        opacity: 0;
        max-height: 0;
        margin: 0;
        overflow: hidden;
    }

    .btn-primary,
    .btn-secondary,
    .btn-orange-money {
        width: 100%;
    }

    .hero-content {
        padding: 62px 16px;
    }

    .products-grid,
    .category-cards,
    .trust-strip,
    .testimonials,
    .section-intro,
    .about-section,
    .subscribe-section,
    .home-proof,
    .home-signature {
        padding-left: 16px;
        padding-right: 16px;
    }

    .products-grid {
        gap: 14px;
        padding-bottom: 42px;
    }

    .product-card {
        border-radius: 16px;
        padding: 14px;
        gap: 10px;
    }

    .product-card img {
        height: 198px;
        border-radius: 10px;
    }

    .product-name {
        font-size: 1rem;
    }

    .product-desc,
    .product-highlights {
        font-size: 0.93rem;
    }

    .home-proof {
        margin-top: -14px;
    }

    .proof-grid,
    .signature-grid,
    .hero-metrics,
    .trust-strip,
    .testimonials {
        grid-template-columns: 1fr;
    }

    .site-toast {
        width: calc(100% - 28px);
        border-radius: 14px;
        text-align: center;
        bottom: 14px;
    }

    #subscribe-form {
        flex-direction: column;
    }

    #subscribe-email,
    #subscribe-form button {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .brand-logo {
        width: min(108px, 30vw);
    }

    .home-hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .topbar {
        gap: 6px;
        padding-top: 8px;
    }

    .topbar-left,
    .brand-row {
        padding-left: calc(12px + env(safe-area-inset-left));
    }

    .header-controls {
        padding-right: calc(12px + env(safe-area-inset-right));
        border-radius: 18px;
    }

    .hero-search input,
    .icon-button,
    .btn-whatsapp {
        min-height: 42px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .trust-item,
    .testimonial-card {
        padding: 14px;
    }

    .modal-content {
        width: 100%;
        border-radius: 0;
        height: 100vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal-item,
    .reveal-item.is-visible {
        opacity: 1;
        transform: none;
    }
}
