.storefront-hero {
    width: min(100% - 48px, 1320px);
    margin: 24px auto 32px;
    color: #fff;
}
.storefront-hero[data-device="mobile"] { display: none; }
.hero-frame {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 45%, rgba(30, 101, 181, 0.22), transparent 44%),
        #071122;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}
.hero-stage {
    position: relative;
    aspect-ratio: 3 / 1;
    isolation: isolate;
}
.hero-slide, .hero-slide a {
    position: absolute;
    inset: 0;
    display: block;
}
.hero-slide[hidden], .hero-status[hidden], .hero-controls[hidden] { display: none; }
.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hero-status {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 24px;
    display: grid;
    place-content: center;
    text-align: center;
    font-size: 18px;
    line-height: 1.4;
}
.hero-controls {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    pointer-events: none;
}
.hero-controls button {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
    background: rgba(5, 15, 32, 0.42);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 0;
    pointer-events: auto;
    transition: background-color 0.18s ease, transform 0.18s ease;
}
.hero-controls button:hover { background: rgba(25, 89, 152, 0.72); transform: translateY(-1px); }
.hero-controls button:focus-visible { outline: 2px solid #69c5ff; outline-offset: 2px; }
.hero-controls button:disabled { opacity: 0.35; cursor: default; }
.hero-controls button svg { width: 20px; height: 20px; }
.hero-arrow {
    top: 50%;
    transform: translateY(-50%);
}
.hero-arrow:hover { transform: translateY(calc(-50% - 1px)); }
.hero-prev { left: 14px; }
.hero-next { right: 14px; }
@media (max-width: 768px) {
    .storefront-hero { width: 100%; margin: 0 auto 24px; }
    .storefront-hero[data-device="desktop"] { display: none; }
    .storefront-hero[data-device="mobile"] { display: block; }
    .hero-frame { border-radius: 0; box-shadow: none; }
    .hero-stage { aspect-ratio: 1159 / 1358; }
    .hero-prev { left: 8px; }
    .hero-next { right: 8px; }
}
