/* Deer Fight Gear — Catalogue & Blog pages (pure: #000000 #FFFFFF #E60000 #C9A227) */

.catalog-page {
    background: #000000;
}

.catalog-page main {
    color: #FFFFFF;
}

.catalog-hero {
    position: relative;
    min-height: clamp(340px, 32vw, 460px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--page-hero-padding-top) var(--page-hero-padding-x) var(--page-hero-padding-bottom);
    background-color: #000000;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.7) 100%),
        var(--catalog-hero-bg, url('../images/banners/catalog-hero.jpg'));
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 3px solid #E60000;
    overflow: hidden;
}

.catalog-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.catalog-hero .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 12px;
    border: 1px solid #C9A227;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A227;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
}

.catalog-hero h1 {
    margin: 0 0 14px;
    max-width: 18ch;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.catalog-hero p {
    max-width: 58ch;
    margin: 0 0 20px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #D4D4D4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.catalog-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 5vw;
    background: #000000;
    border-bottom: 1px solid #FFFFFF;
}

.catalog-toolbar input,
.catalog-toolbar select {
    flex: 1;
    min-width: 180px;
    padding: 12px 16px;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    background: #000000;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 14px;
}

.catalog-toolbar button {
    padding: 12px 24px;
    border: 2px solid #E60000;
    border-radius: 8px;
    background: #E60000;
    color: #FFFFFF;
    font-weight: 700;
    cursor: pointer;
}

.catalog-toolbar button:hover {
    background: #000000;
    color: #FFFFFF;
}

.catalog-section {
    padding: 40px 5vw 72px;
    background: #FFFFFF;
    color: #000000;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #000000;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
    transition: border-color 0.2s ease;
}

.catalog-card:hover {
    border-color: #E60000;
}

.catalog-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #000000;
}

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

.catalog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.catalog-card__cat {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #E60000;
}

.catalog-card__title {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
    color: #000000;
}

.catalog-card__text {
    flex: 1;
    margin: 0 0 18px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #000000;
}

.catalog-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 2px solid #000000;
    border-radius: 8px;
    background: #000000;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.catalog-btn:hover {
    background: #E60000;
    border-color: #E60000;
    color: #FFFFFF;
}

.catalog-btn--outline {
    background: #FFFFFF;
    color: #000000;
}

.catalog-btn--outline:hover {
    background: #C9A227;
    border-color: #C9A227;
    color: #000000;
}

.catalog-btn--gold {
    background: #C9A227;
    border-color: #C9A227;
    color: #000000;
}

.catalog-btn--gold:hover {
    background: #b8921f;
    border-color: #b8921f;
    color: #000000;
}

/* Product detail */
.pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    padding: calc(var(--site-header-height) + 40px) 5vw 48px;
    background: #FFFFFF;
    color: #000000;
}

.pd-gallery__main {
    aspect-ratio: 1;
    border: 1px solid #000000;
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
}

.pd-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.pd-thumbs button {
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid #000000;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #000000;
}

.pd-thumbs button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-summary .eyebrow {
    color: #E60000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.pd-summary h1 {
    margin: 8px 0 16px;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.pd-specs {
    display: grid;
    gap: 12px;
    margin: 24px 0;
    padding: 20px;
    border: 1px solid #000000;
    border-radius: 12px;
    background: #FFFFFF;
}

.pd-specs div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    font-size: 14px;
}

.pd-specs dt {
    font-weight: 800;
    color: #C9A227;
}

.pd-specs dd {
    margin: 0;
}

.pd-content {
    padding: 0 5vw 48px;
    background: #FFFFFF;
    color: #111111;
}

.pd-content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.pd-content h2 {
    margin: 0 0 16px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111111;
    border-bottom: 2px solid #E60000;
    padding-bottom: 10px;
    letter-spacing: -0.01em;
}

.pd-panel p {
    color: #333333;
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

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

.pd-checklist li {
    position: relative;
    padding: 10px 0 10px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a !important;
    line-height: 1.5;
}

.pd-checklist li:last-child {
    border-bottom: none;
}

.pd-checklist li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 11px;
    color: #C9A227;
    font-size: 11px;
}

/* Blog */
.blog-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.blog-card-pro {
    display: flex;
    flex-direction: column;
    border: 1px solid #000000;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
}

.blog-card-pro__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #000000;
}

.blog-card-pro__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-pro__body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-pro__cat {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #E60000;
}

.blog-card-pro h2 {
    margin: 8px 0 12px;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: #000000;
}

.article-pro {
    max-width: 820px;
    margin: 0 auto;
    padding: calc(var(--site-header-height) + 48px) 5vw 48px;
    background: #FFFFFF;
    color: #000000;
}

.article-pro header .eyebrow {
    color: #E60000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.article-pro h1 {
    margin: 12px 0;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
}

.article-pro__meta {
    margin-bottom: 28px;
    font-size: 13px;
    color: #000000;
}

.article-pro__image {
    margin-bottom: 32px;
    border: 1px solid #000000;
    border-radius: 12px;
    overflow: hidden;
}

.article-pro__image img {
    width: 100%;
    display: block;
}

.article-pro__content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.catalog-empty {
    padding: 48px;
    text-align: center;
    border: 2px dashed #000000;
    border-radius: 12px;
    color: #000000;
}

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

    .pd-content-grid {
        grid-template-columns: 1fr;
    }

    .catalog-hero--split {
        grid-template-columns: 1fr;
    }

    .catalog-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-subcat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .catalog-grid--4,
    .catalog-subcat-grid,
    .catalog-hub-grid {
        grid-template-columns: 1fr;
    }

    .pd-specs div,
    .pd-specs--inline div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* ── Breadcrumbs ───────────────────────────────────── */

.catalog-crumb {
    margin-bottom: 18px;
}

.catalog-crumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.catalog-crumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.catalog-crumb li + li::before {
    content: '›';
    color: #C9A227;
}

.catalog-crumb a {
    color: #FFFFFF;
    text-decoration: none;
}

.catalog-crumb a:hover {
    color: #C9A227;
}

.catalog-crumb span {
    color: #C9A227;
}

.pd-hero .catalog-crumb {
    padding: calc(var(--site-header-height) + 24px) 5vw 0;
    background: #000000;
}

.pd-hero .catalog-crumb li {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Split hero ────────────────────────────────────── */

.catalog-hero--split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 32px;
    align-items: end;
    min-height: auto;
    padding-top: calc(var(--site-header-height) + 32px);
}

.catalog-hero__meta {
    margin: 18px 0 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C9A227;
}

.catalog-hero__visual {
    position: relative;
    min-height: 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #C9A227;
}

.catalog-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.catalog-hero__frame {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    pointer-events: none;
}

/* ── Section heads ─────────────────────────────────── */

.catalog-section-head {
    margin-bottom: 28px;
}

.catalog-section-head h2 {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.catalog-section-head p {
    margin: 0;
    max-width: 56ch;
    color: #000000;
    opacity: 0.72;
    line-height: 1.6;
}

.catalog-section-head--spaced {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #000000;
}

/* ── Subcategory hub ───────────────────────────────── */

.catalog-subcat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.catalog-subcat-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid #000000;
    border-radius: 14px;
    overflow: hidden;
    background: #FFFFFF;
    color: #000000;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.catalog-subcat-card:hover {
    transform: translateY(-4px);
    border-color: #E60000;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.catalog-subcat-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #000000;
}

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

.catalog-subcat-card:hover .catalog-subcat-card__media img {
    transform: scale(1.05);
}

.catalog-subcat-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    padding: 18px 18px 12px;
}

.catalog-subcat-card__body strong {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
}

.catalog-subcat-card__body em {
    flex: 1;
    font-style: normal;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.68);
}

.catalog-subcat-card__count {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    background: #000000;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-subcat-card__cta {
    padding: 14px 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(90deg, rgba(230, 0, 0, 0.08), rgba(201, 162, 39, 0.12));
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #E60000;
}

/* ── Product grid 4-up ─────────────────────────────── */

.catalog-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.catalog-card--pro {
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.catalog-card--pro .catalog-card__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 8px;
}

.catalog-card--pro .catalog-card__actions .catalog-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 12px;
    font-size: 11px;
    letter-spacing: 0.04em;
    border-radius: 999px;
    white-space: nowrap;
}

.catalog-btn--white {
    background: #FFFFFF;
    border-color: #d8d8de;
    color: #000000;
}

.catalog-btn--white:hover {
    background: #f5f5f5;
    border-color: #000000;
    color: #000000;
}

.catalog-card--pro:hover {
    box-shadow: 0 16px 40px rgba(230, 0, 0, 0.12);
}

.catalog-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(201, 162, 39, 0.18) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.catalog-card--pro:hover .catalog-card__shine {
    opacity: 1;
}

.catalog-card__media {
    position: relative;
}

/* ── Catalogue hub cards ───────────────────────────── */

.catalog-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 12px;
}

.catalog-hub-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #000000;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
    color: #000000;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.catalog-hub-card:hover {
    border-color: #C9A227;
    transform: translateY(-2px);
}

.catalog-hub-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #000000;
}

.catalog-hub-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-hub-card__body {
    display: grid;
    gap: 6px;
    padding: 14px;
}

.catalog-hub-card__body strong {
    font-size: 0.95rem;
    font-weight: 800;
}

.catalog-hub-card__body em {
    font-style: normal;
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.65);
}

.catalog-hub-card__meta {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #E60000;
}

/* ── Product detail pro ────────────────────────────── */

.pd-hero {
    background: #000000;
}

.pd-layout--pro {
    padding-top: 32px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
}

.pd-lead {
    margin: 0 0 20px;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.78);
}

.pd-specs--inline {
    background: #000000;
    color: #FFFFFF;
    border-color: #000000;
}

.pd-specs--inline dt {
    color: #C9A227;
}

.pd-specs--inline dd {
    color: #FFFFFF;
}

.pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pd-content--pro {
    padding-bottom: 64px;
}

.pd-panel {
    padding: 26px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    background: #FFFFFF;
    color: #111111;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pd-thumbs button.is-active {
    border-color: #E60000;
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.45);
}

.catalog-section--related {
    background: #F4F4F4;
    border-top: 3px solid #C9A227;
}

/* ── Header mega menu (catalog) ────────────────────── */

.dropdown-panel--catalog {
    width: min(920px, calc(100vw - 40px));
    padding: 20px;
    border: 2px solid #C9A227;
    border-radius: 14px;
    background: #000000;
}

.catalog-mega {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.catalog-mega__col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.catalog-mega__head {
    display: block;
    padding-bottom: 8px;
    border-bottom: 2px solid #E60000;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}

.catalog-mega__head:hover {
    color: #C9A227;
}

.catalog-mega__subs {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.catalog-mega__subs a {
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.35;
}

.catalog-mega__subs a:hover {
    color: #C9A227;
}

.catalog-mega__solo {
    margin: 0;
    font-size: 11px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}

.catalog-mega__all {
    display: inline-flex;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #C9A227;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
}

.drawer-accordion--catalog {
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.drawer-menu-list .drawer-accordion--catalog .drawer-accordion-trigger {
    min-height: 46px;
    padding: 0 22px;
    border-bottom: 1px solid #f0f0f3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.drawer-menu-list .drawer-accordion--catalog {
    margin: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: #FFFFFF;
}

.drawer-menu-list .drawer-accordion--catalog.is-open .drawer-accordion-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 8px;
    padding: 10px 14px 14px;
    background: #FFFFFF;
    border-bottom: 1px solid #f0f0f3;
}

.drawer-menu-list .drawer-accordion--catalog .drawer-accordion-link {
    padding: 8px 10px;
    font-size: 10px;
    line-height: 1.35;
}

.drawer-menu-list .drawer-accordion--catalog .drawer-accordion-link--parent {
    grid-column: 1 / -1;
    padding: 6px 10px 10px;
    margin-bottom: 2px;
    border-bottom: 1px solid #f0f0f3;
    border-radius: 0;
}

.nav-dropdown--catalog .dropdown-panel--catalog {
    right: auto;
    left: 0;
}

@media (max-width: 1100px) {
    .catalog-mega {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ── Category hub (hero + sub nav + products) ───────── */

.cat-hub {
    background: #FFFFFF;
}

.catalog-page .cat-hub {
    overflow-x: visible;
}

.cat-hub-hero {
    position: relative;
    min-height: clamp(380px, 35vw, 500px);
    display: flex;
    align-items: flex-end;
    padding: var(--page-hero-padding-top) var(--page-hero-padding-x) var(--page-hero-padding-bottom);
    background-color: #000000;
    background-image: var(--cat-hero-image);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 3px solid #E60000;
}

.cat-hub-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.68) 45%, rgba(0, 0, 0, 0.92) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.78) 100%);
    pointer-events: none;
}

.cat-hub-hero--split {
    --cat-banner-height: clamp(440px, 34vw, 560px);
    position: relative;
    left: auto;
    transform: none;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: 0 !important;
    padding: var(--site-header-height) 0 0 !important;
    background: #000000;
    background-image: none;
    border-bottom: none;
    overflow: visible;
}

.cat-hub-hero--split .cat-hub-hero__shade {
    display: none;
}

.cat-hub-hero__frame--banner {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    height: var(--cat-banner-height);
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
    background: #000000;
    overflow: hidden;
}

.cat-hub-hero__banner-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: var(--cat-banner-height);
    margin: 0;
    padding: 0;
    border: 0;
    object-fit: cover;
    object-position: 76% top;
    image-rendering: auto;
}

.cat-hub-hero--native-banner {
    --cat-banner-height: auto;
}

.cat-hub-hero--native-banner .cat-hub-hero__frame--banner {
    display: block;
    height: auto;
    overflow: hidden;
    background: #000000;
}

.cat-hub-hero--native-banner .cat-hub-hero__banner-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: unset;
    object-position: unset;
}

.cat-hub-hero__accent-line {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    z-index: 2;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(
        180deg,
        #E60000 0%,
        #FF4444 16%,
        #C9A227 48%,
        #FFFFFF 68%,
        #C9A227 84%,
        #E60000 100%
    );
    box-shadow: 0 0 14px rgba(230, 0, 0, 0.5);
}

.cat-hub-hero__banner-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 36%, rgba(0, 0, 0, 0.18) 54%, transparent 66%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 42%, rgba(0, 0, 0, 0.28) 100%);
}

.cat-hub-hero__content-panel {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 clamp(24px, 4vw, 56px) 0 clamp(32px, 5.5vw, 80px);
    pointer-events: none;
}

.cat-hub-hero__home-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-bottom: 10px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.68);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.22s ease;
}

.cat-hub-hero__home-back:hover {
    color: #C9A227;
}

.cat-hub-hero__home-back svg {
    flex-shrink: 0;
}

.cat-hub-hero__content-panel .cat-hub-hero__content {
    position: relative;
    pointer-events: auto;
    width: min(100%, 560px);
    max-width: 44vw;
    padding: 0 0 0 clamp(22px, 2.4vw, 28px);
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.cat-hub-hero__content-panel .cat-hub-hero__content::after {
    display: none;
}

.cat-hub-hero__frame--overlay {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cat-hub-hero--split .cat-hub-hero__visual {
    position: relative;
    z-index: 0;
    width: 100%;
    margin: 0;
    background: #000000;
    line-height: 0;
}

.cat-hub-hero--split .cat-hub-hero__visual::before {
    display: none;
}

.cat-hub-hero--split .cat-hub-hero__visual img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: unset;
    object-position: unset;
    display: block;
}

.cat-hub-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.82) 28%, rgba(0, 0, 0, 0.42) 46%, rgba(0, 0, 0, 0.08) 58%, transparent 68%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 22%, transparent 72%, rgba(0, 0, 0, 0.45) 100%);
}

.cat-hub-hero--split .cat-hub-hero__inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: calc(var(--site-header-height) + 40px) clamp(24px, 6vw, 96px) 64px clamp(24px, 6vw, 96px);
    background: none;
    box-shadow: none;
    isolation: auto;
    pointer-events: none;
}

.cat-hub-hero--split .cat-hub-hero__content {
    pointer-events: auto;
}

.cat-hub-hero--split .cat-hub-hero__inner::before,
.cat-hub-hero--split .cat-hub-hero__inner::after {
    display: none;
}

.cat-hub-hero__content {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-width: 46vw;
}

.cat-hub-hero__title--sport {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 0.28em;
    margin: 0 0 8px;
    padding-bottom: 8px;
    max-width: none;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.55rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cat-hub-hero__title--sport span {
    display: inline;
}

.cat-hub-hero__title--sport span:last-child {
    color: #E60000;
    text-shadow: 0 0 24px rgba(230, 0, 0, 0.25);
}

.cat-hub-hero--split .cat-hub-hero__lead {
    max-width: 46ch;
    margin: 0 0 10px;
    padding-left: 9px;
    border-left: 2px solid rgba(201, 162, 39, 0.35);
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.72);
}

.cat-hub-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
}

.cat-hub-hero__chips li {
    padding: 4px 9px;
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.06);
    color: rgba(255, 255, 255, 0.74);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cat-hub-hero--split .cat-hub-hero__actions {
    gap: 8px;
    margin-top: 0;
}

.cat-hub-hero--split .cat-hub-hero__actions .catalog-btn {
    min-height: 34px;
    padding: 6px 14px;
    border-width: 1.5px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.cat-hub-hero--split .cat-hub-hero__actions .catalog-btn:hover {
    transform: translateY(-1px);
}

.cat-hub-hero--split .cat-hub-hero__btn-outline {
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    background: rgba(0, 0, 0, 0.22) !important;
    backdrop-filter: blur(8px);
}

.cat-hub-hero--split .cat-hub-hero__btn-outline:hover {
    color: #000000 !important;
    border-color: #C9A227 !important;
    background: #C9A227 !important;
}

.cat-hub-hero__points {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.cat-hub-hero__points li {
    position: relative;
    padding-left: 18px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.cat-hub-hero__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #C9A227;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.cat-hub-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.cat-hub-hero__btn-outline {
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.42) !important;
    background: rgba(0, 0, 0, 0.22) !important;
}

.cat-hub-hero__btn-outline:hover {
    color: #C9A227 !important;
    border-color: #C9A227 !important;
    background: rgba(201, 162, 39, 0.08) !important;
}

.cat-hub-hero__brand {
    margin: 0 0 20px;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.cat-hub-hero__brand::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin-top: 14px;
    background: linear-gradient(90deg, #E60000, #C9A227);
}

.cat-hub-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 0;
}

.cat-hub-hero .catalog-crumb {
    margin-bottom: 22px;
}

.cat-hub-hero__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border: 1px solid #C9A227;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A227;
}

.cat-hub-hero__eyebrow::before {
    content: none;
}

.cat-hub-hero__title {
    margin: 0 0 14px;
    max-width: 14ch;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    text-transform: uppercase;
}

.cat-hub-hero__lead {
    margin: 0 0 24px;
    max-width: min(100%, 56ch);
    font-size: 1rem;
    line-height: 1.7;
    color: #B0B0B0;
}

.cat-hub-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-hub-hero__badges span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.cat-hub-subnav {
    margin: 0 0 28px;
    padding: 0 0 22px;
    border-bottom: 1px solid #ececf0;
    background: transparent;
}

.cat-hub-subnav__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.cat-hub-subnav__item {
    flex: 0 1 auto;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid #d8d8de;
    border-radius: 999px;
    background: #FFFFFF;
    color: #1a1a1a;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: normal;
    text-align: left;
    line-height: 1.25;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cat-hub-subnav__item small {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #f0f0f3;
    font-size: 10px;
    font-weight: 800;
    color: #5c5c66;
}

.cat-hub-subnav__item:hover {
    border-color: #C9A227;
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.cat-hub-subnav__item.is-active {
    border-color: #E60000;
    background: #FFFFFF;
    color: #000000;
    box-shadow: 0 8px 22px rgba(230, 0, 0, 0.12);
}

.cat-hub-subnav__item.is-active small {
    background: #E60000;
    color: #FFFFFF;
}

.cat-hub-products {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 40px 5vw 72px;
    background: #FFFFFF;
}

.cat-hub-products--solo {
    padding-top: 48px;
}

.cat-hub-panel {
    display: none;
    animation: catHubFade 0.35s ease;
}

.cat-hub-panel.is-active {
    display: block;
}

@keyframes catHubFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cat-hub-panel__head {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ececf0;
}

.cat-hub-panel__head h2 {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #000000;
}

.cat-hub-panel__head p {
    margin: 0;
    max-width: 62ch;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5c5c66;
}

.cat-hub .catalog-grid--4 {
    gap: 22px;
}

.cat-hub .catalog-card--pro {
    border: 1px solid #ececf0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.cat-hub .catalog-card--pro:hover {
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.cat-hub .catalog-empty {
    padding: 48px 24px;
    border: 1px dashed #d8d8de;
    border-radius: 18px;
    background: #fafafa;
    text-align: center;
}

@media (max-width: 900px) {
    .cat-hub-hero__shade {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 18%, rgba(0, 0, 0, 0.45) 88%),
            linear-gradient(105deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.22) 40%, transparent 70%);
    }

    .cat-hub-hero--split {
        --cat-banner-height: clamp(360px, 52vw, 480px);
        width: 100%;
        max-width: 100%;
        left: auto;
        transform: none;
        min-height: 0 !important;
        padding-top: var(--site-header-height) !important;
        overflow: visible;
    }

    .cat-hub-hero__frame--banner,
    .cat-hub-hero__banner-img {
        height: var(--cat-banner-height);
    }

    .cat-hub-hero__banner-img {
        width: 100%;
        object-position: 72% top;
    }

    .cat-hub-hero--native-banner .cat-hub-hero__frame--banner,
    .cat-hub-hero--native-banner .cat-hub-hero__banner-img {
        width: 100%;
        height: auto;
    }

    .cat-hub-hero__content-panel {
        align-items: flex-end;
        padding: 0 5vw 24px;
    }

    .cat-hub-hero__content-panel .cat-hub-hero__content {
        width: 100%;
        max-width: none;
        padding: 0 0 0 22px;
    }

    .cat-hub-hero__accent-line {
        top: 0;
        bottom: 0;
    }

    .cat-hub-hero__banner-scrim {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.08) 32%, rgba(0, 0, 0, 0.78) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, transparent 72%);
    }

    .cat-hub-hero__title--sport {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
    }

    .cat-hub-hero__title {
        max-width: none;
    }

    .cat-hub-subnav__item {
        padding: 10px 14px;
        font-size: 10px;
    }

    .cat-hub-products {
        padding-top: 28px;
        padding-bottom: 56px;
    }
}

@media (max-width: 640px) {
    .cat-hub-hero:not(.cat-hub-hero--split) {
        padding-inline: 24px;
    }

    .cat-hub-hero:not(.cat-hub-hero--split) .cat-hub-hero__title {
        max-width: none;
        font-size: clamp(2rem, 9vw, 2.35rem);
    }

    .cat-hub-hero--split .cat-hub-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cat-hub-hero--split .cat-hub-hero__actions .catalog-btn {
        width: 100%;
    }

    .cat-hub-hero__lead {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .cat-hub-hero__badges span {
        font-size: 9px;
        padding: 7px 12px;
    }
}
