.hs-hero {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, #0a84ff 0%, #6a5cff 45%, #ff5f9e 100%);
    color: #fff;
    padding: 2.4rem 1.4rem;
}

.hs-hero__gradient {
    position: absolute;
    inset: -20% auto auto -10%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.3), transparent 70%);
}

.hs-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hs-hero h1 {
    margin: 0;
    font-size: clamp(30px, 5vw, 48px);
    letter-spacing: -0.03em;
}

.hs-hero p {
    color: rgba(255,255,255,.92);
}

.hs-hero__actions {
    margin-top: .8rem;
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}

/* ── Archive / catalog hero (helmets, accessories, brands) ── */
.hs-archive-hero {
    margin-bottom: 1.75rem;
    padding: 1.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.06), rgba(106, 92, 255, 0.05));
    border: 1px solid rgba(10, 132, 255, 0.12);
    border-radius: var(--hs-radius);
}

.hs-archive-hero__title {
    margin: 0 0 0.4rem;
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--hs-text);
}

.hs-archive-hero__subtitle {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--hs-muted);
    max-width: 56ch;
}

.hs-section--archive .hs-catalog__topbar {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
}

.hs-section--archive .hs-catalog__count {
    font-weight: 600;
    color: var(--hs-text);
}

.hs-section--archive .hs-chip {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(10, 132, 255, 0.1);
    color: var(--hs-accent);
    font-size: 0.8rem;
    text-decoration: none;
    transition: background 0.2s;
}

.hs-section--archive .hs-chip:hover {
    background: rgba(10, 132, 255, 0.18);
}

/* Stacked filter bar (brands sidebar) */
.hs-filter-bar--stacked {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hs-filter-bar__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--hs-muted);
    margin-bottom: -0.25rem;
}

.hs-catalog--brands .hs-catalog__filters {
    min-width: 260px;
}

.hs-brand-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.helmet-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .8fr);
    gap: 1rem;
    margin: 1rem 0;
}

.helmet-single__image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.helmet-single__placeholder {
    min-height: 260px;
    display: grid;
    place-items: center;
    color: var(--hs-muted);
}

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

.hs-catalog {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1rem;
}

.hs-catalog__filters {
    position: sticky;
    top: 92px;
    align-self: start;
    max-height: calc(100vh - 110px);
    overflow: auto;
}

.hs-catalog__filters-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .6rem;
}

.hs-mobile-filter-close {
    display: none;
    border: 1px solid var(--hs-border);
    background: #fff;
    border-radius: 999px;
    padding: .3rem .7rem;
}

.hs-filter-group {
    border: 1px solid rgba(11, 18, 32, 0.08);
    border-radius: 12px;
    margin-bottom: .55rem;
    background: rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.hs-filter-group summary {
    list-style: none;
    cursor: pointer;
    padding: .65rem .75rem;
    font-weight: 700;
}

.hs-filter-group > :not(summary) {
    padding: 0 .75rem .75rem;
}

.hs-filter-checks {
    display: grid;
    gap: .45rem;
}

.hs-filter-checks label {
    font-size: 14px;
    color: var(--hs-muted);
}

.hs-filter-scroll {
    max-height: 220px;
    overflow: auto;
}

.hs-pill-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
}

.hs-pill-input {
    position: relative;
}

.hs-pill-input input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hs-pill-input span {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    border: 1px solid var(--hs-border);
    border-radius: 999px;
    padding: .35rem .5rem;
    font-size: 13px;
    background: #fff;
}

.hs-pill-input input:checked + span {
    border-color: rgba(10, 132, 255, 0.45);
    background: rgba(10, 132, 255, 0.12);
    color: #084298;
}

.hs-price-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.hs-price-range input,
.hs-filter-group input[type='text'] {
    border: 1px solid var(--hs-border);
    border-radius: 10px;
    padding: .5rem .6rem;
    width: 100%;
}

.hs-filter-actions {
    display: flex;
    gap: .55rem;
    position: sticky;
    bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    padding-top: .5rem;
    margin-top: .35rem;
}

.hs-filter-actions .hs-btn {
    flex: 1;
}

.hs-catalog__results {
    min-width: 0;
}

.hs-catalog__topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: .75rem;
    align-items: center;
    margin-bottom: .8rem;
}

.hs-catalog__count {
    font-weight: 700;
}

.hs-catalog__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.hs-chip {
    font-size: 12px;
    text-decoration: none;
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.2);
    color: #084298;
    border-radius: 999px;
    padding: .25rem .55rem;
}

.hs-catalog__sort select {
    border: 1px solid var(--hs-border);
    border-radius: 10px;
    padding: .5rem .65rem;
    background: #fff;
}

.hs-mobile-tools {
    display: none;
}

.helmet-mobile-pdp {
    display: grid;
    gap: .8rem;
    margin-bottom: 80px;
}

.helmet-mobile-pdp__head h1 {
    margin: .2rem 0;
    font-size: clamp(22px, 6vw, 28px);
}

.helmet-mobile-pdp__rating {
    margin: 0;
    color: var(--hs-muted);
    font-size: 13px;
}

.helmet-mobile-pdp__price {
    margin: .25rem 0 0;
    font-size: 24px;
    font-weight: 700;
}

.helmet-mobile-pdp__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.helmet-mobile-pdp__size-help {
    margin: .55rem 0 0;
    font-size: 13px;
}

.helmet-mobile-pdp__accordion details summary {
    cursor: pointer;
    font-weight: 700;
}

.helmet-mobile-pdp__accordion details > :not(summary) {
    margin-top: .6rem;
}

.helmet-mobile-atc {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 58;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    padding: .6rem .75rem;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--hs-border);
    backdrop-filter: blur(10px);
}

.helmet-mobile-atc__meta strong {
    display: block;
    line-height: 1.1;
}

.helmet-mobile-atc__meta span {
    display: block;
    color: var(--hs-muted);
    font-size: 12px;
}

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

    .hs-catalog__filters {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(88vw, 360px);
        z-index: 60;
        max-height: 100vh;
        transform: translateX(-105%);
        transition: transform .2s ease;
        border-radius: 0;
        border-left: 0;
        border-top: 0;
        border-bottom: 0;
    }

    .hs-catalog__filters.is-open {
        transform: translateX(0);
    }

    .hs-mobile-filter-close {
        display: inline-flex;
    }

    .hs-catalog__topbar {
        grid-template-columns: 1fr;
    }

    .hs-mobile-tools {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 55;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: .5rem;
        padding: .55rem .7rem;
        background: rgba(255, 255, 255, 0.95);
        border-top: 1px solid var(--hs-border);
        backdrop-filter: blur(10px);
    }

    .hs-mobile-tools button {
        border: 1px solid var(--hs-border);
        border-radius: 999px;
        padding: .5rem .6rem;
        background: #fff;
        font-weight: 600;
    }

    body.hs-filter-open {
        overflow: hidden;
    }
}

@media (min-width: 961px) {
    .helmet-mobile-atc {
        display: none;
    }
}

/* Variant Grid Premium Styles */
.hs-variant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.hs-variant-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--hs-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s ease;
    height: 100%;
}

.hs-variant-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(11, 18, 32, 0.06);
    border-color: rgba(10, 132, 255, 0.3);
}

.hs-variant-item.is-active {
    border-color: var(--hs-accent);
    box-shadow: 0 0 0 2px rgba(10, 132, 255, 0.2);
    background: rgba(10, 132, 255, 0.02);
}

.hs-variant-item__image {
    aspect-ratio: 1;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.hs-variant-item__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.hs-variant-item:hover .hs-variant-item__image img {
    transform: scale(1.05);
}

.hs-variant-item__label {
    padding: 0.6rem 0.6rem 0.2rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--hs-text);
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hs-variant-item__price {
    padding: 0 0.6rem 0.6rem;
    font-size: 13px;
    color: var(--hs-muted);
    text-align: center;
}

.hs-variant-item.is-active .hs-variant-item__label {
    color: var(--hs-accent);
}

/* Brand Hub Premium Styles */
.brand-hub__hero {
    background: linear-gradient(135deg, #0b1220 0%, #1a2744 100%);
    color: #fff;
    padding: 3rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-hub__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.brand-hub__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.brand-hub__logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
}

.brand-hub__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.brand-hub__meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.brand-hub__motto {
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    font-family: serif;
}

.brand-hub__stats {
    margin-bottom: 2.5rem;
}

.brand-hub__layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: start;
}

.brand-hub__layout--no-story {
    display: flex;
    justify-content: center;
}

.brand-hub__layout--no-story .brand-hub__sidebar {
    width: 100%;
    max-width: 500px;
}

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

.brand-hub__ethos {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(10, 132, 255, 0.04);
    border-left: 4px solid var(--hs-accent);
    border-radius: 0 12px 12px 0;
}

.brand-hub__ethos h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--hs-accent);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.brand-hub__ethos blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--hs-text);
    margin: 0;
    line-height: 1.6;
}

.brand-hub__sidebar h3 {
    margin-top: 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--hs-border);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.brand-hub__cta {
    margin-top: 1.5rem;
    border-top: 1px solid var(--hs-border);
    padding-top: 1rem;
}

/* Category Discovery Cards */
.brand-hub__discovery {
    margin-bottom: 4rem;
}

.brand-hub__section-title {
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.link-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.link-card {
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--hs-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(11, 18, 32, 0.08);
    border-color: rgba(10, 132, 255, 0.3);
}

.link-card__image {
    aspect-ratio: 16/9;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-bottom: 1px solid var(--hs-border);
}

.link-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.link-card:hover .link-card__image img {
    transform: scale(1.08);
}

.link-card__content {
    padding: 1rem;
}

.link-card__content h3 {
    margin: 0 0 .25rem;
    font-size: 1.1rem;
    color: var(--hs-text);
}

.link-card__content span {
    font-size: 0.85rem;
    color: var(--hs-muted);
    font-weight: 500;
}

/* Updated Catalog Layout */
.brand-hub__catalog {
    display: grid;
    gap: 5rem;
}

.brand-hub__category .hs-section__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--hs-border);
}

.brand-hub__category h2 {
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Nav */
.brand-hub__nav {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--hs-border);
}

.brand-hub__nav-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.brand-hub__nav-prev,
.brand-hub__nav-next {
    flex: 1;
}

.brand-hub__nav-next {
    text-align: right;
}

.brand-hub__nav a {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--hs-text);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.brand-hub__nav a:hover {
    background: #f8fafc;
    border-color: var(--hs-border);
    transform: translateY(-2px);
}

.brand-hub__nav span {
    font-size: 0.8rem;
    color: var(--hs-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.brand-hub__nav strong {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Media Carousel & Responsive Video */
.hs-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.hs-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.hs-carousel__track {
    display: flex;
    width: 100%;
}

.hs-carousel__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    aspect-ratio: 16/9; /* Force consistent aspect for mixed media */
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hs-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Contain to show full product */
}

.hs-responsive-embed {
    width: 100%;
    height: 100%;
}

.hs-responsive-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Brand Spotlight Specifics */
.brand-hub__spotlight {
    border: 0;
    background: #000;
}

.brand-hub__spotlight .hs-responsive-embed {
    aspect-ratio: 16/9;
}

/* ── Homepage: quick links ── */
.hs-home-quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    margin: 1rem 0 1.5rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--hs-border);
}

.hs-home-quick-links__label {
    font-size: 0.85rem;
    color: var(--hs-muted);
    margin-right: 0.25rem;
}

.hs-home-quick-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hs-accent);
    text-decoration: none;
}

.hs-home-quick-links a:hover {
    text-decoration: underline;
}

/* ── Homepage: brand grid ── */
.hs-home-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.hs-home-brand-grid .entity-card {
    margin: 0;
}

/* ── Homepage: accessories CTA ── */
.hs-home-cta {
    margin-top: 2rem;
}

.hs-home-cta__inner {
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.08), rgba(106, 92, 255, 0.1));
    border: 1px solid rgba(10, 132, 255, 0.2);
    border-radius: var(--hs-radius);
    padding: 2rem;
}

.hs-home-cta__content h2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.hs-home-cta__content p {
    margin: 0 0 1rem;
    color: var(--hs-muted);
    max-width: 52ch;
}

/* ── Homepage: safety teaser ── */
.hs-home-safety-teaser__inner {
    padding: 1.5rem;
    text-align: center;
}

.hs-home-safety-teaser__inner h2 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.hs-home-safety-teaser__inner p {
    margin: 0 0 1rem;
    color: var(--hs-muted);
    font-size: 0.95rem;
}

/* ── Accessories page: category cards + catalog ── */
.hs-accessories-categories {
    margin: 2rem 0 3rem;
}

.hs-accessories-categories__title {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.hs-accessories-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.hs-accessories-catalog {
    margin-top: 2rem;
}

.hs-accessories-catalog__title {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

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

.hs-catalog__empty a {
    color: var(--hs-accent);
    font-weight: 600;
}
