/* Divergente storefront — tema oscuro, tipografía Space Grotesk + DM Sans */
:root {
    --bg: #0a0a0a;
    --fg: #f4f4f4;
    --muted: #9a9a9a;
    --line: #2a2a2a;
    --soft: #131313;
    --accent: #e8d4b8;
    --accent-fg: #0a0a0a;
    --font-display: "Space Grotesk", "DM Sans", system-ui, sans-serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --radius: 14px;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
    --max: 1180px;
    --shop-max: 1440px;
    --gutter: clamp(1rem, 4vw, 2.5rem);
    --focus-ring: rgba(232, 212, 184, 0.35);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    color-scheme: dark;
}

body.site {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--fg);
    letter-spacing: -0.01em;
    line-height: 1.5;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
}

.main {
    min-height: 50vh;
}

.site-main {
    width: 100%;
    overflow-x: clip;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(11, 11, 11, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    padding-top: env(safe-area-inset-top, 0px);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 42;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header__bar {
    position: relative;
    z-index: 44;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.75rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}

.header__logo-img {
    display: block;
    height: clamp(1.65rem, 4.5vw, 2.15rem);
    width: auto;
    max-width: min(220px, 56vw);
    object-fit: contain;
    object-position: left center;
    /* PNG en blanco o monocromo → se ve blanco sobre header oscuro */
    filter: brightness(0) invert(1);
}

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem 0.75rem;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.35rem 0.5rem;
    border-radius: 999px;
    color: var(--fg);
}

.nav__icon {
    flex-shrink: 0;
    opacity: 0.85;
}

.nav__link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.nav__link--pill {
    border: 1px solid var(--fg);
    padding: 0.35rem 0.85rem;
}

.nav__link--pill:hover {
    background: var(--fg);
    color: var(--bg);
    text-decoration: none;
}

.nav__cart {
    position: relative;
}

.nav__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    margin-left: 0.35rem;
    border-radius: 999px;
    background: var(--fg);
    color: var(--bg);
    font-size: 0.65rem;
    font-weight: 700;
}

.nav__locale {
    border: 1px solid var(--line);
    padding: 0.35rem 0.65rem;
}

.nav__form {
    display: inline;
}

.nav__btn {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.35rem 0.5rem;
}

.nav__btn:hover {
    color: var(--fg);
}

.header__burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.header__burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--fg);
}

@media (max-width: 860px) {
    .header__burger {
        display: inline-flex;
        flex-shrink: 0;
    }

    .header__logo {
        font-size: 1.05rem;
        letter-spacing: 0.12em;
        max-width: calc(100vw - 8rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav {
        position: fixed;
        top: calc(3.35rem + env(safe-area-inset-top, 0px));
        left: max(var(--gutter), env(safe-area-inset-left, 0px));
        right: max(var(--gutter), env(safe-area-inset-right, 0px));
        max-height: calc(100vh - 4.5rem - env(safe-area-inset-top, 0px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        z-index: 45;
        background: var(--bg);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 0.6rem;
        flex-direction: column;
        align-items: stretch;
        display: none;
        gap: 0.1rem;
    }

    .nav.is-open {
        display: flex;
    }

    .nav__link {
        padding: 0.8rem 0.85rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        border-radius: 12px;
        -webkit-tap-highlight-color: transparent;
    }

    .nav__link:active {
        background: var(--soft);
    }

    .nav__link--pill {
        justify-content: center;
        margin-top: 0.2rem;
    }

    .nav__locale {
        justify-content: center;
        margin-top: 0.25rem;
    }

    .nav__btn {
        width: 100%;
        text-align: left;
        padding: 0.8rem 0.85rem;
        min-height: 48px;
        border-radius: 12px;
        -webkit-tap-highlight-color: transparent;
    }

    .nav__form {
        display: block;
        width: 100%;
    }
}

@supports (height: 100dvh) {
    @media (max-width: 860px) {
        .nav {
            max-height: calc(100dvh - 4.5rem - env(safe-area-inset-top, 0px));
        }
    }
}

/* Flash */
.flash {
    max-width: var(--max);
    margin: 0.75rem auto 0;
    padding: 0.75rem var(--gutter);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.flash--ok {
    background: var(--soft);
    border: 1px solid var(--line);
}

.flash--err {
    background: rgba(120, 32, 32, 0.28);
    border: 1px solid rgba(220, 100, 100, 0.45);
    color: #f5d0d0;
}

/* Type */
.display {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.08;
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    margin: 0 0 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: manual;
    max-width: 100%;
}

.display--sm {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 0.75rem;
    max-width: 100%;
    overflow-wrap: break-word;
    line-height: 1.35;
}

@media (max-width: 520px) {
    .eyebrow {
        letter-spacing: 0.12em;
        font-size: 0.68rem;
    }
}

.lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: min(46ch, 100%);
    margin: 0 0 1.25rem;
    overflow-wrap: break-word;
    line-height: 1.55;
}

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

.small {
    font-size: 0.85rem;
}

/* WhatsApp floating action button */
.whatsapp-fab {
    position: fixed;
    right: clamp(0.75rem, 3vw, 1.5rem);
    bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem);
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.45);
}

.whatsapp-fab svg {
    width: 26px;
    height: 26px;
    display: block;
}

@media (max-width: 520px) {
    .whatsapp-fab {
        width: 64px;
        height: 64px;
    }
    .whatsapp-fab svg {
        width: 30px;
        height: 30px;
    }
}

.strong {
    font-weight: 600;
}

/* Hero */
.hero--home {
    padding: clamp(2.5rem, 8vw, 5rem) var(--gutter);
}

.hero__grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.hero__grid > * {
    min-width: 0;
}

.hero__copy {
    max-width: 100%;
}

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

.hero__visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero__shape {
    width: min(420px, 100%);
    aspect-ratio: 1;
    border-radius: 28px;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.14) 0, transparent 48%),
        linear-gradient(145deg, #161616, #0a0a0a);
    box-shadow: var(--shadow);
}

.hero__badge {
    position: absolute;
    bottom: 10%;
    left: 6%;
    max-width: min(220px, calc(100% - 1.5rem));
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.65rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    box-shadow: var(--shadow);
    text-align: left;
}

@media (max-width: 520px) {
    .hero__badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: 8%;
        max-width: min(260px, calc(100% - 2rem));
    }
}

.hero__badge-n {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero__badge-t {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.35rem;
}

.home-spotlight {
    max-width: var(--max);
    width: 100%;
    margin: 0 auto 2rem;
    padding: clamp(2rem, 6vw, 3.75rem) clamp(1.25rem, 4vw, 2.5rem);
    box-sizing: border-box;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 4px);
    background: linear-gradient(165deg, var(--soft) 0%, var(--bg) 60%);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.home-spotlight__inner {
    max-width: 38rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 0.25rem;
}

.home-spotlight__title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.18;
    margin: 0 0 0.85rem;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.home-spotlight__text {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
    overflow-wrap: break-word;
    text-wrap: pretty;
}

#colecciones {
    scroll-margin-top: 5rem;
}

.home-dual-cta {
    max-width: var(--max);
    margin: 0 auto 2.5rem;
    padding: 0 var(--gutter);
}

.home-dual-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 720px) {
    .home-dual-cta__grid {
        grid-template-columns: 1fr;
    }
}

.home-cta-card {
    border-radius: calc(var(--radius) + 4px);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    min-height: 220px;
    border: 1px solid var(--line);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-cta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
}

.home-cta-card--dark {
    background: linear-gradient(155deg, #161616 0%, #242424 100%);
    color: #f5f5f5;
    border-color: #333333;
}

.home-cta-card--dark .home-cta-card__text {
    color: rgba(255, 255, 255, 0.72);
}

.home-cta-card--dark .home-cta-card__title {
    color: #fff;
}

.home-cta-card--light {
    background: linear-gradient(165deg, var(--soft) 0%, var(--bg) 100%);
}

.home-cta-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
    overflow-wrap: break-word;
}

.home-cta-card__text {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--muted);
    overflow-wrap: break-word;
}

.home-visual {
    max-width: var(--max);
    margin: 0 auto 3rem;
    padding: 0 var(--gutter);
}

.home-visual__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    overflow: hidden;
    background: var(--bg);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
}

@media (max-width: 860px) {
    .home-visual__grid {
        grid-template-columns: 1fr;
    }
}

.home-visual__media {
    min-height: 280px;
    background: linear-gradient(145deg, #1a1a1a, #101010);
}

.home-visual__frame {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    position: relative;
}

.home-visual__img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    animation: homeKenBurns 18s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
    .home-visual__img {
        animation: none;
    }

    .shop-hero__tile {
        animation: none;
    }

    .card--product-shop,
    .card__media--shop img,
    .card__more--shop .card__more-arrow {
        transition: none;
    }

    .card--product-shop:hover {
        transform: none;
    }

    .card--product-shop:hover .card__media--shop img {
        transform: none;
    }

    .card--product-shop:hover .card__more--shop .card__more-arrow {
        transform: none;
    }
}

@keyframes homeKenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.06) translate(-2%, 1%);
    }
}

.home-visual__copy {
    padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 2.75rem) 0;
}

@media (max-width: 860px) {
    .home-visual__copy {
        padding: 0 clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
    }
}

.home-visual__title {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
    line-height: 1.12;
    overflow-wrap: break-word;
}

.home-visual__text {
    margin: 0 0 1.1rem;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 42ch;
    overflow-wrap: break-word;
}

.home-motion {
    position: relative;
    max-width: var(--max);
    margin: 0 auto 2.5rem;
    padding: 0 var(--gutter);
    min-height: min(52vh, 520px);
    border-radius: calc(var(--radius) + 6px);
    overflow: hidden;
    border: 1px solid #2a2a2a;
    background: #0a0a0a;
}

.home-motion__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: top;
}

.home-motion__overlay {
    position: relative;
    z-index: 1;
    min-height: min(52vh, 520px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(2rem, 6vw, 4rem) var(--gutter);
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.75) 100%);
}

.home-motion__eyebrow {
    color: rgba(255, 255, 255, 0.55);
}

.home-motion__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.35rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
    max-width: 16ch;
    line-height: 1.1;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.home-motion__text {
    margin: 0 0 1.35rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
    line-height: 1.55;
    max-width: 36ch;
    overflow-wrap: break-word;
}

.home-strip {
    max-width: var(--max);
    margin: 0 auto 2.5rem;
    padding: 0 var(--gutter);
}

.home-strip__list {
    list-style: none;
    margin: 0;
    padding: 1rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 2rem;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.home-strip__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg);
}

.home-strip__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fg);
    flex-shrink: 0;
}

@media (max-width: 520px) {
    .home-strip__list {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Sections */
.section {
    padding: 2.5rem var(--gutter) 3.5rem;
    max-width: var(--max);
    margin: 0 auto;
}

.section--tight {
    padding-top: 0;
}

.section__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 1.25;
}

.section__link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Grids */
.grid {
    display: grid;
    gap: 1.25rem;
}

.grid--collections {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

.grid--products {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

/* Cards */
.card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
    background: var(--bg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card--collection {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    min-height: 240px;
    min-width: 0;
    padding: 1.35rem 1.25rem;
    text-decoration: none;
    background: linear-gradient(165deg, #181818 0%, var(--soft) 55%, var(--bg) 100%);
}

.card__excerpt {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.5;
    margin-top: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card__cta {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg);
    overflow-wrap: break-word;
    line-height: 1.3;
}

@media (max-width: 400px) {
    .card__cta {
        letter-spacing: 0.08em;
    }
}

.card__kicker {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.card__title {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    font-weight: 600;
    line-height: 1.2;
    overflow-wrap: break-word;
    max-width: 100%;
}

.card__media {
    aspect-ratio: 1;
    background: var(--soft);
    overflow: hidden;
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.card:hover .card__media img {
    transform: scale(1.04);
}

.card__body {
    padding: 1rem 1rem 1.15rem;
}

.card__name {
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.35rem;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 1.3;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

.price--lg {
    font-size: 1.05rem;
}

.price__compare {
    text-decoration: line-through;
    color: var(--muted);
}

.price__now {
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font: inherit;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
}

.btn--primary {
    background: var(--fg);
    color: var(--bg);
}

.btn--primary:hover {
    opacity: 0.92;
}

.btn--ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--fg);
}

.btn--ghost:hover {
    border-color: var(--fg);
}

.btn--invert {
    background: #e8e8e8;
    color: #0a0a0a;
    border-color: #e8e8e8;
}

.btn--invert:hover {
    opacity: 0.92;
    color: #0a0a0a;
}

.btn--on-dark {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn--on-dark:hover {
    background: #f2f2f2;
    color: #0a0a0a;
    border-color: #f2f2f2;
}

.btn--wa {
    background: #25d366;
    color: #fff;
    border-color: transparent;
}

.btn--wa:hover {
    opacity: 0.94;
    color: #fff;
}

.btn--block {
    width: 100%;
}

/* Page */
.page-head {
    max-width: var(--max);
    margin: 0 auto;
    padding: 2rem var(--gutter) 1.5rem;
}

.page-head--shop {
    padding-bottom: 1.25rem;
}

.page-head--shop .display {
    margin-bottom: 0.35rem;
}

.page-head__lead {
    margin: 0.35rem 0 0;
    max-width: min(52ch, 100%);
}

.page-head--contact .display {
    margin-bottom: 0.5rem;
}

.page-head--contact {
    padding-bottom: 1rem;
}

.page-head__back {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 1rem;
}

.page-head__back:hover {
    color: var(--fg);
}

.collection-lead {
    margin-top: 0.85rem;
    max-width: min(62ch, 100%);
    overflow-wrap: break-word;
}

.grid--products-padded {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter) 2.5rem;
}

.shop-page {
    overflow-x: hidden;
}

/* Hero tienda — canvas abstracto */
.shop-hero--motion {
    position: relative;
    border-bottom: 1px solid var(--line);
    background: #050505;
}

.shop-hero__motion {
    position: relative;
    max-width: var(--max);
    margin: 0 auto;
    min-height: clamp(280px, 42vh, 440px);
    overflow: hidden;
}

.shop-hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.shop-hero__overlay {
    position: relative;
    z-index: 1;
    min-height: clamp(280px, 42vh, 440px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(2rem, 6vw, 3.5rem) var(--gutter);
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.15) 0%,
        rgba(5, 5, 5, 0.55) 45%,
        rgba(5, 5, 5, 0.92) 100%
    );
}

.shop-hero--motion .shop-hero__eyebrow {
    margin: 0 0 0.65rem;
    color: rgba(255, 255, 255, 0.5);
}

.shop-hero--motion .shop-hero__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3rem, 11vw, 6.5rem);
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #fff;
    max-width: 14ch;
}

.shop-hero--motion .shop-hero__lead {
    margin: 1.1rem 0 0;
    font-size: clamp(0.92rem, 2vw, 1.08rem);
    line-height: 1.65;
    color: rgba(242, 242, 242, 0.58);
    max-width: 40ch;
}

/* Layout tienda: filtros en columna (no solapan productos) */
.shop-layout {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
}

@media (min-width: 901px) {
    .shop-layout {
        grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
        gap: clamp(1.5rem, 3vw, 2.75rem);
        padding-top: clamp(1.5rem, 3vw, 2.25rem);
    }
}

.shop-filters {
    position: relative;
    z-index: 2;
    background: var(--bg);
}

@media (min-width: 901px) {
    .shop-filters {
        position: sticky;
        top: calc(3.65rem + env(safe-area-inset-top, 0px));
        align-self: start;
        max-height: calc(100vh - 5rem - env(safe-area-inset-top, 0px));
        overflow-y: auto;
        padding-bottom: 1.5rem;
        scrollbar-width: thin;
    }
}

.shop-filters__inner {
    padding: 1.15rem 0 1.25rem;
    border-bottom: 1px solid var(--line);
}

@media (min-width: 901px) {
    .shop-filters__inner {
        padding: 0 0 1rem;
        border-bottom: none;
        border-right: 1px solid var(--line);
        padding-right: 1.25rem;
    }
}

.shop-filters__label {
    margin: 0 0 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.shop-pills--vertical {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.4rem;
}

.shop-pills--vertical .shop-pill {
    justify-content: flex-start;
    text-align: left;
}

.shop-filters__meta {
    margin: 1rem 0 0;
}

.shop-filters__select {
    margin: 1rem 0 0;
}

@media (min-width: 901px) {
    .shop-filters__select {
        display: none;
    }
}

.shop-main {
    min-width: 0;
}

@media (max-width: 900px) {
    .shop-pills--vertical {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.35rem;
        -webkit-overflow-scrolling: touch;
        mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
    }

    .shop-pills--vertical .shop-pill {
        flex-shrink: 0;
    }
}

.shop-toolbar__select {
    margin: 0;
    flex-shrink: 0;
}

.shop-toolbar__select-label {
    margin: 0;
}

.input--shop-select {
    min-width: min(200px, 42vw);
    padding: 0.55rem 2rem 0.55rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 999px;
    background: var(--soft);
    cursor: pointer;
}

@media (min-width: 901px) {
    .shop-toolbar__select {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-hero__canvas {
        display: none;
    }
}

.shop-collections-strip {
    margin: 0;
    padding: 2rem 0 clamp(3.5rem, 9vw, 5rem);
    border-top: 1px solid var(--line);
}

.shop-collections-strip__head {
    padding: 2rem 0 1.25rem;
}

.shop-collections-strip__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.shop-collections-strip__tiles {
    gap: 0.65rem;
}

.shop-hero {
    position: relative;
    margin: 0 auto 0;
    padding: clamp(2.25rem, 7vw, 4rem) var(--gutter) clamp(2rem, 5vw, 3.25rem);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, var(--soft) 0%, var(--bg) 42%, var(--bg) 100%);
    overflow: hidden;
}

.shop-hero__glow {
    position: absolute;
    top: -40%;
    right: -15%;
    width: min(520px, 90vw);
    height: min(520px, 90vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 68%);
    pointer-events: none;
}

.shop-hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
}

.shop-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 360px);
    gap: clamp(1.75rem, 5vw, 3.25rem);
    align-items: center;
}

.shop-hero__copy {
    min-width: 0;
}

.shop-hero__eyebrow {
    margin-bottom: 0.65rem;
}

.shop-hero__title {
    margin-bottom: 0.75rem;
    max-width: 14ch;
}

.shop-hero__lead {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: min(40ch, 100%);
    overflow-wrap: break-word;
}

.shop-hero__chips {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
}

.shop-hero__chip {
    margin: 0;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

.shop-hero__aside {
    min-width: 0;
}

.shop-hero__mosaic {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    grid-template-rows: 1fr 0.72fr;
    gap: 0.65rem;
    min-height: clamp(210px, 32vw, 340px);
}

.shop-hero__tile {
    display: block;
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--line);
    background: linear-gradient(148deg, #1c1c1c 0%, var(--soft) 52%, #0e0e0e 100%);
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    animation: shopHeroFloat 8s ease-in-out infinite;
}

.shop-hero__tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -14deg,
        transparent,
        transparent 7px,
        rgba(255, 255, 255, 0.03) 7px,
        rgba(255, 255, 255, 0.03) 8px
    );
    pointer-events: none;
}

.shop-hero__tile--a {
    grid-row: span 2;
    animation-delay: 0s;
}

.shop-hero__tile--b {
    animation-delay: 0.45s;
}

.shop-hero__tile--c {
    animation-delay: 0.9s;
}

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

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

@media (max-width: 900px) {
    .shop-hero__grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .shop-hero__mosaic {
        max-width: 320px;
        margin: 0 auto;
        min-height: 220px;
    }
}

/* Legacy toolbar (ya no se usa en shop/index; mantener por compatibilidad) */
.shop-toolbar {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1rem var(--gutter) 1.15rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1.25rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.shop-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    flex: 1;
}

@media (max-width: 640px) {
    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-toolbar__meta {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .shop-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0.35rem;
        margin-bottom: -0.35rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
    }

    .shop-pill {
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .shop-grid {
        gap: 1.3rem;
    }
}

.shop-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.05rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--fg);
    border: 1px solid var(--line);
    background: var(--bg);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.shop-pill:hover {
    border-color: var(--fg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.shop-pill.is-active {
    background: var(--fg);
    color: var(--bg);
    border-color: var(--fg);
}

.shop-pill:focus-visible {
    outline: 2px solid var(--fg);
    outline-offset: 2px;
}

.shop-toolbar__meta {
    margin: 0;
    flex-shrink: 0;
}

.shop-toolbar__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.95rem;
    border-radius: 999px;
    background: var(--soft);
    border: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.shop-toolbar__count {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
}

.shop-catalog {
    width: 100%;
    margin: 0;
    padding: clamp(1.25rem, 3vw, 1.75rem) 0 2.5rem;
    box-sizing: border-box;
}

@media (min-width: 901px) {
    .shop-catalog {
        padding-top: 0;
        padding-bottom: 3.75rem;
    }
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 268px), 1fr));
    gap: clamp(1.35rem, 3.2vw, 1.85rem);
}

.shop-empty {
    text-align: center;
    padding: clamp(2.5rem, 6vw, 3.85rem) var(--gutter);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    background: linear-gradient(165deg, var(--soft) 0%, var(--bg) 52%);
    margin-top: 0.5rem;
    box-shadow: 0 28px 64px -36px rgba(0, 0, 0, 0.65);
}

.shop-empty__mark {
    width: 3.1rem;
    height: 3.1rem;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    border: 2px solid var(--line);
    position: relative;
    opacity: 0.88;
    background: var(--bg);
}

.shop-empty__mark::before,
.shop-empty__mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.4rem;
    height: 2px;
    background: var(--muted);
    transform: translate(-50%, -50%) rotate(45deg);
}

.shop-empty__mark::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.shop-empty__title {
    font-family: var(--font-display);
    font-size: clamp(1.28rem, 2.8vw, 1.6rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 0.6rem;
    line-height: 1.2;
}

.shop-empty__text {
    margin: 0 0 0.5rem;
    color: var(--fg);
    font-size: 1.02rem;
    font-weight: 500;
}

.shop-empty__help {
    margin: 0 0 1.6rem;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.55;
    max-width: 44ch;
    margin-left: auto;
    margin-right: auto;
}

.shop-empty__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0.9rem;
    justify-content: center;
    align-items: center;
}

.card--product-shop {
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--line);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.card--product-shop:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.5);
    border-color: #3d3d3d;
}

.card__media--shop {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(160deg, #141414, #0a0a0a);
}

.card__media--shop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card--product-shop:hover .card__media--shop::after {
    opacity: 1;
}

.card__media--shop img {
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card--product-shop:hover .card__media--shop img {
    transform: scale(1.05);
}

.card__badge--sale {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 2;
    padding: 0.28rem 0.55rem;
    border-radius: 6px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--fg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.card__body--shop {
    padding: 1.15rem 1.2rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.card__material {
    margin: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.3;
    overflow-wrap: break-word;
}

.card__name--shop {
    display: block;
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0;
    text-decoration: none;
    color: var(--fg);
    background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
    transition: background-size 0.28s ease, color 0.2s ease;
    width: fit-content;
    max-width: 100%;
}

.card__name--shop:hover {
    background-size: 100% 1px;
}

.price--shop {
    margin-top: 0.15rem;
    font-size: 0.95rem;
}

.price--shop .price__cop {
    font-weight: 600;
    font-size: 0.78em;
    color: var(--muted);
}

.card__more--shop {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--line);
    width: 100%;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}

.card__more--shop .card__more-arrow {
    transition: transform 0.2s ease;
}

.card--product-shop:hover .card__more--shop .card__more-arrow {
    transform: translateX(4px);
}

.card__more {
    display: inline-block;
    margin-top: 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--muted);
}

.card__more:hover {
    color: var(--fg);
}

.contact-layout {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter) 3.5rem;
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-panel {
    border-radius: calc(var(--radius) + 2px);
    border: 1px solid var(--line);
    padding: 1.5rem 1.35rem;
    background: var(--bg);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

.contact-panel--accent {
    background: linear-gradient(165deg, var(--soft) 0%, var(--bg) 100%);
}

.contact-panel__h {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 0.5rem;
}

.contact-panel__h + .contact-panel__p + .contact-panel__h {
    margin-top: 1.35rem;
}

.contact-panel__p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--fg);
    overflow-wrap: break-word;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.contact-card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    padding: 1.35rem 1.25rem;
    background: var(--bg);
}

.contact-card--wide {
    background: var(--soft);
}

.contact-card__h {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.45rem;
    overflow-wrap: break-word;
}

.contact-card__p {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
    overflow-wrap: break-word;
}

.contact-card__link {
    font-weight: 600;
    word-break: break-all;
}

.contact-card__muted {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.filters {
    margin-top: 1rem;
}

.filters__label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    max-width: 280px;
}

/* Product */
.product {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1.5rem var(--gutter) 3rem;
}

.product__back {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 1.15rem;
}

.product__back:hover {
    color: var(--fg);
}

.product__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.product__grid > * {
    min-width: 0;
}

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

.gallery {
    position: relative;
}

.gallery__stage {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--soft);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.gallery__zoom {
    margin-top: 0.65rem;
    background: none;
    border: none;
    font: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--muted);
    padding: 0;
}

.gallery__thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.gallery__thumb {
    border: 2px solid transparent;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--soft);
}

.gallery__thumb.is-active {
    border-color: var(--fg);
}

.gallery__thumb img {
    width: 72px;
    height: 72px;
    object-fit: cover;
}

.product__info .prose {
    color: var(--muted);
    margin-bottom: 1.25rem;
    overflow-wrap: break-word;
    max-width: 100%;
}

.product__info .display {
    overflow-wrap: break-word;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.field__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.field--row {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    border: 1px solid var(--line);
    background: var(--bg);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    max-width: 100%;
    overflow-wrap: break-word;
    text-align: center;
    line-height: 1.25;
}

.chip.is-active {
    border-color: var(--fg);
    background: var(--fg);
    color: var(--bg);
}

.chip--color {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.chip__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.meta-line {
    font-size: 0.88rem;
    margin: 0.35rem 0;
}

.meta-line__k {
    color: var(--muted);
    margin-right: 0.35rem;
}

/* Inputs */
.input {
    font: inherit;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--fg);
}

.input:focus {
    outline: 2px solid var(--focus-ring);
    border-color: var(--fg);
}

.input--area {
    resize: vertical;
    min-height: 88px;
}

.input--qty {
    max-width: 88px;
}

.input--footer {
    flex: 1;
    min-width: 0;
}

/* Tables */
.cart-empty {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1rem var(--gutter) 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.table-wrap {
    overflow-x: auto;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.table th,
.table td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.table__thumb img {
    width: 72px;
    border-radius: 10px;
    border: 1px solid var(--line);
}

.table__name {
    font-weight: 600;
    text-decoration: none;
}

.link-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--muted);
    cursor: pointer;
    text-decoration: underline;
}

.cart-actions {
    max-width: var(--max);
    margin: 1rem auto;
    padding: 0 var(--gutter);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cart-summary {
    max-width: 360px;
    margin: 1.5rem var(--gutter) 3rem auto;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.row--total {
    font-size: 1.1rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
}

/* Checkout */
.checkout {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter) 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

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

.checkout-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkout-list__item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
}

.checkout-list__item img {
    border-radius: 10px;
    border: 1px solid var(--line);
}

.card-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    background: var(--bg);
}

.card-form--narrow {
    max-width: 420px;
    margin: 0 auto 3rem;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

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

.check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.92rem;
    margin: 0.75rem 0 1rem;
}

.checkout__summary {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.success-card {
    max-width: 520px;
    margin: 0 auto 4rem;
    padding: 2rem var(--gutter);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.success-card .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
}

.order-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0.25rem 0 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--line);
    padding: 2.5rem var(--gutter);
    margin-top: 3rem;
    background: var(--soft);
}

.footer__grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.footer__brand {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer__muted {
    color: var(--muted);
    font-size: 0.9rem;
}

.footer__contact-link {
    margin: 0.65rem 0 0;
    font-size: 0.88rem;
}

.footer__contact-link a {
    color: var(--fg);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer__contact-link a:hover {
    text-decoration: none;
}

.footer__h {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.92rem;
}

.footer__list a:hover {
    color: var(--fg);
}

.footer__news {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn--footer {
    white-space: nowrap;
}

.footer__bottom {
    max-width: var(--max);
    margin: 2.25rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer__copy {
    margin: 0;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.55;
    max-width: 36rem;
}

.footer__credit {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.65rem;
    font-size: 0.78rem;
    color: var(--muted);
}

.footer__credit-label {
    letter-spacing: 0.02em;
}

.footer__credit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fg);
    font-weight: 600;
    text-decoration: none;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer__credit-link:hover {
    border-color: rgba(242, 242, 242, 0.35);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.footer__credit-logo {
    display: block;
    height: 1.35rem;
    width: auto;
    max-width: 5.5rem;
    object-fit: contain;
}

.footer__credit-name {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.wa-fab {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right, 0px) + 0.35rem);
    bottom: max(1rem, env(safe-area-inset-bottom, 0px) + 0.5rem);
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 1.05rem 0.72rem 0.8rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-fab:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5);
}

.wa-fab:focus-visible {
    outline: 2px solid var(--fg);
    outline-offset: 3px;
}

.wa-fab__icon {
    display: flex;
    flex-shrink: 0;
    line-height: 0;
}

@media (max-width: 520px) {
    .wa-fab__label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .wa-fab {
        padding: 0.82rem;
        border-radius: 50%;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.88);
    z-index: 100;
    display: grid;
    place-items: center;
    padding: var(--gutter);
}

.lightbox[hidden] {
    display: none;
}

.lightbox__img {
    max-width: min(960px, 100%);
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.legal {
    max-width: 720px;
    margin: 0 auto 4rem;
    padding: 0 var(--gutter);
    overflow-wrap: break-word;
}

.js .nav {
    transition: opacity 0.2s ease;
}

/* —— Mobile: tipografía, rejillas y toque —— */
@media (max-width: 860px) {
    .site-main {
        padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 640px) {
    :root {
        --gutter: clamp(0.85rem, 4.5vw, 1.35rem);
    }

    .display {
        font-size: clamp(1.85rem, 8.5vw, 2.75rem);
    }

    .display--sm {
        font-size: clamp(1.55rem, 7vw, 2.15rem);
    }

    .lead {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero--home {
        padding-top: clamp(1.75rem, 6vw, 3rem);
        padding-bottom: clamp(1.75rem, 6vw, 3rem);
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .hero__shape {
        width: min(100%, 340px);
    }

    .section__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .section__link {
        margin-top: 0.15rem;
    }

    .grid--products,
    .grid--collections {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .filters__label {
        max-width: none;
        width: 100%;
    }

    .filters select.input,
    .filters .input {
        width: 100%;
        min-height: 48px;
    }

    .btn {
        min-height: 48px;
        padding: 0.88rem 1.2rem;
    }

    .btn--block {
        width: 100%;
    }

    input.input,
    select.input {
        font-size: 16px;
        min-height: 48px;
    }

    textarea.input {
        font-size: 16px;
        min-height: 100px;
    }

    .input--qty {
        width: 100%;
        max-width: 120px;
    }

    .chip {
        min-height: 44px;
        padding: 0.5rem 1rem;
    }

    .cart-empty {
        align-items: stretch;
    }

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

    .cart-actions {
        flex-direction: column;
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }

    .cart-actions .btn {
        width: 100%;
    }

    .cart-summary {
        margin-left: var(--gutter);
        margin-right: var(--gutter);
        max-width: none;
        width: calc(100% - 2 * var(--gutter));
    }

    .table-wrap {
        margin-left: 0;
        margin-right: 0;
        padding-left: var(--gutter);
        padding-right: var(--gutter);
        -webkit-overflow-scrolling: touch;
    }

    .table {
        min-width: 520px;
    }

    .link-btn {
        min-height: 44px;
        padding: 0.35rem 0;
    }

    .footer {
        padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    }

    .footer__news {
        flex-direction: column;
    }

    .footer__news .input--footer {
        width: 100%;
        min-width: 0;
    }

    .btn--footer {
        width: 100%;
    }

    .footer__bottom {
        gap: 0.85rem;
        padding-top: 1.5rem;
    }

    .footer__credit {
        flex-direction: column;
        gap: 0.5rem;
    }

    .lightbox__close {
        top: max(1rem, env(safe-area-inset-top, 0px));
        right: max(1rem, env(safe-area-inset-right, 0px));
    }

    .flash {
        margin-left: var(--gutter);
        margin-right: var(--gutter);
        max-width: none;
        width: auto;
    }

    .contact-layout {
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }

    .gallery__zoom {
        min-height: 44px;
        padding: 0.35rem 0;
    }

    .gallery__thumb {
        min-width: 48px;
        min-height: 48px;
    }

    .gallery__thumb img {
        width: 64px;
        height: 64px;
    }

    .home-motion,
    .home-motion__overlay {
        min-height: 340px;
    }

    .home-cta-card {
        min-height: 0;
    }

    .home-cta-card .btn {
        width: 100%;
        justify-content: center;
    }

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

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

    .home-visual__frame,
    .home-visual__img {
        min-height: 240px;
    }
}

@media (max-width: 380px) {
    .header__logo {
        max-width: calc(100vw - 6.5rem);
        font-size: 0.95rem;
    }

    .home-spotlight {
        margin-left: var(--gutter);
        margin-right: var(--gutter);
        width: auto;
        max-width: none;
    }
}

/* —— Pulido visual (storefront) —— */
body.site {
    background:
        radial-gradient(ellipse 120% 80% at 50% -30%, rgba(242, 242, 242, 0.06), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(180, 160, 130, 0.04), transparent),
        var(--bg);
}

body.site::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.site-main,
.header,
.footer {
    position: relative;
    z-index: 1;
}

.hero--home .display {
    background: linear-gradient(120deg, var(--fg) 0%, rgba(242, 242, 242, 0.72) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card--product {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.card--product:hover,
.card--product-shop:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    border-color: rgba(242, 242, 242, 0.12);
}

.card--product-shop {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.card--collection {
    transition: transform 0.2s ease, background 0.2s ease;
}

.card--collection:hover {
    transform: translateY(-2px);
    background: rgba(242, 242, 242, 0.04);
}

.btn--primary {
    box-shadow: 0 4px 24px rgba(242, 242, 242, 0.12);
}

.btn--primary:hover {
    box-shadow: 0 8px 32px rgba(242, 242, 242, 0.18);
}

.home-cta-card {
    transition: transform 0.25s ease;
}

.home-cta-card:hover {
    transform: scale(1.01);
}

/* —— Home Nike-style (Divergente) —— */
.main--home {
    max-width: none;
    padding: 0;
}

.main--home + .footer,
.site:has(.main--home) .footer {
    margin-top: 0;
}

.nike-hero {
    position: relative;
    min-height: clamp(520px, 88vh, 920px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0a0a0a;
}

.nike-hero--no-image {
    background:
        linear-gradient(135deg, #141414 0%, #0b0b0b 50%, #1a1814 100%),
        var(--bg);
}

.nike-hero--no-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(242, 242, 242, 0.06), transparent);
    pointer-events: none;
}

.nike-hero__media {
    position: absolute;
    inset: 0;
}

.nike-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: nikeHeroKen 22s ease-in-out infinite alternate;
}

@keyframes nikeHeroKen {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.nike-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, calc(0.75 + var(--hero-overlay, 0.45) * 0.4)) 0%,
        rgba(0, 0, 0, calc(var(--hero-overlay, 0.45) * 0.6)) 45%,
        rgba(0, 0, 0, calc(var(--hero-overlay, 0.45) * 0.85)) 100%
    );
}

.nike-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(2.5rem, 8vw, 5rem) var(--gutter) clamp(3rem, 10vw, 5.5rem);
}

.nike-hero__inner--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nike-hero__inner--center .nike-hero__lead {
    margin-left: auto;
    margin-right: auto;
}

.nike-hero__inner--center .nike-hero__actions {
    justify-content: center;
}

.nike-hero__kicker {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.nike-hero__title {
    margin: 0;
    max-width: 14ch;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #fff;
    text-wrap: balance;
}

.nike-hero__lead {
    margin: 1.1rem 0 0;
    max-width: 38ch;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.nike-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.btn--nike {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn--nike-primary {
    background: #fff;
    color: #0a0a0a;
    border: 2px solid #fff;
}

.btn--nike-primary:hover {
    background: #e8e8e8;
    border-color: #e8e8e8;
    transform: translateY(-1px);
}

.btn--nike-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn--nike-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nike-trust {
    border-block: 1px solid var(--line);
    background: linear-gradient(180deg, #111 0%, var(--bg) 100%);
}

.nike-trust__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3rem) var(--gutter);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
}

.nike-trust__item {
    padding: 1.25rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
}

.nike-trust__item--accent {
    border-color: rgba(232, 212, 184, 0.35);
    background: linear-gradient(145deg, rgba(232, 212, 184, 0.06), transparent);
}

.nike-trust__icon {
    display: inline-flex;
    margin-bottom: 0.85rem;
    color: var(--fg);
}

.nike-trust__title {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nike-trust__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted);
}

@media (max-width: 768px) {
    .nike-trust__inner {
        grid-template-columns: 1fr;
    }
}

/* Home — bloque editorial ADN (primera colección) */
.home-spotlight {
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: linear-gradient(155deg, #0e0e0e 0%, var(--bg) 55%, #080808 100%);
}

.home-spotlight__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    filter: saturate(0.85) contrast(1.05);
    pointer-events: none;
}

.home-spotlight__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, var(--bg) 0%, rgba(10, 10, 10, 0.72) 42%, rgba(10, 10, 10, 0.35) 100%);
}

.home-spotlight__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 160px 160px;
    mix-blend-mode: overlay;
}

.home-spotlight__inner {
    position: relative;
    z-index: 1;
    max-width: var(--shop-max);
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

.home-spotlight__index {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.home-spotlight__index-num {
    color: var(--muted);
}

.home-spotlight__kicker {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.home-spotlight__title {
    margin: 0;
    line-height: 0.88;
}

.home-spotlight__title-word {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 14vw, 7.5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 212, 184, 0.5);
    paint-order: stroke fill;
}

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

.home-spotlight__lead {
    margin: clamp(1rem, 2.5vw, 1.35rem) 0 0;
    max-width: 38ch;
    font-size: clamp(0.95rem, 2vw, 1.08rem);
    line-height: 1.6;
    color: rgba(244, 244, 244, 0.82);
}

.home-spotlight__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: clamp(1.35rem, 3vw, 1.85rem);
}

.home-spotlight__visual {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

.home-spotlight__visual:hover {
    transform: translateY(-3px);
}

.home-spotlight__visual-frame {
    display: block;
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
    box-shadow:
        0 32px 64px -28px rgba(0, 0, 0, 0.75),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-spotlight__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-spotlight__visual:hover .home-spotlight__img {
    transform: scale(1.03);
}

.home-spotlight__img-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
}

.home-spotlight__visual-cap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.15rem 0.75rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
}

.home-spotlight__visual-kicker {
    grid-column: 1 / -1;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}

.home-spotlight__visual-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.home-spotlight__visual-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    text-align: right;
}

.home-spotlight__visual-arrow {
    align-self: center;
    font-size: 1.25rem;
    color: var(--accent);
    transition: transform 0.2s ease;
}

.home-spotlight__visual:hover .home-spotlight__visual-arrow {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .home-spotlight__inner {
        grid-template-columns: 1fr;
    }

    .home-spotlight__visual {
        max-width: min(100%, 380px);
    }

    .home-spotlight__title-word {
        font-size: clamp(2.75rem, 18vw, 4.5rem);
    }

    .home-spotlight__actions {
        flex-direction: column;
        align-items: stretch;
    }

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

.nike-section {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4rem) var(--gutter);
}

.nike-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nike-section__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.nike-section__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
}

.nike-section__link:hover {
    color: var(--fg);
}

.nike-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
}

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

@media (max-width: 520px) {
    .nike-tiles {
        grid-template-columns: 1fr;
    }
}

.nike-tile {
    position: relative;
    min-height: 280px;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: flex-end;
}

.nike-tile__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #2a2a2a, #111);
    transition: transform 0.45s ease;
}

.nike-tile__bg--0 { background: linear-gradient(145deg, #1f1f1f, #0d0d0d); }
.nike-tile__bg--1 { background: linear-gradient(145deg, #252320, #0f0e0c); }
.nike-tile__bg--2 { background: linear-gradient(145deg, #1a1c22, #08090c); }
.nike-tile__bg--3 { background: linear-gradient(145deg, #222018, #0c0b09); }

.nike-tile__bg--photo {
    background-size: cover;
    background-position: center;
}

.nike-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
}

.nike-tile:hover .nike-tile__bg {
    transform: scale(1.04);
}

.nike-tile__content {
    position: relative;
    z-index: 1;
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nike-tile__kicker {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.65;
}

.nike-tile__name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.nike-tile__cta {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nike-products {
    display: grid;
}

.nike-product__media {
    position: relative;
    display: block;
    aspect-ratio: 1;
    background: var(--soft);
    overflow: hidden;
    border-radius: 2px;
}

.nike-product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.nike-product:hover .nike-product__media img {
    transform: scale(1.03);
}

.nike-product__badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #fff;
    color: #0a0a0a;
}

.nike-product__body {
    padding: 0.65rem 0.15rem 0;
}

.nike-product__name {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--fg);
    line-height: 1.35;
}

.nike-product__name:hover {
    text-decoration: underline;
}

.nike-product__price {
    margin-top: 0.25rem;
    font-size: 0.88rem;
    display: flex;
    gap: 0.45rem;
    align-items: baseline;
}

.nike-product__compare {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.82rem;
}

.nike-product__now {
    font-weight: 600;
}

.nike-empty {
    color: var(--muted);
    text-align: center;
    padding: 2rem;
}

.nike-dual {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter) clamp(3rem, 8vw, 5rem);
}

.nike-dual__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

@media (max-width: 720px) {
    .nike-dual__grid {
        grid-template-columns: 1fr;
    }
}

.nike-dual__card {
    min-height: 220px;
    padding: 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.35rem;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid var(--line);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.nike-dual__card--alt {
    background: linear-gradient(145deg, #222018, #10100e);
}

.nike-dual__card:hover {
    transform: translateY(-2px);
    border-color: rgba(242, 242, 242, 0.25);
}

.nike-dual__kicker {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.6;
}

.nike-dual__title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nike-dual__link {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

@media (max-width: 720px) {
    .nike-hero {
        min-height: min(88vh, 620px);
    }

    .nike-hero__title {
        max-width: none;
    }

    .nike-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn--nike {
        width: 100%;
    }

    .nike-hero__img {
        animation: none;
    }

    .gallery__thumbs--pdp {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.35rem;
        scrollbar-width: thin;
    }

    .pdp__title {
        font-size: clamp(1.65rem, 7vw, 2.35rem);
    }

    .pdp__pay-actions .btn {
        min-height: 48px;
    }

    .catalog-breadcrumb {
        font-size: 0.78rem;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .shop-toolbar-v2 {
        top: calc(3.25rem + env(safe-area-inset-top, 0px));
    }
}

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

    .product-tile:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nike-hero__img {
        animation: none;
    }

    .nike-tile:hover .nike-tile__bg,
    .nike-product:hover .nike-product__media img,
    .nike-dual__card:hover {
        transform: none;
    }
}

/* —— Catálogo interno (tienda, colección, producto) —— */
.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;
}

.main--catalog {
    max-width: none;
    padding: 0;
}

.catalog-page {
    width: 100%;
}

.catalog-breadcrumb {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1.25rem var(--gutter) 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.catalog-breadcrumb__link {
    color: var(--muted);
    text-decoration: none;
}

.catalog-breadcrumb__link:hover {
    color: var(--fg);
}

.catalog-breadcrumb__sep {
    margin: 0 0.4rem;
    opacity: 0.5;
}

.catalog-breadcrumb__current {
    color: var(--fg);
}

.shop-hero__chips a.shop-hero__chip {
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.shop-hero__chips a.shop-hero__chip:hover {
    color: var(--fg);
    border-color: rgba(242, 242, 242, 0.35);
}

.shop-hero__chips a.shop-hero__chip.is-active {
    color: var(--bg);
    background: var(--fg);
    border-color: var(--fg);
}

.catalog-toolbar {
    position: sticky;
    top: calc(3.25rem + env(safe-area-inset-top, 0px));
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(12px);
}

.catalog-toolbar__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.85rem var(--gutter);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
}

.catalog-toolbar__count {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.catalog-toolbar__filter {
    color: var(--fg);
    font-weight: 600;
}

.catalog-toolbar__sep {
    opacity: 0.45;
}

.catalog-toolbar__form {
    margin: 0;
}

.catalog-toolbar__label {
    margin: 0;
}

.input--toolbar {
    min-width: min(220px, 70vw);
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
}

.catalog-section {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.5rem) var(--gutter) clamp(3rem, 8vw, 4.5rem);
}

.catalog-grid {
    width: 100%;
}

.collection-hero {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(1.75rem, 5vw, 3rem) var(--gutter) clamp(1rem, 3vw, 1.5rem);
    border-bottom: 1px solid var(--line);
}

.collection-hero--with-media {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .collection-hero--with-media {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        align-items: center;
    }
}

.collection-hero__media {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 5 / 2;
    background: #111;
}

.collection-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collection-hero--legal,
.collection-hero--compact {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.collection-hero__title {
    margin: 0.35rem 0 0;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: uppercase;
    max-width: 18ch;
}

.collection-hero__lead {
    margin: 1rem 0 0;
    max-width: min(52ch, 100%);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted);
}

.collection-hero__meta {
    margin: 0.75rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.catalog-empty {
    text-align: center;
    padding: 3rem 1rem;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
}

.catalog-empty__title {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-size: 1.05rem;
}

/* PDP — premium */
.pdp-page {
    background:
        radial-gradient(ellipse 90% 50% at 0% 0%, rgba(255, 255, 255, 0.04), transparent 50%),
        radial-gradient(ellipse 70% 40% at 100% 20%, rgba(255, 255, 255, 0.03), transparent 45%),
        var(--bg);
}

.pdp-page .catalog-breadcrumb {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1.25rem var(--gutter) 0;
}

.pdp {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem) var(--gutter) 2.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

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

.pdp__gallery-col {
    min-width: 0;
}

.gallery--pdp {
    position: sticky;
    top: calc(4.25rem + env(safe-area-inset-top, 0px));
}

@media (max-width: 900px) {
    .gallery--pdp {
        position: static;
    }
}

.gallery__stage-wrap {
    position: relative;
}

.gallery__stage--pdp {
    position: relative;
    aspect-ratio: 1;
    background: #0e0e0e;
    border-radius: 4px;
    overflow: hidden;
    box-shadow:
        0 32px 64px -24px rgba(0, 0, 0, 0.65),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.gallery__stage--pdp .gallery__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s;
    z-index: 0;
}

.gallery__stage--pdp .gallery__img.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.gallery__stage--pdp .gallery__img[hidden] {
    display: none !important;
}

.gallery__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0a0a0a;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.gallery__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.gallery__nav--prev {
    left: 0.65rem;
}

.gallery__nav--next {
    right: 0.65rem;
}

.gallery__counter {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 3;
    padding: 0.25rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border-radius: 4px;
}

.gallery__thumbs--pdp {
    margin-top: 0.85rem;
    gap: 0.55rem;
}

.gallery__thumbs--pdp .gallery__thumb {
    width: 4.25rem;
    height: 4.25rem;
    flex-shrink: 0;
}

.pdp__info {
    position: sticky;
    top: calc(4.25rem + env(safe-area-inset-top, 0px));
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(14, 14, 14, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.75);
}

@media (max-width: 900px) {
    .pdp__info {
        position: static;
        margin-top: 0.5rem;
    }
}

.pdp__eyebrow {
    display: inline-block;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.pdp__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}

.pdp__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.85rem;
    margin: 1.5rem 0 0;
    padding: 1.25rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.pdp__price-compare {
    font-size: 1.05rem;
    color: var(--muted);
    text-decoration: line-through;
}

.pdp__price-now {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.pdp__badge {
    padding: 0.2rem 0.55rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #fff;
    color: #0a0a0a;
}

.pdp__desc {
    margin: 0 0 1.5rem;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.98rem;
}

.pdp__highlights {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

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

.pdp__highlights li {
    margin: 0;
    padding: 0.65rem 0.5rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    line-height: 1.35;
}

.pdp__highlights li::before {
    display: block;
    content: "✓";
    font-size: 0.75rem;
    color: var(--fg);
    margin-bottom: 0.2rem;
}

.pdp__variants {
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.pdp__variant-row {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.pdp__variant-k {
    min-width: 4.5rem;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pdp__meta {
    margin: 0.5rem 0 0;
    font-size: 0.82rem;
    color: var(--muted);
}

.pdp__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pdp__pay-actions .btn--pay-wompi {
    background: #6b46ff;
    border-color: #6b46ff;
    color: #fff;
}

.pdp__pay-actions .btn--pay-bold {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: #fff;
}

.pdp__pay-actions .btn--pay-bold:hover,
.pdp__pay-actions .btn--pay-wompi:hover {
    opacity: 0.92;
    color: #fff;
}

.pdp__pay-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.pdp__zoom-hint {
    margin: 0.65rem 0 0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
}

.pdp__wa-hint {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.pdp-related,
.pdp-suggest {
    max-width: var(--max);
    margin: 0 auto;
    padding: 2.5rem var(--gutter) 3rem;
    border-top: 1px solid var(--line);
}

.pdp-suggest__head {
    margin-bottom: 1.25rem;
}

.pdp-related .nike-section__head,
.pdp-suggest__head {
    margin-bottom: 1.25rem;
}

/* Legal & auth */
.legal-page .legal-doc {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1.5rem var(--gutter) 3rem;
    color: var(--muted);
    line-height: 1.7;
}

.legal-doc p {
    margin: 0 0 1rem;
}

.legal-page__crumb {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1.25rem var(--gutter) 0;
}

.legal-page__updated {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.legal-page__layout {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter) 3rem;
    display: grid;
    grid-template-columns: minmax(200px, 240px) 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.legal-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.legal-nav__link {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.legal-nav__link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.legal-nav__link.is-active {
    color: var(--text);
    background: rgba(232, 212, 184, 0.1);
    border-color: rgba(232, 212, 184, 0.35);
}

.legal-page__aside-links {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-page__aside-cta {
    display: block;
    text-align: center;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--accent);
    color: #0e0e10;
}

.legal-page__aside-cta--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.legal-doc__section {
    margin-bottom: 2rem;
}

.legal-doc__heading {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}

/* Colecciones — misma línea editorial que tienda */
.shop-hero--collections .shop-hero__display-word--ghost {
    font-size: clamp(2.35rem, 9.5vw, 6.25rem);
    letter-spacing: -0.035em;
}

.collections-shell {
    max-width: var(--shop-max);
    margin: 0 auto;
    padding: 0 var(--gutter) 4rem;
}

.collections-page--v2 .collections-page__tiles {
    max-width: none;
    margin: 0;
    padding: clamp(1.25rem, 3vw, 2rem) 0 0;
    gap: clamp(0.65rem, 2vw, 0.85rem);
}

.collections-empty {
    margin-top: 2rem;
    text-align: center;
}

.collections-tile {
    position: relative;
    min-height: clamp(220px, 42vw, 320px);
}

.collections-tile .nike-tile__index {
    position: absolute;
    top: 0.75rem;
    left: 0.85rem;
    z-index: 3;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.55);
}

.collections-tile .nike-tile__content {
    padding: 1.1rem 1rem 1.15rem;
}

@media (min-width: 900px) {
    .collections-page--v2 .collections-page__tiles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .collections-page--v2 .collections-page__tiles {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nike-tile__desc {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

.page-head--404 .page-head__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.checkout__legal {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

.checkout__legal a {
    color: var(--accent);
}

@media (max-width: 860px) {
    .legal-page__layout {
        grid-template-columns: 1fr;
    }

    .legal-page__aside {
        order: -1;
    }

    .legal-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.contact-page {
    overflow-x: clip;
}

.contact-hero {
    position: relative;
    padding: clamp(3rem, 10vw, 5.5rem) var(--gutter) clamp(2.5rem, 6vw, 4rem);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(ellipse 70% 55% at 0% 0%, rgba(37, 211, 102, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 50% at 100% 20%, rgba(232, 212, 184, 0.1), transparent 50%),
        linear-gradient(180deg, #141414 0%, var(--bg) 100%);
}

.contact-hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.04), transparent 45%);
    pointer-events: none;
}

.contact-hero__inner {
    position: relative;
    max-width: var(--max);
    margin: 0 auto;
    z-index: 1;
}

.contact-hero__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-hero__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    max-width: 14ch;
}

.contact-hero__lead {
    margin: 1.1rem 0 0;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.6;
    color: rgba(242, 242, 242, 0.72);
    max-width: 46ch;
}

.contact-hero__tag {
    margin: 0.65rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c4a882;
}

.contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.75rem;
}

.btn--contact-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    font-size: 0.82rem;
}

.btn__icon {
    flex-shrink: 0;
}

.contact-channels {
    border-bottom: 1px solid var(--line);
}

.contact-channels__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3rem) var(--gutter);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-channel {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.35rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-channel:hover {
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.7);
}

.contact-channel--wa {
    border-color: rgba(37, 211, 102, 0.35);
    background: linear-gradient(160deg, rgba(37, 211, 102, 0.1), rgba(255, 255, 255, 0.02));
}

.contact-channel--wa:hover {
    border-color: rgba(37, 211, 102, 0.65);
}

.contact-channel--shop {
    background: linear-gradient(160deg, rgba(232, 212, 184, 0.08), transparent);
}

.contact-channel--disabled {
    opacity: 0.55;
}

.contact-channel--disabled:hover {
    transform: none;
    box-shadow: none;
}

.contact-channel__icon {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--fg);
}

.contact-channel__icon--wa {
    color: #25d366;
}

.contact-channel__title {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-channel__text {
    margin: 0 0 1rem;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted);
}

.contact-channel__cta {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--fg);
}

.contact-channel__cta:hover {
    color: #e8d4b8;
}

.contact-channel--wa .contact-channel__cta {
    color: #5ecf8a;
}

.contact-channel__muted {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.contact-perks {
    background: var(--bg);
}

.contact-perks__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 2.75rem) var(--gutter);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.contact-perks__item {
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.contact-perks__item--accent .contact-perks__label {
    color: #e8d4b8;
}

.contact-perks__label {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-perks__text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(242, 242, 242, 0.55);
}

.contact-meta {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.contact-meta__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 2rem var(--gutter) clamp(3rem, 8vw, 4.5rem);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 1.4fr);
    gap: 1.5rem 2rem;
    align-items: start;
}

.contact-meta__title {
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-meta__value {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
}

.contact-meta__footnote {
    margin: 0;
    grid-column: 1 / -1;
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .contact-channels__inner {
        grid-template-columns: 1fr;
    }

    .contact-channel--wa {
        order: -1;
    }

    .contact-perks__inner {
        grid-template-columns: 1fr;
    }

    .contact-meta__inner {
        grid-template-columns: 1fr;
    }

    .contact-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn--contact-hero {
        justify-content: center;
    }
}

.contact-page .contact-layout {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter) 3rem;
}

.auth-page {
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem var(--gutter) 3rem;
}

.auth-card {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

/* —— Tienda v2: más productos por fila, look editorial —— */
.shop-page--v2 .shop-shell {
    max-width: var(--shop-max);
    margin: 0 auto;
    padding: 0 var(--gutter) 4rem;
}

/* Tienda — hero editorial fashion */
.shop-hero--editorial {
    position: relative;
    overflow: hidden;
    padding: clamp(1.75rem, 4.5vw, 3.25rem) var(--gutter) clamp(1.35rem, 3vw, 2rem);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(ellipse 70% 80% at 100% 0%, rgba(232, 212, 184, 0.07), transparent 50%),
        linear-gradient(165deg, #0e0e0e 0%, var(--bg) 48%);
}

.shop-hero__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    mix-blend-mode: overlay;
}

.shop-hero__rule--v {
    position: absolute;
    left: max(var(--gutter), calc(50% - var(--shop-max) / 2));
    top: 1.5rem;
    bottom: 1.25rem;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(232, 212, 184, 0.35) 35%, rgba(232, 212, 184, 0.35) 65%, transparent);
    pointer-events: none;
}

.shop-hero__rule--h {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
    pointer-events: none;
}

.shop-hero__inner--editorial {
    position: relative;
    z-index: 1;
    max-width: var(--shop-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: end;
}

.shop-hero__main {
    min-width: 0;
    padding-left: clamp(0.5rem, 2vw, 1.25rem);
}

.shop-hero__index {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 0.85rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.shop-hero__index-num {
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.shop-hero__index-label {
    color: var(--accent);
}

.shop-hero__display {
    position: relative;
    margin: 0;
    line-height: 0.88;
}

.shop-hero__display-word {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3.25rem, 13vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.shop-hero__display-word--ghost {
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 212, 184, 0.42);
    paint-order: stroke fill;
}

.shop-hero__display-word:not(.shop-hero__display-word--ghost) {
    color: var(--fg);
    max-width: 12ch;
    line-height: 0.92;
    word-break: break-word;
}

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

.shop-hero__tagline {
    margin: clamp(0.85rem, 2vw, 1.15rem) 0 0;
    max-width: 34ch;
    font-size: clamp(0.92rem, 2vw, 1.02rem);
    line-height: 1.55;
    color: var(--muted);
    letter-spacing: 0.01em;
}

.shop-hero__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.35rem;
    padding: 0 0 0.25rem clamp(1.25rem, 2.5vw, 2rem);
    border-left: 1px solid var(--line);
    min-width: min(100%, 168px);
}

.shop-hero__stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 5.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--fg);
}

.shop-hero__stat-label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg);
}

.shop-hero__stat-sub {
    display: block;
    margin-top: 0.25rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.shop-hero__meta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--accent);
    transition: gap 0.2s ease, opacity 0.2s ease;
}

.shop-hero__meta-link:hover {
    gap: 0.7rem;
    opacity: 0.85;
}

.shop-hero__meta-arrow {
    font-size: 1.1em;
    line-height: 1;
}

@media (max-width: 720px) {
    .shop-hero--editorial {
        padding-top: 1.35rem;
    }

    .shop-hero__rule--v {
        display: none;
    }

    .shop-hero__main {
        padding-left: 0;
    }

    .shop-hero__inner--editorial {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .shop-hero__display-word--ghost {
        font-size: clamp(2.85rem, 20vw, 4.25rem);
        letter-spacing: -0.03em;
    }

    .shop-hero__meta {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1.15rem 0 0;
        border-left: none;
        border-top: 1px solid var(--line);
        gap: 1rem;
    }

    .shop-hero__stat {
        display: flex;
        align-items: baseline;
        gap: 0.5rem;
    }

    .shop-hero__stat-value {
        font-size: 1.75rem;
    }

    .shop-hero__stat-label {
        margin-top: 0;
    }

    .shop-hero__stat-sub {
        display: inline;
        margin-top: 0;
        margin-left: 0.25rem;
    }

    .shop-hero__stat-sub::before {
        content: "· ";
    }
}

.shop-toolbar-v2 {
    position: sticky;
    top: calc(3.5rem + env(safe-area-inset-top, 0px));
    z-index: 15;
    margin: 0 calc(-1 * var(--gutter));
    padding: 0.85rem var(--gutter);
    background: rgba(10, 10, 10, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.shop-toolbar-v2__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 0.65rem;
}

.shop-toolbar-v2__label {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.shop-toolbar-v2__count {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
}

.shop-pills--bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.shop-pill.is-active {
    background: var(--accent);
    color: var(--accent-fg);
    border-color: var(--accent);
}

.shop-toolbar-v2__select {
    display: none;
    margin-top: 0.65rem;
}

@media (max-width: 599px) {
    .shop-pills--bar {
        display: none;
    }

    .shop-toolbar-v2__select {
        display: block;
        margin-top: 0;
    }
}

@media (min-width: 600px) and (max-width: 860px) {
    .shop-pills--bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .shop-pills--bar .shop-pill {
        flex-shrink: 0;
    }
}

.shop-catalog--v2 {
    padding-top: 1.5rem;
}

.shop-grid--dense {
    display: grid;
}

.product-tile {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background: var(--soft);
    border: 1px solid transparent;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.product-tile:hover {
    border-color: rgba(232, 212, 184, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.product-tile__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #111;
}

.product-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-tile:hover .product-tile__media img {
    transform: scale(1.04);
}

.product-tile__badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 2;
    padding: 0.22rem 0.5rem;
    border-radius: 4px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--accent-fg);
}

.product-tile__quick {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    z-index: 2;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s, transform 0.2s;
}

.product-tile:hover .product-tile__quick {
    opacity: 1;
    transform: translateY(0);
}

.product-tile__body {
    padding: 0.65rem 0.7rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-height: 4.5rem;
}

.product-tile__meta {
    margin: 0;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-tile__name {
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.product-tile__name a {
    text-decoration: none;
    color: inherit;
}

.product-tile__name a:hover {
    color: var(--accent);
}

.product-tile__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
    margin-top: auto;
}

.product-tile__compare {
    font-size: 0.72rem;
    color: var(--muted);
    text-decoration: line-through;
}

.product-tile__now {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--fg);
}

.catalog-section__grid {
    max-width: var(--shop-max);
    margin: 0 auto;
    padding: 0 var(--gutter) 3rem;
}

.shop-collections-strip--v2 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.btn--nike-primary {
    background: var(--accent);
    color: var(--accent-fg);
    border-color: var(--accent);
}

.btn--nike-primary:hover {
    background: #f0e2cc;
    border-color: #f0e2cc;
    color: var(--accent-fg);
}

/* Destacados (home) y grids catálogo: máx. 4 por fila */
.nike-products,
.shop-grid--dense {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.65rem;
}

@media (min-width: 540px) {
    .nike-products,
    .shop-grid--dense {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem 0.75rem;
    }
}

@media (min-width: 768px) {
    .nike-products,
    .shop-grid--dense {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.15rem 0.85rem;
    }
}
