/* Homepage V2 — approved section order and identity board. */

.store-home-v2 .store-main {
    overflow: clip;
    --home-bg: #f7f5f1;
    --home-surface: #fffdfa;
    --home-surface-muted: #f1ede7;
    --home-ink: #292522;
    --home-accent: #9d3d47;
    --home-accent-soft: #f3e5e6;
    --home-border: rgba(62, 52, 47, .12);
    background: var(--home-bg);
}

.home-hero {
    position: relative;
    min-height: 41rem;
    margin-block-start: clamp(.8rem, 2.5vw, 1.8rem);
    padding: clamp(1.25rem, 4vw, 3.5rem);
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3.8rem);
    overflow: hidden;
    border-radius: clamp(1.75rem, 4vw, 3rem);
    border: 1px solid var(--home-border);
    background: linear-gradient(140deg, #fffdfa 0%, #f1ede7 100%);
    color: var(--home-ink);
    box-shadow: 0 1.2rem 3.5rem rgba(52, 42, 37, .08);
    isolation: isolate;
}

.home-hero--identity-only {
    grid-template-columns: minmax(0, 44rem);
    justify-content: center;
}

.home-hero::before {
    position: absolute;
    width: 25rem;
    height: 25rem;
    inset-inline-start: -12rem;
    inset-block-end: -18rem;
    border: 1px solid rgba(62, 52, 47, .07);
    border-radius: 50%;
    box-shadow: 0 0 0 4rem rgba(62, 52, 47, .018), 0 0 0 8rem rgba(62, 52, 47, .012);
    content: '';
    pointer-events: none;
}

.home-hero__copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-hero__board {
    position: relative;
    width: 100%;
    min-height: 21rem;
    padding: clamp(1.4rem, 3vw, 2.4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 2rem;
    background: rgba(255, 253, 250, .82);
    box-shadow: 0 .8rem 2.4rem rgba(52, 42, 37, .055);
    isolation: isolate;
}

.home-hero__board::before {
    position: absolute;
    z-index: -1;
    width: 12rem;
    height: 12rem;
    inset-inline-end: -7.5rem;
    inset-block-start: -7.5rem;
    border: 1px solid rgba(157, 61, 71, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 2.5rem rgba(157, 61, 71, .025), 0 0 0 5rem rgba(157, 61, 71, .012);
    content: '';
}

.home-hero__board::after {
    position: absolute;
    inset: .8rem;
    z-index: -1;
    border: 1px solid rgba(62, 52, 47, .045);
    border-radius: 1.45rem;
    content: '';
}

.home-hero__code {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: rgba(41, 37, 34, .45);
    direction: ltr;
    font: 800 .6rem/1 Arial, sans-serif;
    letter-spacing: .2em;
}

.home-hero__code::before { width: 1.8rem; height: 2px; background: var(--home-accent); content: ''; }

.home-hero h1 {
    width: 100%;
    margin: 1.1rem 0 0;
    display: flex;
    align-items: center;
    gap: clamp(.9rem, 2vw, 1.7rem);
    line-height: 1;
}

.home-hero__number {
    flex: 0 0 auto;
    color: transparent;
    direction: ltr;
    font: 900 clamp(7rem, 10vw, 10rem)/.8 Arial, sans-serif;
    letter-spacing: -.13em;
    transform: translateX(-.04em);
    -webkit-text-stroke: 2px var(--home-accent);
    filter: none;
}

.home-hero__name {
    min-width: 0;
    display: flex;
    flex-direction: column;
    color: var(--home-ink);
    font-size: clamp(1.9rem, 3.7vw, 3.35rem);
    font-weight: 850;
    line-height: 1.15;
    white-space: nowrap;
}

.home-hero__name small {
    width: max-content;
    margin-top: .75rem;
    padding-top: .6rem;
    border-top: 1px solid rgba(41, 37, 34, .14);
    color: rgba(41, 37, 34, .5);
    font-size: .38em;
    font-weight: 600;
}

.home-primary-link {
    min-height: 3.3rem;
    margin-top: 1.2rem;
    padding: .75rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    border-radius: 1rem;
    border: 1px solid rgba(41, 37, 34, .15);
    background: var(--home-surface);
    color: var(--home-ink);
    font-size: .76rem;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.home-primary-link:hover { border-color: var(--home-accent); background: var(--home-accent-soft); color: var(--home-accent); transform: translateY(-2px); }
.home-primary-link .store-icon { width: 1.1rem; height: 1.1rem; }

.home-hero__visual {
    position: relative;
    z-index: 1;
    min-height: 33rem;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 2.1rem;
    border: 1px solid rgba(62, 52, 47, .09);
    background: linear-gradient(145deg, #fbf9f5, #e8e2da);
    color: inherit;
    text-decoration: none;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.home-hero__visual:hover {
    border-color: rgba(157, 61, 71, .24);
    box-shadow: 0 1rem 2.6rem rgba(52, 42, 37, .1);
    transform: translateY(-2px);
}

.home-hero__visual::after {
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(7, 7, 7, .09);
    border-radius: 1.5rem;
    content: '';
    pointer-events: none;
}

.home-hero__disc {
    position: absolute;
    z-index: 0;
    width: min(62%, 23rem);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(157, 61, 71, .12);
    background: rgba(157, 61, 71, .08);
    box-shadow: none;
}

.home-hero__visual-number {
    position: absolute;
    z-index: 0;
    inset-inline-start: 1rem;
    inset-block-end: -1.5rem;
    color: transparent;
    direction: ltr;
    font: 900 clamp(10rem, 18vw, 16rem)/1 Arial, sans-serif;
    letter-spacing: -.13em;
    -webkit-text-stroke: 1px rgba(41, 37, 34, .1);
}

.home-hero__visual img {
    position: relative;
    z-index: 2;
    width: min(76%, 27rem);
    height: 31rem;
    object-fit: contain;
    filter: drop-shadow(0 1.35rem 1.25rem rgba(52, 42, 37, .18));
    transform: rotate(4deg);
}

.home-hero__visual .home-hero__product-image {
    width: auto;
    height: auto;
    max-width: min(82%, 28rem);
    max-height: 30rem;
    padding: .65rem;
    object-fit: contain;
    object-position: center;
    transform: none;
}

.home-hero__vertical {
    position: absolute;
    z-index: 3;
    inset-block-start: 2.2rem;
    inset-inline-end: 1.8rem;
    color: rgba(7, 7, 7, .42);
    direction: ltr;
    writing-mode: vertical-rl;
    font: 800 .52rem/1 Arial, sans-serif;
    letter-spacing: .22em;
}

.home-section {
    padding-block: clamp(4.6rem, 8vw, 7.4rem);
    background: var(--home-bg);
}
.home-section--brands,
.home-section--soft,
.home-section--twin {
    width: 100%;
    border-block: 1px solid var(--home-border);
    background: var(--home-bg);
}
.home-section--brands { margin-top: clamp(2.8rem, 6vw, 5.2rem); }
.home-section--twin { border-block-start: 0; }

.home-section__head {
    margin-bottom: clamp(1.35rem, 3vw, 2rem);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.home-section__kicker { color: var(--home-accent); font-size: .58rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.home-section__head h2,
.home-promo__head h2 { margin: .35rem 0 0; color: var(--store-ink); font-size: clamp(1.8rem, 4vw, 3.1rem); line-height: 1.2; letter-spacing: -.045em; }
.home-section__head > a {
    flex: 0 0 auto;
    padding-block: .5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-bottom: 1px solid currentColor;
    color: var(--store-ink);
    font-size: .68rem;
    font-weight: 750;
}
.home-section__head > a:hover { color: var(--home-accent); }
.home-section__head > a .store-icon { width: .95rem; height: .95rem; }

.home-brand-rail {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-flow: column;
    grid-auto-columns: 11rem;
    gap: .75rem;
    overflow-x: auto;
    padding: .15rem .05rem 1rem;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(7, 7, 7, .2) transparent;
    cursor: grab;
}
.home-brand-rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.home-brand-card {
    width: 100%;
    min-width: 0;
    min-height: 8rem;
    padding: .9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    border: 1px solid rgba(7, 7, 7, .09);
    border-radius: 1.45rem;
    background: var(--home-surface);
    box-shadow: 0 .55rem 1.7rem rgba(52, 42, 37, .055);
    scroll-snap-align: start;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.home-brand-card:hover { border-color: rgba(157, 61, 71, .32); box-shadow: 0 .8rem 2rem rgba(52, 42, 37, .08); transform: translateY(-3px); }
.home-brand-card__media { width: 100%; height: 3.8rem; display: grid; place-items: center; overflow: hidden; border-radius: .85rem; background: #fff; }
.home-brand-card__media img { max-width: 8rem; max-height: 3.2rem; object-fit: contain; }
.home-brand-card__media span { max-width: 100%; overflow-wrap: anywhere; color: var(--store-black); font: 900 1.1rem/1.2 Arial, sans-serif; text-align: center; }

.home-category-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: 15.5rem;
    gap: .85rem;
}
.home-category-card {
    position: relative;
    min-height: 15.5rem;
    overflow: hidden;
    border-radius: 1.75rem;
    background: linear-gradient(145deg, #dedbd5, #f8f7f4);
    box-shadow: var(--store-shadow-sm);
    isolation: isolate;
}
.home-category-card--featured { grid-row: span 2; min-height: 31.85rem; }
.home-category-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22, 1, .36, 1); }
.home-category-card:hover > img { transform: scale(1.05); }
.home-category-card__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(7, 7, 7, .9), rgba(7, 7, 7, .03) 68%); }
.home-category-card__number {
    position: absolute;
    z-index: 2;
    inset-block-start: 1rem;
    inset-inline-start: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background: rgba(7, 7, 7, .28);
    color: #fff;
    font: 750 .58rem/1 Arial, sans-serif;
}
.home-category-card__copy { position: absolute; z-index: 2; inset-inline: 1.25rem; inset-block-end: 1.2rem; display: grid; color: #fff; }
.home-category-card__copy strong { font-size: clamp(1rem, 2vw, 1.65rem); line-height: 1.4; }
.home-category-card__copy small { margin-top: .15rem; color: rgba(255, 255, 255, .58); font-size: .58rem; }

.home-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(.75rem, 1.7vw, 1.1rem); }
.home-product-grid .pc { height: 100%; }

.home-promo { padding-block: clamp(4.6rem, 8vw, 7.4rem); background: var(--home-bg); }
.home-promo__head { margin-bottom: 1.25rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1.25rem; }
.home-promo__controls { display: flex; gap: .45rem; direction: ltr; }
.home-promo__controls button {
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--store-line);
    border-radius: .9rem;
    background: #fff;
    color: var(--store-black);
    cursor: pointer;
}
.home-promo__controls button:hover { border-color: var(--home-accent); color: var(--home-accent); }
.home-promo__controls .store-icon { width: 1rem; height: 1rem; }
.home-promo__viewport { position: relative; overflow: hidden; border: 1px solid var(--home-border); border-radius: clamp(1.4rem, 4vw, 2.25rem); background: var(--home-surface-muted); box-shadow: 0 1rem 3rem rgba(52, 42, 37, .08); direction: ltr; touch-action: pan-y; }
.home-promo__track { display: flex; transition: transform .48s cubic-bezier(.22, 1, .36, 1); }
.home-promo__slide { position: relative; flex: 0 0 100%; aspect-ratio: 16 / 6; overflow: hidden; background: var(--home-surface-muted); }
.home-promo__slide > img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.home-promo__overlay {
    position: absolute;
    inset: 0;
    padding: clamp(1.2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, .68), transparent 65%);
    color: #fff;
    text-align: center;
    padding-block-end: clamp(4.25rem, 7vw, 5rem);
}
[dir='rtl'] .home-promo__overlay { direction: rtl; }
.home-promo__overlay strong { font-size: clamp(1rem, 2.5vw, 1.8rem); }
.home-promo__overlay small { max-width: 34rem; margin-top: .3rem; color: rgba(255, 255, 255, .75); font-size: .68rem; }
.home-promo__overlay em { margin-top: .85rem; padding: .62rem 1rem; border-radius: .8rem; background: #fff; color: #111; font-size: .65rem; font-style: normal; font-weight: 800; }
.home-promo__dots {
    position: absolute;
    inset-inline: 1rem;
    inset-block-end: .35rem;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    direction: ltr;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}
.home-promo__dots::-webkit-scrollbar { display: none; }
.home-promo__dots button {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    display: grid;
    place-items: center;
    flex: 0 0 2.75rem;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.home-promo__dots button:first-child { margin-inline-start: auto; }
.home-promo__dots button:last-child { margin-inline-end: auto; }
.home-promo__dots button::before {
    width: .5rem;
    height: .5rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, .5);
    content: '';
    transition: width .2s ease, background .2s ease;
}
.home-promo__dots button.is-active::before { width: 1.5rem; background: var(--home-accent); }

/* App-style store selections: a low landscape frame with the full dashboard
   artwork preserved above a softly blurred fill, even when the source is square. */
.home-promo--hero {
    padding-block: clamp(.7rem, 2vw, 1.35rem) 0;
    background: var(--home-bg);
    content-visibility: visible;
    contain: none;
}
.home-promo--hero .home-promo__viewport { width: min(100%, 72rem); margin-inline: auto; }
/* The slide carries its own radius (not just the viewport's) so the artwork is
   clipped to the same curve even while the track is transformed mid-swipe. */
.home-promo--hero .home-promo__slide {
    aspect-ratio: 3.6 / 1;
    background: #ece7df;
    border-radius: clamp(1.4rem, 4vw, 2.25rem);
}
.home-promo--hero .home-promo__slide > img { position: absolute; inset: 0; border-radius: inherit; }
.home-promo--hero .home-promo__backdrop {
    z-index: 0;
    object-fit: cover;
    filter: blur(22px) saturate(.82);
    opacity: .68;
    transform: scale(1.12);
}
.home-promo--hero .home-promo__artwork {
    z-index: 1;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 .55rem 1.2rem rgba(28, 23, 20, .13));
}
.home-promo--hero .home-promo__dots { inset-block-end: .15rem; }
.home-promo--hero .home-promo__dots button::before {
    background: rgba(41, 37, 34, .38);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .68);
}
.home-promo--hero .home-promo__dots button.is-active::before { background: var(--home-accent); }

.home-price { border-block: 1px solid var(--home-border); background: var(--home-bg); color: var(--home-ink); }
.home-price .home-section__head h2 { color: var(--home-ink); }
.home-price__options { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .7rem; }
.home-price__options button {
    min-height: 9.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border: 1px solid var(--home-border);
    border-radius: 1.4rem;
    background: var(--home-surface);
    color: var(--home-ink);
    text-align: start;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.home-price__options button:hover,
.home-price__options button.is-active { border-color: rgba(157, 61, 71, .5); background: var(--home-accent-soft); transform: translateY(-2px); }
.home-price__options span { color: #817872; font-size: .62rem; }
.home-price__options strong { font-size: clamp(1rem, 2vw, 1.35rem); }
.home-price__options small { color: var(--home-accent); font-size: .6rem; }
.home-price__gender {
    margin-top: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--home-border);
    border-radius: 1.35rem;
    background: var(--home-surface);
    box-shadow: 0 .55rem 1.7rem rgba(52, 42, 37, .04);
}
.home-price__gender > div:first-child { display: grid; }
.home-price__gender > div:first-child span { color: var(--home-accent); font-size: .58rem; font-weight: 750; }
.home-price__gender > div:first-child strong { margin-top: .15rem; font-size: .85rem; }
.home-price__gender > div:last-child { display: flex; gap: .55rem; }
.home-price__gender button {
    min-height: 3rem;
    padding: .7rem .9rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--home-border);
    border-radius: .95rem;
    background: var(--home-surface-muted);
    color: #665e59;
    font-size: .68rem;
    font-weight: 650;
    cursor: pointer;
}
.home-price__gender button:hover,
.home-price__gender button.is-active { border-color: rgba(157, 61, 71, .48); background: var(--home-accent-soft); color: var(--home-accent); }
.home-price__gender .store-icon { width: 1rem; height: 1rem; }
.home-price__results { margin-top: 1.25rem; padding: clamp(.85rem, 2vw, 1.25rem); border: 1px solid var(--home-border); border-radius: 1.5rem; background: var(--home-surface-muted); color: var(--home-ink); }
.home-price__summary { margin-bottom: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.home-price__summary p { margin: 0; font-size: .76rem; font-weight: 700; }
.home-price__summary button { padding: .55rem .75rem; border: 1px solid var(--store-line); border-radius: .75rem; background: #fff; color: var(--store-muted); font-size: .62rem; cursor: pointer; }
.home-price__more {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}
.home-price__more button {
    min-width: 11rem;
    min-height: 3.2rem;
    padding: .75rem 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border: 1px solid rgba(157, 61, 71, .34);
    border-radius: 1rem;
    background: var(--home-surface);
    color: var(--home-accent);
    font-size: .7rem;
    font-weight: 750;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.home-price__more button:hover { border-color: var(--home-accent); background: var(--home-accent-soft); transform: translateY(-2px); }
.home-price__more button:disabled { opacity: .55; cursor: wait; transform: none; }
.home-price__more .store-icon { width: 1rem; height: 1rem; }
.home-price__error button {
    min-height: 3rem;
    margin-top: .85rem;
    padding: .7rem 1rem;
    border: 1px solid rgba(157, 61, 71, .34);
    border-radius: .9rem;
    background: var(--home-surface);
    color: var(--home-accent);
    font-size: .68rem;
    font-weight: 750;
    cursor: pointer;
}

.home-section__head--stack { align-items: flex-start; flex-direction: column; }
.home-brand-tabs { max-width: 100%; display: flex; gap: .45rem; overflow-x: auto; padding-bottom: .25rem; scrollbar-width: none; }
.home-brand-tabs::-webkit-scrollbar { display: none; }
.home-brand-tabs button {
    min-height: 2.8rem;
    padding: .65rem .9rem;
    flex: 0 0 auto;
    border: 1px solid var(--store-line);
    border-radius: 999px;
    background: #fff;
    color: var(--store-muted);
    font-size: .68rem;
    font-weight: 700;
    cursor: pointer;
}
.home-brand-tabs button[aria-selected='true'] { border-color: rgba(157, 61, 71, .42); background: var(--home-accent-soft); color: var(--home-accent); }
.home-brand-panel__all {
    width: fit-content;
    margin: 1.2rem auto 0;
    padding: .75rem 0;
    display: flex;
    align-items: center;
    gap: .55rem;
    border-bottom: 1px solid currentColor;
    color: var(--store-ink);
    font-size: .7rem;
    font-weight: 750;
}
.home-brand-panel__all:hover { color: var(--home-accent); }
.home-brand-panel__all .store-icon { width: 1rem; height: 1rem; }

.home-product-skeleton { min-height: 22rem; border-radius: 1.35rem; background: linear-gradient(90deg, #e8e7e3 25%, #f5f4f1 40%, #e8e7e3 60%); background-size: 300% 100%; animation: homeShimmer 1.4s infinite; }
@keyframes homeShimmer { to { background-position: -100% 0; } }

/* Skip layout/paint work for sections that have not reached the viewport yet. */
@supports (content-visibility: auto) {
    .home-section,
    .home-promo:not(.home-promo--hero) {
        content-visibility: auto;
        contain-intrinsic-size: auto 52rem;
    }
}

@media (max-width: 1120px) {
    .home-hero { min-height: 37rem; padding: 2.5rem; }
    .home-hero__board { min-height: 19rem; }
    .home-hero__visual { min-height: 30rem; }
    .home-hero__visual img { height: 28rem; }
    .home-hero__visual .home-hero__product-image { width: auto; height: auto; max-height: 27rem; }
    .home-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .home-price__options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    .home-hero { min-height: 0; grid-template-columns: 1fr; gap: 1.6rem; padding: 2.5rem; }
    .home-hero__copy { align-items: stretch; }
    .home-hero__board { width: min(100%, 38rem); min-height: 17rem; margin-inline: auto; }
    .home-hero h1 { justify-content: center; }
    .home-hero__code { justify-content: center; }
    .home-primary-link { margin-inline: auto; }
    .home-hero__visual { min-height: 29rem; }
    .home-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: minmax(13.5rem, auto); }
    .home-category-card--featured { grid-column: 1 / -1; grid-row: auto; min-height: 20rem; }
    .home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-promo__slide { aspect-ratio: 2 / 1; }
}

@media (max-width: 620px) {
    .home-hero { margin-block-start: .7rem; gap: .8rem; padding: 1rem; border-radius: 1.6rem; }
    .home-hero__board { min-height: 10.5rem; padding: 1.05rem; border-radius: 1.3rem; }
    .home-hero__board::after { inset: .55rem; border-radius: 1rem; }
    .home-hero h1 { margin-top: .8rem; gap: .75rem; }
    .home-hero__number { font-size: clamp(5.5rem, 27vw, 7.6rem); -webkit-text-stroke-width: 1.5px; }
    .home-hero__name { font-size: clamp(1.45rem, 7.4vw, 2rem); }
    .home-hero__name small { margin-top: .5rem; padding-top: .45rem; }
    .home-primary-link { min-height: 3rem; margin-top: .7rem; font-size: .7rem; }
    .home-hero__visual { min-height: clamp(17rem, 76vw, 21rem); border-radius: 1.35rem; }
    .home-hero__visual::after { inset: .65rem; border-radius: 1rem; }
    .home-hero__visual img { width: min(76%, 17rem); height: clamp(16.5rem, 73vw, 20.5rem); }
    .home-hero__visual .home-hero__product-image { width: auto; height: auto; max-width: min(82%, 18rem); max-height: 20rem; padding: .45rem; }
    .home-hero__vertical { inset-block-start: 1.5rem; inset-inline-end: 1.15rem; }
    .home-section { padding-block: 3.35rem; }
    .home-section__head { align-items: flex-start; margin-bottom: 1.25rem; }
    .home-section__head h2,
    .home-promo__head h2 { font-size: 1.8rem; }
    .home-brand-rail { grid-auto-columns: 9.2rem; }
    .home-brand-card { min-height: 6.8rem; border-radius: 1.2rem; }
    .home-brand-card__media { height: 3rem; }
    .home-brand-card__media img { max-width: 6.8rem; max-height: 2.6rem; }
    .home-category-grid { grid-auto-rows: minmax(11.7rem, auto); gap: .55rem; }
    .home-category-card { min-height: 11.7rem; border-radius: 1.3rem; }
    .home-category-card--featured { min-height: 16rem; }
    .home-category-card__copy { inset-inline: .85rem; inset-block-end: .8rem; }
    .home-category-card__copy strong { font-size: .95rem; }
    .home-category-card__number { inset-block-start: .7rem; inset-inline-start: .7rem; width: 1.9rem; height: 1.9rem; }
    .home-product-grid { gap: .55rem; }
    .home-promo { padding-block: 3.35rem; }
    .home-promo.home-promo--hero { padding-block: .65rem 0; }
    .home-promo--hero .home-promo__slide { aspect-ratio: 2.7 / 1; }
    .home-promo__slide { aspect-ratio: 4 / 3; }
    .home-promo__overlay { padding-block-end: 4.25rem; }
    .home-promo__overlay small { display: none; }
    .home-price__options { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; }
    .home-price__options button { min-height: 6.8rem; border-radius: 1.15rem; }
    .home-price__options button:last-child { grid-column: 1 / -1; min-height: 5.5rem; }
    .home-price__gender { align-items: stretch; flex-direction: column; }
    .home-price__gender > div:last-child { display: grid; grid-template-columns: 1fr 1fr; }
    .home-price__gender button { justify-content: center; padding-inline: .5rem; }
    .home-price__summary { align-items: flex-start; flex-direction: column; }
    .home-price__more button { width: 100%; min-height: 3.35rem; }
}

@media (max-width: 430px) {
    .home-hero { padding: .75rem; border-radius: 1.4rem; }
    .home-hero__board { min-height: 9.8rem; padding: .9rem .8rem; border-radius: 1.15rem; }
    .home-hero__number { font-size: clamp(5rem, 26vw, 6.9rem); }
    .home-hero__name { font-size: clamp(1.35rem, 7.1vw, 1.85rem); }
    .home-hero__visual { min-height: clamp(16.5rem, 75vw, 19.5rem); }
    .home-hero__visual img { height: clamp(16rem, 72vw, 19rem); }
    .home-hero__visual .home-hero__product-image { width: auto; height: auto; max-height: 18.5rem; }
    .home-section__head h2,
    .home-promo__head h2 { font-size: clamp(1.55rem, 8vw, 1.8rem); }
    .home-section__head > a { font-size: .6rem; }
}

@media (max-width: 360px) {
    .home-hero { padding: .6rem; border-radius: 1.25rem; }
    .home-hero__board { min-height: 9.1rem; padding: .7rem .6rem; }
    .home-hero__code { font-size: .44rem; }
    .home-hero__number { font-size: 4.7rem; -webkit-text-stroke-width: 1.2px; }
    .home-hero__name { font-size: 1.25rem; }
    .home-hero__visual { min-height: 15.5rem; }
    .home-hero__visual img { height: 15.2rem; }
    .home-hero__visual .home-hero__product-image { width: auto; height: auto; max-height: 14.8rem; }
    .home-category-grid { gap: .4rem; }
    .home-product-grid { gap: .4rem; }
}

@media (hover: none) {
    .home-hero__visual:hover,
    .home-brand-card:hover,
    .home-category-card:hover > img,
    .home-price__options button:hover { transform: none; }
}

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