.store-hero {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.store-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(var(--primary-rgb), .12), transparent 34%),
        radial-gradient(circle at 86% 72%, rgba(var(--secondary-rgb), .09), transparent 36%),
        linear-gradient(180deg, var(--surface), var(--bg) 58%);
    pointer-events: none;
}

.store-hero__shell {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, 1280px);
    min-height: min(760px, calc(100dvh - 72px));
    margin-inline: auto;
    padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.25rem, 5vw, 4.5rem);
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.store-hero__content {
    max-width: 640px;
}

.store-hero[data-hero-enhanced] .store-hero__brand,
.store-hero[data-hero-enhanced] h1,
.store-hero[data-hero-enhanced] p,
.store-hero[data-hero-enhanced] .store-hero__actions,
.store-hero[data-hero-enhanced] .store-hero__trust,
.store-hero[data-hero-enhanced] .store-hero__visual {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity .7s cubic-bezier(.2, .8, .2, 1),
        transform .7s cubic-bezier(.2, .8, .2, 1);
}

.store-hero[data-hero-enhanced].is-visible .store-hero__brand,
.store-hero[data-hero-enhanced].is-visible h1,
.store-hero[data-hero-enhanced].is-visible p,
.store-hero[data-hero-enhanced].is-visible .store-hero__actions,
.store-hero[data-hero-enhanced].is-visible .store-hero__trust,
.store-hero[data-hero-enhanced].is-visible .store-hero__visual {
    opacity: 1;
    transform: translateY(0);
}

.store-hero[data-hero-enhanced].is-visible h1 {
    transition-delay: .06s;
}

.store-hero[data-hero-enhanced].is-visible p {
    transition-delay: .12s;
}

.store-hero[data-hero-enhanced].is-visible .store-hero__actions {
    transition-delay: .18s;
}

.store-hero[data-hero-enhanced].is-visible .store-hero__trust {
    transition-delay: .24s;
}

.store-hero[data-hero-enhanced].is-visible .store-hero__visual {
    transition-delay: .16s;
}

.store-hero__brand {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-bottom: 1.35rem;
}

.store-hero__brand img {
    max-height: 42px;
    width: auto;
}

.store-hero__brand span {
    color: var(--primary);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.store-hero h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(2.75rem, 6.3vw, 6.75rem);
    line-height: .95;
    font-weight: 950;
    letter-spacing: 0;
}

.store-hero p {
    max-width: 58ch;
    margin: 1.4rem 0 0;
    color: var(--text-muted);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.8;
}

.store-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.8rem;
}

.store-hero__primary,
.store-hero__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 8px;
    padding: .85rem 1.25rem;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 900;
    transition: border-color .2s ease, color .2s ease, background .2s ease, filter .2s ease;
}

.store-hero__primary {
    background: var(--primary);
    color: var(--text-hover);
}

.store-hero__primary:hover,
.store-hero__primary:focus-visible {
    filter: brightness(.94);
}

.store-hero__secondary {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
}

.store-hero__secondary:hover,
.store-hero__secondary:focus-visible {
    border-color: var(--primary);
    color: var(--primary);
}

.store-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.2rem;
}

.store-hero__trust span {
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-muted);
    padding: .45rem .75rem;
    font-size: .75rem;
    font-weight: 800;
}

.store-hero__visual {
    position: relative;
    min-width: 0;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.store-hero[data-pointer-zone="left"] .store-hero__visual {
    transform: translate3d(-8px, -4px, 0);
}

.store-hero[data-pointer-zone="right"] .store-hero__visual {
    transform: translate3d(8px, 4px, 0);
}

[dir="rtl"] .store-hero[data-pointer-zone="left"] .store-hero__visual {
    transform: translate3d(8px, -4px, 0);
}

[dir="rtl"] .store-hero[data-pointer-zone="right"] .store-hero__visual {
    transform: translate3d(-8px, 4px, 0);
}

.store-hero__image-frame {
    position: relative;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    min-height: clamp(420px, 58vw, 640px);
    overflow: hidden;
}

.store-hero__image-frame img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
}

.store-hero.is-visible .store-hero__image-frame {
    animation: storeHeroImageDrift 9s ease-in-out infinite;
}

.store-hero__category-rail {
    position: absolute;
    inset-inline-start: -1rem;
    top: 1.25rem;
    display: grid;
    gap: .5rem;
    max-width: 210px;
}

.store-hero__category-rail a {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    backdrop-filter: blur(14px);
    color: var(--text);
    padding: .7rem .85rem;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(var(--primary-rgb), .10);
}

.store-hero__category-rail a:hover,
.store-hero__category-rail a:focus-visible {
    border-color: var(--primary);
    color: var(--primary);
}

.store-hero.is-visible .store-hero__category-rail a {
    animation: storeHeroChipFloat 5.8s ease-in-out infinite;
}

.store-hero.is-visible .store-hero__category-rail a:nth-child(2) {
    animation-delay: .45s;
}

.store-hero.is-visible .store-hero__category-rail a:nth-child(3) {
    animation-delay: .9s;
}

.store-hero__product-strip {
    position: absolute;
    inset-inline-end: -1rem;
    bottom: 1.25rem;
    display: grid;
    gap: .65rem;
    width: min(310px, 74%);
}

.store-hero__mini-product {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: .75rem;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    backdrop-filter: blur(14px);
    color: var(--text);
    padding: .65rem;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(var(--primary-rgb), .12);
}

.store-hero__mini-product span {
    grid-row: span 2;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: var(--bg);
    overflow: hidden;
}

.store-hero__mini-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-hero__mini-product strong {
    min-width: 0;
    color: var(--text);
    font-size: .83rem;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-hero__mini-product em {
    color: var(--primary);
    font-size: .78rem;
    font-style: normal;
    font-weight: 950;
}

.store-hero__mini-product:hover,
.store-hero__mini-product:focus-visible {
    border-color: var(--primary);
}

.store-hero.is-visible .store-hero__mini-product {
    animation: storeHeroProductFloat 6.4s ease-in-out infinite;
}

.store-hero.is-visible .store-hero__mini-product:nth-child(2) {
    animation-delay: .65s;
}

.store-hero :focus-visible {
    outline: 3px solid rgba(var(--primary-rgb), .35);
    outline-offset: 2px;
}

@media (max-width: 1080px) {
    .store-hero__shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .store-hero__content {
        max-width: 760px;
    }

    .store-hero__category-rail {
        inset-inline-start: 1rem;
    }

    .store-hero__product-strip {
        inset-inline-end: 1rem;
    }
}

@media (max-width: 700px) {
    .store-hero__shell {
        width: min(100% - 1rem, 1280px);
        padding-top: 2rem;
    }

    .store-hero h1 {
        font-size: clamp(2.35rem, 13vw, 4rem);
    }

    .store-hero__actions {
        flex-direction: column;
    }

    .store-hero__primary,
    .store-hero__secondary {
        width: 100%;
    }

    .store-hero__image-frame {
        min-height: 390px;
    }

    .store-hero__category-rail,
    .store-hero__product-strip {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: .75rem;
    }

    .store-hero__category-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .store-hero__category-rail a {
        text-align: center;
        font-size: .72rem;
        padding: .65rem .5rem;
    }
}

@keyframes storeHeroImageDrift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -8px, 0) scale(1.012);
    }
}

@keyframes storeHeroChipFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -7px, 0);
    }
}

@keyframes storeHeroProductFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 8px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .store-hero *,
    .store-hero *::before,
    .store-hero *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
