:root {
    --ink: #141a17;
    --ember: #e05a24;
    --ember-deep: #b84418;
    --paper: #f6f7f5;
    --ash: #e8ece8;
    --bark: #2a3530;
    --muted: #5c6b63;
    --line: rgba(20, 26, 23, 0.1);
    --white: #ffffff;
    --forest: #1c2a24;
    --forest-deep: #101916;
    --glow: rgba(224, 90, 36, 0.35);
    --radius: 1rem;
    --radius-sm: 0.65rem;
    --shadow: 0 16px 40px rgba(16, 25, 22, 0.08);
    --font: "DM Sans", system-ui, sans-serif;
    --display: "Fraunces", Georgia, serif;
    --header-h: 6rem;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: clip;
}
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background:
        radial-gradient(1000px 480px at 90% -15%, rgba(224, 90, 36, 0.08), transparent 55%),
        radial-gradient(800px 400px at 0% 20%, rgba(44, 90, 70, 0.06), transparent 50%),
        linear-gradient(180deg, #f8f9f7 0%, var(--paper) 45%, #eef1ee 100%);
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    max-width: 100%;
}
main {
    max-width: 100%;
    overflow-x: clip;
}
body.nav-open {
    overflow: hidden;
}
a { color: inherit; text-decoration: none; }
img, video, svg { max-width: 100%; height: auto; }
img, video { display: block; }
button, input, select, textarea { font: inherit; max-width: 100%; }
.wrap {
    width: min(1160px, 100%);
    margin-inline: auto;
    padding-inline: max(clamp(0.875rem, 3vw, 1.25rem), env(safe-area-inset-left, 0px)) max(clamp(0.875rem, 3vw, 1.25rem), env(safe-area-inset-right, 0px));
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

/* ——— Promo bar ——— */
.site-top {
    position: sticky;
    top: 0;
    z-index: 40;
    max-width: 100%;
    overflow-x: clip;
}
.site-header,
.site-header .wrap {
    overflow: visible;
}
.promo-bar {
    background: linear-gradient(90deg, var(--forest-deep) 0%, var(--forest) 45%, var(--bark) 100%);
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    max-width: 100%;
}
.promo-bar__viewport {
    overflow: hidden;
    max-width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.promo-bar__track {
    display: flex;
    width: max-content;
    animation: promo-scroll 38s linear infinite;
}
.promo-bar__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.promo-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.62rem 1.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.promo-bar__icon {
    flex-shrink: 0;
    color: var(--ember);
    opacity: 0.95;
}
.promo-bar__sep {
    width: 4px;
    height: 4px;
    margin-left: 1.75rem;
    border-radius: 50%;
    background: rgba(224, 90, 36, 0.85);
    box-shadow: 0 0 0 3px rgba(224, 90, 36, 0.15);
}
@keyframes promo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .promo-bar__viewport { mask-image: none; }
    .promo-bar__track {
        width: 100%;
        animation: none;
        justify-content: center;
    }
    .promo-bar__group:last-child { display: none; }
    .promo-bar__item { padding-inline: 1rem; }
    .promo-bar__sep { display: none; }
    .promo-bar__group .promo-bar__item:not(:first-child) { display: none; }
}

/* ——— Header ——— */
.site-header {
    position: relative;
    z-index: 41;
    overflow: visible;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(246, 247, 245, 0.92);
    border-bottom: 1px solid rgba(20, 26, 23, 0.08);
    box-shadow: 0 10px 30px rgba(16, 25, 22, 0.05);
}
.header-inner,
.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-h);
    padding: 0.55rem 0;
    min-width: 0;
    position: relative;
}
.header-inner > .brand-logo,
.header-shell > .brand-logo {
    flex: 0 1 auto;
    min-width: 0;
    z-index: 3;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex: 0 0 auto;
    flex-shrink: 0;
    position: relative;
    z-index: 50;
}
.header-cart {
    flex-shrink: 0;
    position: relative;
    isolation: isolate;
}
.header-cart:focus-visible,
.nav-toggle:focus-visible {
    outline: 2px solid rgba(224, 90, 36, 0.55);
    outline-offset: 2px;
}
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 2.75rem;
    max-width: none;
    min-width: 2.75rem;
    border: 1px solid rgba(20, 26, 23, 0.14);
    border-radius: 0.75rem;
    background: var(--white);
    padding: 0;
    cursor: pointer;
    color: var(--ink);
    box-shadow: 0 8px 20px rgba(16, 25, 22, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.nav-toggle:hover {
    border-color: rgba(224, 90, 36, 0.45);
    color: var(--ember);
}
.nav-toggle__icon {
    display: block;
    flex-shrink: 0;
    pointer-events: none;
}
.header-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;
    flex: 1 1 auto;
    min-width: 0;
}
@media (min-width: 901px) {
    .header-shell > .brand-logo {
        order: 1;
    }
    .nav-toggle {
        display: none;
    }
    .header-panel {
        order: 2;
        position: static;
        width: auto;
        max-height: none;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 0;
        margin: 0;
        border-bottom: 0;
        box-shadow: none;
        background: transparent;
    }
    .header-actions {
        order: 3;
    }
}
.nav-primary {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.28rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(20, 26, 23, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.52rem 0.95rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--bark);
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.nav-link:hover {
    color: var(--ember);
    background: rgba(224, 90, 36, 0.08);
}
.nav-link.is-active {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(16, 25, 22, 0.14);
}
.header-aside {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}
.header-switches {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    flex-wrap: wrap;
}
.header-switches form {
    margin: 0;
}
.locale-switch select { max-width: 10.5rem; }
.country-switch select { max-width: 12rem; }
.market select,
.header-switches select {
    border: 1px solid rgba(20, 26, 23, 0.1);
    background: var(--white);
    border-radius: 999px;
    padding: 0.48rem 0.8rem;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 4px 14px rgba(16, 25, 22, 0.04);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.header-switches select:hover,
.header-switches select:focus {
    border-color: rgba(224, 90, 36, 0.35);
    outline: none;
    box-shadow: 0 0 0 3px rgba(224, 90, 36, 0.12);
}
.cart-link {
    text-decoration: none;
}
.cart-link--button {
    background: linear-gradient(145deg, #ea6830 0%, var(--ember-deep) 100%);
    color: var(--white) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 10px 24px rgba(224, 90, 36, 0.28);
}
.cart-link--button:hover {
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 14px 28px rgba(224, 90, 36, 0.34);
    background: linear-gradient(145deg, #f07540 0%, #c44a1a 100%);
}
.cart-link--button.is-active {
    background: linear-gradient(145deg, var(--ink) 0%, #0f1512 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 24px rgba(16, 25, 22, 0.2);
}
.cart-icon {
    flex-shrink: 0;
    display: block;
    width: 1.35rem;
    height: 1.35rem;
    max-width: none;
    min-width: 1.35rem;
    min-height: 1.35rem;
    overflow: visible;
}
.cart-icon__body {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}
.cart-icon__wheel {
    fill: #ffffff;
    stroke: none;
}
.header-cart .cart-icon {
    position: relative;
    z-index: 1;
    width: 1.35rem;
    height: 1.35rem;
    max-width: none;
    min-width: 1.35rem;
    min-height: 1.35rem;
}
.header-cart.is-active .cart-icon__body,
.header-cart.is-active .cart-icon__wheel {
    stroke: #ffffff;
    fill: #ffffff;
}
.cart-link__badge {
    display: inline-grid;
    place-items: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.32rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--ember-deep);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    box-shadow: 0 2px 8px rgba(16, 25, 22, 0.16);
}
.cart-link__label {
    font-weight: 700;
}
.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 34;
    background: rgba(16, 25, 22, 0.42);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}
body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}
body.nav-open .nav-backdrop[hidden] {
    display: block;
}
.flash {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    background: #e7f3ea;
    border: 1px solid #b7d9be;
}

/* ——— Hero ——— */
.hero {
    position: relative;
    isolation: isolate;
    min-height: min(92vh, 820px);
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: #121a16;
}
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            105deg,
            rgba(10, 16, 13, 0.78) 0%,
            rgba(10, 16, 13, 0.62) 28%,
            rgba(10, 16, 13, 0.28) 52%,
            rgba(10, 16, 13, 0.18) 72%,
            rgba(10, 16, 13, 0.35) 100%
        ),
        linear-gradient(180deg, rgba(10, 16, 13, 0.15) 0%, rgba(10, 16, 13, 0.55) 100%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    padding: clamp(3.5rem, 10vw, 6.2rem) 0 clamp(2.8rem, 6vw, 4.2rem);
    max-width: min(36rem, 100%);
    animation: fade-up 0.85s ease both;
}
.hero-kicker {
    margin: 0 0 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 220, 190, 0.9);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.hero h1 {
    font-family: var(--display);
    font-size: clamp(3rem, 9vw, 5.2rem);
    line-height: 0.95;
    margin: 0 0 1rem;
    letter-spacing: -0.035em;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.hero p {
    margin: 0 0 1.6rem;
    font-size: clamp(1.02rem, 2.2vw, 1.18rem);
    color: rgba(245, 242, 236, 0.94);
    max-width: 32ch;
    line-height: 1.55;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-ghost {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.06);
}
.hero-ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* ——— Buttons ——— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 0;
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.25rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--ember);
    color: #fff;
    box-shadow: 0 10px 28px rgba(224, 90, 36, 0.28);
}
.btn-primary:hover { background: var(--ember-deep); }
.btn-ghost { background: transparent; color: inherit; border: 1px solid currentColor; }
.btn-dark { background: var(--ink); color: var(--white); }

/* ——— Sections ——— */
.section { padding: clamp(2.8rem, 6vw, 4.5rem) 0; }
.section-tint {
    background: linear-gradient(180deg, rgba(232, 236, 232, 0.55), rgba(246, 247, 245, 0.2));
    border-block: 1px solid var(--line);
}
.section h2 {
    font-family: var(--display);
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    margin: 0 0 0.4rem;
    letter-spacing: -0.025em;
}
.section .lead {
    color: var(--muted);
    margin: 0 0 1.7rem;
    max-width: 48ch;
    font-size: 1.02rem;
}
.section-head { margin-bottom: 0.25rem; }

/* ——— Pillars ——— */
.pillars {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.8rem;
    border-top: 1px solid var(--line);
}
.pillar {
    padding: 1.35rem 1.1rem 1.2rem 0;
    border-right: 1px solid var(--line);
    animation: fade-up 0.55s ease both;
}
.pillar:last-child { border-right: 0; }
.pillar:nth-child(2) { animation-delay: 0.06s; }
.pillar:nth-child(3) { animation-delay: 0.12s; }
.pillar:nth-child(4) { animation-delay: 0.18s; }
.pillar strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.02rem;
}
.pillar span { color: var(--muted); font-size: 0.94rem; line-height: 1.45; }

/* ——— Products ——— */
.product-grid {
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.35rem);
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
}
.product {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border: 1px solid rgba(20, 26, 23, 0.08);
    border-radius: calc(var(--radius) + 0.2rem);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(16, 25, 22, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    animation: fade-up 0.65s ease both;
}
.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(16, 25, 22, 0.12);
    border-color: rgba(224, 90, 36, 0.28);
}
.product-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 170, 110, 0.28), transparent 45%),
        linear-gradient(150deg, #4a5f54 0%, #24352d 48%, #15201b 100%);
}
.product-media::after {
    content: "";
    position: absolute;
    inset: auto 12% 14% 12%;
    height: 28%;
    border-radius: 40% 40% 20% 20%;
    background: linear-gradient(180deg, rgba(224, 90, 36, 0.35), rgba(90, 45, 20, 0.55));
    filter: blur(1px);
    opacity: 0.85;
    z-index: 1;
}
.product-media.has-cover::after {
    display: none;
}
.product-media img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product:hover .product-media img {
    transform: scale(1.07);
}
.product-media-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(16, 25, 22, 0) 45%, rgba(16, 25, 22, 0.28) 100%);
    pointer-events: none;
    opacity: 0.75;
    transition: opacity 0.28s ease;
}
.product:hover .product-media-shade {
    opacity: 0.95;
}

.product-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    max-width: calc(100% - 1.5rem);
}
.product-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.62rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--forest-deep);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 6px 16px rgba(16, 25, 22, 0.12);
    backdrop-filter: blur(6px);
}
.product-badge--featured {
    color: #fff;
    background: linear-gradient(135deg, var(--ember) 0%, var(--ember-deep) 100%);
    border-color: rgba(255, 255, 255, 0.18);
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.05rem 1.1rem 1.1rem;
}
.product-body h3 {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-meta {
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-tags {
    list-style: none;
    margin: 0.65rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.product-tags li {
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: #eef6f0;
    border: 1px solid #d4e8da;
    color: #2f6b45;
    font-size: 0.74rem;
    font-weight: 600;
}
.product-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(20, 26, 23, 0.08);
    min-width: 0;
}
.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    min-width: 0;
    overflow-wrap: anywhere;
}
.product-price-value {
    font-weight: 700;
    color: var(--ember);
    font-size: 1.18rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.product-price-unit {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 500;
}
.product-price--muted {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.35;
}
.product-cta {
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ember);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, color 0.22s ease;
}
.product:hover .product-cta {
    opacity: 1;
    transform: none;
}
.product-body .meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.price { font-weight: 700; color: var(--ember); font-size: 1.12rem; }

.category-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    margin-top: 0.5rem;
}
.category-tile {
    padding: 1.35rem 1.3rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.category-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(224, 90, 36, 0.3);
    box-shadow: var(--shadow);
}
.category-tile h3 {
    margin: 0 0 0.4rem;
    font-family: var(--display);
    font-size: 1.25rem;
}
.category-tile p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.45;
}

/* ——— Testimonials ——— */
.testimonials {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.testimonial {
    margin: 0;
    padding: 1.3rem 1.35rem 1.4rem;
    border-left: 3px solid var(--ember);
    background: var(--white);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: 0 1px 0 var(--line);
    animation: fade-up 0.55s ease both;
}
.testimonial:nth-child(2) { animation-delay: 0.08s; }
.testimonial:nth-child(3) { animation-delay: 0.16s; }
.testimonial:nth-child(4) { animation-delay: 0.24s; }
.testimonial .stars { display: flex; gap: 0.12rem; margin-bottom: 0.55rem; }
.testimonial .stars span { color: #c5d0c8; font-size: 1rem; line-height: 1; }
.testimonial .stars span.is-on { color: var(--ember); }
.testimonial p {
    margin: 0 0 0.9rem;
    color: var(--bark);
    line-height: 1.55;
    font-size: 1.02rem;
}
.testimonial footer { display: flex; flex-direction: column; gap: 0.1rem; }
.testimonial footer strong { font-size: 0.95rem; }
.testimonial footer span { color: var(--muted); font-size: 0.88rem; }

/* ——— Filters / forms ——— */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.filters select,
.filters input,
.form input,
.form textarea,
.form select {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.85rem;
    font: inherit;
    width: 100%;
}
.filters form { display: flex; flex-wrap: wrap; gap: 0.6rem; width: 100%; }
.filters select { width: auto; min-width: min(100%, 150px); flex: 1 1 150px; }

.form { display: grid; gap: 0.85rem; }
.form label { display: grid; gap: 0.35rem; font-size: 0.9rem; font-weight: 500; }
.form-grid { display: grid; gap: 0.85rem; grid-template-columns: 1fr 1fr; }

/* ——— Product detail ——— */
.product-detail {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    grid-template-columns: 1.05fr 1fr;
    align-items: start;
    padding: clamp(1.8rem, 4vw, 2.8rem) 0 3rem;
}
.product-visual {
    min-height: min(52vw, 460px);
    border-radius: 1.25rem;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 170, 110, 0.3), transparent 50%),
        linear-gradient(155deg, #4a5f54, #1c2a24 55%, #101916);
    box-shadow: var(--shadow);
}
.product-gallery-main {
    min-height: min(52vw, 460px);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #1c2a24;
    position: relative;
}
.product-gallery-slide {
    display: none;
    width: 100%;
    height: 100%;
    min-height: min(52vw, 460px);
}
.product-gallery-slide.is-active { display: block; }
.product-gallery-slide img,
.product-gallery-slide video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: min(52vw, 460px);
    object-fit: cover;
}
.product-gallery-thumbs {
    display: flex;
    gap: .55rem;
    margin-top: .75rem;
    flex-wrap: wrap;
}
.product-gallery-thumb {
    width: 72px;
    height: 54px;
    border: 2px solid transparent;
    border-radius: .55rem;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: #e8ddd1;
}
.product-gallery-thumb.is-active { border-color: var(--ember); }
.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.thumb-video {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: .85rem;
    color: #fff;
    background: rgba(0,0,0,.45);
}
.specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    margin: 1.2rem 0 1.5rem;
}
.spec { border-top: 1px solid var(--line); padding-top: 0.55rem; }
.spec small { display: block; color: var(--muted); }
.qty-row { display: flex; gap: 0.7rem; align-items: end; flex-wrap: wrap; }
.qty-row label { display: grid; gap: 0.35rem; font-size: 0.9rem; font-weight: 500; }
.qty-row input { width: 5.5rem; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.7rem; }

/* ——— Cart / checkout ——— */
.cart-table,
.summary {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
}
.cart-layout {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1.4fr 0.85fr;
    padding: 2rem 0 3rem;
}
.cart-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 1rem;
    align-items: center;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    min-width: 0;
}
.cart-line > div:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
}
.cart-line input[type="number"] {
    width: 100%;
    max-width: 5.5rem;
}
.summary dl { display: grid; gap: 0.55rem; margin: 0 0 1rem; }
.summary div { display: flex; justify-content: space-between; gap: 1rem; }
.summary .total {
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 1px solid var(--line);
    padding-top: 0.7rem;
}

/* ——— Thanks ——— */
.thanks-actions { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.thanks-pro { max-width: 42rem; text-align: left; }
.thanks-pro h1,
.thanks-pro .thanks-lead,
.thanks-pro .thanks-actions { text-align: center; }
.thanks-badge {
    display: inline-block;
    background: #e7f4ea;
    color: #2f7d4a;
    border: 1px solid #b7d8bf;
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.thanks-lead { color: var(--muted); line-height: 1.55; }
.thanks-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    margin: 1.3rem 0;
    display: grid;
    gap: 0.65rem;
}
.thanks-panel .row { display: flex; justify-content: space-between; gap: 1rem; }
.thanks-panel .row span { color: var(--muted); }
.thanks-panel .row strong { text-align: right; }
.thanks-panel .total {
    border-top: 1px solid var(--line);
    padding-top: 0.7rem;
    align-items: center;
}
.thanks-panel .total strong {
    font-family: var(--display);
    font-size: 1.35rem;
}
.thanks-steps {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.1rem 1rem 1.3rem;
    margin-bottom: 1.2rem;
}
.thanks-steps h2 { margin: 0 0 0.6rem; font-size: 1.05rem; }
.thanks-steps ol { margin: 0; padding-left: 1.1rem; color: var(--bark); line-height: 1.55; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

/* ——— About ——— */
.about-page { padding: 2.5rem 0 3.5rem; max-width: 920px; }
.about-hero { margin-bottom: 1.8rem; }
.about-hero .eyebrow {
    display: inline-block;
    color: var(--ember);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}
.about-hero h1 {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0 0 0.7rem;
    letter-spacing: -0.02em;
}
.about-lead {
    margin: 0;
    max-width: 38rem;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.55;
}
.about-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.2rem;
}
.about-block {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.15rem 1.2rem;
}
.about-block h2 {
    font-family: var(--display);
    font-size: 1.2rem;
    margin: 0 0 0.55rem;
}
.about-block p,
.about-block li {
    margin: 0 0 0.55rem;
    color: var(--bark);
    line-height: 1.55;
}
.about-block ul { margin: 0; padding-left: 1.1rem; }
.about-company {
    background: linear-gradient(180deg, #fff, #eef2ef);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.2rem 1.3rem;
}
.about-company h2 { font-family: var(--display); margin: 0 0 0.4rem; }
.about-company p { margin: 0 0 0.35rem; color: var(--bark); }
.about-company a { color: var(--ember); }

.accept-legal {
    display: flex !important;
    align-items: flex-start;
    gap: 0.65rem;
    font-weight: 500 !important;
    line-height: 1.45;
}
.accept-legal input { width: auto; margin-top: 0.2rem; }
.accept-legal a { color: var(--ember); text-decoration: underline; }

/* ——— Legal ——— */
.legal-page {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: 220px minmax(0, 1fr);
    padding: 2.2rem 0 3.5rem;
    align-items: start;
    min-width: 0;
}
.legal-page > * {
    min-width: 0;
}
.legal-nav {
    position: sticky;
    top: calc(var(--header-h) + 0.8rem);
    display: grid;
    gap: 0.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 0.7rem;
}
.legal-nav a {
    padding: 0.55rem 0.7rem;
    border-radius: 0.55rem;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.92rem;
}
.legal-nav a:hover,
.legal-nav a.active {
    background: rgba(224, 90, 36, 0.1);
    color: var(--ember);
}
.legal-content {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: clamp(1.15rem, 3vw, 1.6rem) clamp(1.15rem, 3vw, 1.7rem) 1.8rem;
}
.legal-header .eyebrow {
    display: inline-block;
    color: var(--ember);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.legal-header h1 {
    font-family: var(--display);
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}
.legal-body { line-height: 1.65; color: var(--bark); overflow-wrap: anywhere; word-break: break-word; }
.legal-body h2 {
    font-family: var(--display);
    font-size: 1.2rem;
    margin: 1.6rem 0 0.55rem;
    color: var(--ink);
}
.legal-body h3 { font-size: 1rem; margin: 1.1rem 0 0.4rem; }
.legal-body p,
.legal-body li { margin: 0 0 0.7rem; }
.legal-body ul,
.legal-body ol { padding-left: 1.2rem; margin: 0 0 0.9rem; }
.legal-body a { color: var(--ember); text-decoration: underline; }
.legal-note {
    margin-top: 1.4rem;
    padding: 0.85rem 1rem;
    border-radius: 0.7rem;
    background: var(--ash);
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-layout {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr);
    align-items: start;
}
.contact-form-panel h2,
.contact-card h2 {
    margin: 0 0 0.7rem;
    font-size: 1.05rem;
    font-family: var(--display);
}
.contact-form { margin-top: 0.8rem; }
.contact-card {
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 1rem 1.05rem;
    background: var(--white);
}
.contact-card ul { list-style: none; padding: 0; margin: 0; }
.contact-card li { margin: 0 0 0.45rem; line-height: 1.45; }

/* ——— Payment ——— */
.payment-page {
    padding: 3rem 0 4rem;
    max-width: 34rem;
    margin-inline: auto;
}
.payment-intro { text-align: center; margin-bottom: 1.5rem; }
.payment-intro .eyebrow {
    display: inline-block;
    color: var(--ember);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}
.payment-intro h1 {
    font-family: var(--display);
    font-size: clamp(1.7rem, 4vw, 2.2rem);
    margin: 0;
}
.payment-summary {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.1rem 1.2rem;
    margin-bottom: 1.2rem;
    display: grid;
    gap: 0.7rem;
}
.payment-summary .row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.95rem;
}
.payment-summary .row span { color: var(--muted); }
.payment-summary .row strong { text-align: right; }
.payment-summary .mono { font-family: ui-monospace, monospace; letter-spacing: 0.02em; }
.payment-summary .total {
    border-top: 1px solid var(--line);
    padding-top: 0.8rem;
    align-items: center;
}
.payment-summary .total strong {
    font-family: var(--display);
    font-size: 1.55rem;
}
.btn-pay { width: 100%; justify-content: center; padding: 0.95rem 1.1rem; font-size: 1.05rem; }
.payment-panel { margin-top: 1.2rem; }
.is-hidden { display: none !important; }
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 1rem 0;
}
.payment-method-btn {
    display: grid;
    gap: 0.35rem;
    justify-items: center;
    padding: 1rem 0.7rem;
    border-radius: 0.9rem;
    border: 1px solid var(--line);
    background: var(--white);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.payment-method-btn .icon { font-size: 1.5rem; line-height: 1; }
.payment-method-btn:hover,
.payment-method-btn.is-active {
    border-color: rgba(224, 90, 36, 0.45);
    box-shadow: 0 8px 24px rgba(16, 25, 22, 0.08);
    transform: translateY(-1px);
}
.payment-details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    margin-top: 0.4rem;
}
.payment-details h2 {
    font-family: var(--display);
    font-size: 1.15rem;
    margin: 0 0 0.55rem;
}
.payment-details pre,
.payment-contact details pre,
.payment-proof details pre {
    margin: 0;
    white-space: pre-wrap;
    font: inherit;
    color: var(--bark);
    line-height: 1.55;
}
.payment-proof {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.payment-proof .proof-instruction {
    margin: 0 0 0.85rem;
    font-weight: 600;
    font-size: 0.95rem;
}
.payment-proof details,
.payment-contact details {
    text-align: left;
    margin-top: 0.55rem;
}
.payment-proof summary,
.payment-contact summary {
    cursor: pointer;
    color: var(--muted);
    font-size: 0.85rem;
}
.payment-proof details pre,
.payment-contact details pre {
    margin-top: 0.6rem;
    background: var(--ash);
    border-radius: 0.7rem;
    padding: 0.85rem;
    font-size: 0.85rem;
}
.payment-contact {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
    text-align: center;
}
.payment-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin: 1rem 0;
}
.btn-whatsapp {
    background: #1f9e55;
    color: #fff;
    border: 0;
    border-radius: 0.65rem;
    padding: 0.7rem 1rem;
    font: inherit;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}
.btn-whatsapp:hover { background: #178546; color: #fff; }
.center { text-align: center; }
.note { font-size: 0.82rem; margin-top: 1rem; }
.back-link { margin-top: 1.4rem; }
.back-link a { color: var(--muted); font-size: 0.92rem; }
.back-link a:hover { color: var(--ember); }

/* ——— Footer ——— */
.site-footer {
    margin-top: clamp(2.5rem, 6vw, 4rem);
    background:
        radial-gradient(900px 320px at 8% 0%, rgba(224, 90, 36, 0.14), transparent 58%),
        radial-gradient(700px 280px at 92% 20%, rgba(44, 90, 70, 0.1), transparent 55%),
        linear-gradient(180deg, #1a2621 0%, #101916 100%);
    color: #eef2ef;
}

.footer-trust {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}
.footer-trust-inner {
    width: 100%;
}
.footer-trust-grid {
    list-style: none;
    margin: 0;
    padding: clamp(1.1rem, 2.5vw, 1.45rem) 0;
    width: 100%;
    display: grid;
    gap: clamp(0.75rem, 1.8vw, 1.1rem);
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.footer-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.7rem;
    min-width: 0;
    height: 100%;
    padding: 1rem 0.85rem;
    text-align: center;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.footer-trust-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(224, 90, 36, 0.22);
    transform: translateY(-2px);
}
.footer-trust-icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 0.85rem;
    background: rgba(224, 90, 36, 0.14);
    color: #ffb088;
    border: 1px solid rgba(224, 90, 36, 0.24);
}
.footer-trust-copy {
    display: grid;
    gap: 0.2rem;
    width: 100%;
}
.footer-trust-item strong {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}
.footer-trust-item span {
    display: block;
    font-size: 0.78rem;
    color: rgba(197, 208, 200, 0.88);
    line-height: 1.4;
}

.footer-body {
    padding: clamp(2.4rem, 5vw, 3.2rem) 0 clamp(1.8rem, 4vw, 2.4rem);
}
.footer-grid {
    display: grid;
    gap: clamp(1.6rem, 3vw, 2.4rem);
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.85fr)) minmax(0, 1.15fr);
    align-items: start;
}
.footer-brand-block { max-width: 24rem; }
.footer-tagline {
    margin: 0.85rem 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #b8c5bd;
}
.site-footer .brand-logo { margin-bottom: 0.15rem; }

.footer-contact {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #c5d0c8;
}
.footer-contact-icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    margin-top: 0.05rem;
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.05);
    color: #9aaba2;
}
.footer-contact a {
    color: #eef2ef;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.22);
    text-underline-offset: 0.15em;
    transition: color 0.18s ease, text-decoration-color 0.18s ease;
}
.footer-contact a:hover {
    color: #fff;
    text-decoration-color: rgba(255, 176, 136, 0.75);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.15rem;
}
.footer-social-link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #eef2ef !important;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.footer-social-link:hover {
    background: rgba(224, 90, 36, 0.16);
    border-color: rgba(224, 90, 36, 0.35);
    color: #fff !important;
    transform: translateY(-1px);
}

.footer-nav h3 {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}
.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}
.footer-nav a {
    display: inline-flex;
    align-items: center;
    color: #b8c5bd;
    font-size: 0.9rem;
    transition: color 0.18s ease, transform 0.18s ease;
}
.footer-nav a:hover {
    color: #fff;
    transform: translateX(3px);
}
.footer-nav a::before {
    content: "";
    width: 0;
    height: 1px;
    margin-right: 0;
    background: var(--ember);
    transition: width 0.18s ease, margin-right 0.18s ease;
}
.footer-nav a:hover::before {
    width: 0.55rem;
    margin-right: 0.45rem;
}

.footer-newsletter-card {
    padding: 1.15rem 1.15rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.footer-newsletter-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    color: #fff;
}
.footer-newsletter-card p {
    margin: 0 0 0.9rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: #b8c5bd;
}
.footer-newsletter-form { display: grid; gap: 0.55rem; }
.footer-newsletter-form input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.65rem;
    padding: 0.72rem 0.85rem;
    font: inherit;
    background: rgba(8, 12, 10, 0.35);
    color: #fff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.footer-newsletter-form input:focus {
    outline: none;
    border-color: rgba(224, 90, 36, 0.55);
    box-shadow: 0 0 0 3px rgba(224, 90, 36, 0.15);
}
.footer-newsletter-form input::placeholder { color: #8fa097; }
.footer-newsletter-form .btn {
    width: 100%;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(224, 90, 36, 0.22);
}
.footer-newsletter-error { color: #f0b4a8; font-size: 0.85rem; margin: 0.45rem 0 0; }

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
    padding: 1rem 0 1.25rem;
}
.footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-copy {
    margin: 0;
    color: #8fa097;
    font-size: 0.82rem;
    line-height: 1.45;
}
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.9rem;
}
.footer-legal a {
    color: #9aaba2;
    font-size: 0.82rem;
    transition: color 0.18s ease;
}
.footer-legal a:hover { color: #fff; }

.site-footer a { text-decoration: none; }

.pagination { display: flex; gap: 0.4rem; margin-top: 1.5rem; flex-wrap: wrap; }
.pagination a,
.pagination span {
    padding: 0.45rem 0.7rem;
    border-radius: 0.45rem;
    border: 1px solid var(--line);
    background: var(--white);
}

/* ——— Cookie ——— */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: rgba(16, 25, 22, 0.97);
    color: #eef2ef;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
}
.cookie-inner {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cookie-banner p {
    margin: 0;
    max-width: 48rem;
    line-height: 1.45;
    color: #c5d0c8;
}
.cookie-banner a { color: #fff; text-decoration: underline; display: inline; }
.cookie-actions { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.cookie-refuse { color: #eef2ef !important; border-color: rgba(255, 255, 255, 0.25) !important; }

/* ——— Motion ——— */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
    .footer-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-brand-block,
    .footer-newsletter { grid-column: 1 / -1; }
    .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pillar:nth-child(2) { border-right: 0; }
    .pillar:nth-child(1),
    .pillar:nth-child(2) { border-bottom: 1px solid var(--line); }
    .cart-layout { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    :root {
        --header-h: 4.5rem;
        --header-toolbar-w: 6.85rem;
        --header-tool-size: 2.625rem;
    }
    .site-top {
        overflow: visible;
    }
    .site-header .wrap.header-shell {
        padding-inline: max(0.65rem, env(safe-area-inset-left, 0px)) max(0.65rem, env(safe-area-inset-right, 0px));
    }
    .header-shell {
        display: grid;
        grid-template-columns: minmax(0, 1fr) var(--header-toolbar-w);
        grid-template-areas: "logo actions";
        align-items: center;
        column-gap: 0.4rem;
    }
    .header-shell > .brand-logo {
        grid-area: logo;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        flex-shrink: 1;
    }
    .brand-logo--header {
        min-width: 0;
        max-width: 100%;
        flex-shrink: 1;
    }
    .brand-logo--header .brand-logo__name {
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    .header-shell > .header-actions {
        grid-area: actions;
        justify-self: end;
        width: var(--header-toolbar-w);
        min-width: var(--header-toolbar-w);
        max-width: var(--header-toolbar-w);
    }
    .header-shell > .header-panel {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 45;
    }
    .header-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        padding: 0.28rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(20, 26, 23, 0.08);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.85),
            0 10px 28px rgba(16, 25, 22, 0.1);
    }
    .nav-toggle {
        display: flex;
        visibility: visible;
        opacity: 1;
        flex: 0 0 var(--header-tool-size);
        width: var(--header-tool-size);
        height: var(--header-tool-size);
        min-width: var(--header-tool-size);
        border: 1px solid rgba(20, 26, 23, 0.07);
        border-radius: 0.72rem;
        background: linear-gradient(180deg, #ffffff 0%, #f3f5f3 100%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
        transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    }
    .nav-toggle:hover {
        background: #fff;
        border-color: rgba(224, 90, 36, 0.28);
    }
    .nav-toggle:active {
        transform: scale(0.97);
    }
    .header-cart {
        flex: 0 0 var(--header-tool-size);
        width: var(--header-tool-size);
        height: var(--header-tool-size);
        min-width: var(--header-tool-size);
        padding: 0;
        justify-content: center;
        align-items: center;
        border-radius: 0.72rem;
        color: #ffffff !important;
        background: linear-gradient(155deg, #f06a32 0%, #d04e1c 52%, var(--ember-deep) 100%);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.34),
            inset 0 -1px 0 rgba(0, 0, 0, 0.08),
            0 4px 14px rgba(224, 90, 36, 0.42);
        transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }
    .header-cart::after {
        content: "";
        position: absolute;
        inset: 1px;
        border-radius: calc(0.72rem - 1px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        pointer-events: none;
    }
    .header-cart:hover {
        transform: translateY(-1px);
        background: linear-gradient(155deg, #f57642 0%, #d95828 52%, #c44a1a 100%);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.38),
            inset 0 -1px 0 rgba(0, 0, 0, 0.08),
            0 6px 16px rgba(224, 90, 36, 0.48);
    }
    .header-cart:active {
        transform: translateY(0) scale(0.97);
    }
    .header-cart.is-active {
        background: linear-gradient(155deg, #2a3530 0%, var(--ink) 100%);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.14),
            0 4px 14px rgba(16, 25, 22, 0.28);
    }
    .header-cart .cart-link__label {
        display: none;
    }
    .header-cart .cart-icon {
        width: 1.45rem;
        height: 1.45rem;
        min-width: 1.45rem;
        min-height: 1.45rem;
    }
    .header-cart .cart-icon__body {
        stroke-width: 2.45;
    }
    .header-cart .cart-link__badge {
        z-index: 2;
        position: absolute;
        top: -0.28rem;
        right: -0.28rem;
        min-width: 1.2rem;
        height: 1.2rem;
        padding: 0 0.3rem;
        font-size: 0.68rem;
        font-weight: 800;
        color: var(--ember-deep);
        background: #ffffff;
        border: 2px solid #ffffff;
        box-shadow: 0 3px 10px rgba(16, 25, 22, 0.2);
    }
    body.nav-open .nav-toggle {
        background: rgba(224, 90, 36, 0.1);
        border-color: rgba(224, 90, 36, 0.35);
        color: var(--ember);
    }
    .header-panel {
        flex: none;
        width: 100%;
        box-sizing: border-box;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin: 0;
        padding: 0 1rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        background: rgba(246, 247, 245, 0.98);
        border-bottom: 0 solid var(--line);
        box-shadow: none;
        transition:
            max-height 0.32s ease,
            opacity 0.22s ease,
            padding 0.22s ease,
            border-width 0.22s ease,
            box-shadow 0.22s ease;
    }
    body.nav-open .header-panel {
        max-height: min(78dvh, 32rem);
        overflow-y: auto;
        overscroll-behavior: contain;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 0.85rem 1rem 1.25rem;
        border-bottom-width: 1px;
        box-shadow: 0 18px 40px rgba(16, 25, 22, 0.12);
    }
    .nav-primary {
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.35rem;
        border-radius: 1rem;
        background: var(--white);
    }
    .nav-link {
        justify-content: flex-start;
        width: 100%;
        padding: 0.85rem 1rem;
        border-radius: 0.75rem;
        font-size: 1rem;
    }
    .nav-link.is-active {
        box-shadow: none;
    }
    .header-aside {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .header-switches {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
        padding: 0.85rem;
        border-radius: 1rem;
        background: var(--white);
        border: 1px solid var(--line);
    }
    .locale-switch select,
    .country-switch select,
    .header-switches select { max-width: none; width: 100%; }

    .product-detail,
    .cart-layout,
    .form-grid,
    .testimonials,
    .about-grid,
    .contact-grid,
    .contact-layout { grid-template-columns: 1fr; }

    .legal-page { grid-template-columns: 1fr; }
    .legal-nav {
        position: static;
        display: flex;
        gap: 0.35rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 0.55rem;
        max-width: 100%;
        overscroll-behavior-x: contain;
    }
    .legal-nav a {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .hero { min-height: min(86vh, 700px); }
    .hero-media img { object-position: 78% center; }
    .cart-line {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }
}

@media (max-width: 640px) {
    :root { --header-h: 4.5rem; }
    .brand-logo--header .brand-logo__mark {
        max-height: 2.65rem;
        max-width: 2.65rem;
    }
    .brand-logo--header .brand-logo__name {
        font-size: clamp(1rem, 4.8vw, 1.45rem);
    }
    .pillars { grid-template-columns: 1fr; }
    .pillar {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding-right: 0;
    }
    .pillar:last-child { border-bottom: 0; }
    .specs { grid-template-columns: 1fr; }
    .product-visual { min-height: 260px; }
    .product-gallery-main,
    .product-gallery-slide,
    .product-gallery-slide img,
    .product-gallery-slide video {
        min-height: min(72vw, 360px);
    }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-trust-grid { grid-template-columns: 1fr; max-width: none; margin-inline: 0; }
    .footer-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .product-cta { display: none; }
    .product-footer { align-items: flex-start; }
    .product:hover { transform: translateY(-3px); }
    .payment-methods { grid-template-columns: 1fr 1fr; }
    .payment-contact-actions { flex-direction: column; }
    .payment-contact-actions .btn,
    .payment-contact-actions .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    .cookie-inner { flex-direction: column; align-items: stretch; }
    .cookie-actions { width: 100%; }
    .cookie-actions .btn { flex: 1; }
    .thanks-panel .row { flex-direction: column; gap: 0.15rem; }
    .thanks-panel .row strong { text-align: left; }
    .filters select { flex: 1 1 100%; min-width: 0; }
    .summary div,
    .thanks-panel .row {
        flex-wrap: wrap;
    }
    .hero-inner { padding-bottom: 2.2rem; }
    .section { padding: clamp(2rem, 5vw, 3rem) 0; }
}

@media (max-width: 480px) {
    .nav a { font-size: 1rem; }
    .cart-line {
        grid-template-columns: 1fr;
    }
    .cart-line input[type="number"] {
        max-width: 100%;
    }
    .qty-row {
        flex-direction: column;
        align-items: stretch;
    }
    .qty-row input,
    .qty-row .btn {
        width: 100%;
    }
    .btn {
        justify-content: center;
    }
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 400px) {
    .hero h1 { font-size: 2.55rem; }
    .hero-media img { object-position: 85% center; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .payment-methods { grid-template-columns: 1fr; }
}
