@charset "UTF-8";

:root {
    --ink: #121212;
    --ink-2: #272727;
    --paper: #f7f3eb;
    --paper-2: #eee7da;
    --white: #fffefa;
    --gold: #8a6300;
    --gold-bright: #f1c84b;
    --gold-dark: #6f4f00;
    --muted: #5f5a50;
    --line: rgba(18, 18, 18, .14);
    --line-light: rgba(255, 255, 255, .16);
    --success: #2d7d46;
    --shadow: 0 24px 80px rgba(26, 22, 13, .12);
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius: 3px;
    --shell: min(1440px, calc(100% - 64px));
    --header-height: 88px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 148px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.drawer-open,
body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: .98;
    letter-spacing: -.045em;
}

em {
    color: var(--gold);
    font-weight: 400;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 12px 18px;
    color: var(--ink);
    background: var(--gold-bright);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--gold-bright);
    outline-offset: 3px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow--gold {
    color: var(--gold-bright);
}

.eyebrow--dark {
    color: var(--ink);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--gold {
    color: var(--ink);
    background: var(--gold-bright);
    border-color: var(--gold-bright);
}

.button--gold:hover {
    background: #ffdc69;
    border-color: #ffdc69;
}

.button--dark {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.button--dark:hover {
    color: var(--ink);
    background: var(--white);
}

.button--ghost {
    color: var(--white);
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .38);
    backdrop-filter: blur(10px);
}

.button--ghost:hover {
    background: rgba(255, 255, 255, .13);
}

.button--outline {
    color: var(--ink);
    background: transparent;
    border-color: var(--ink);
}

.button--outline:hover {
    color: var(--white);
    background: var(--ink);
}

.button--full {
    width: 100%;
}

.button:disabled {
    cursor: not-allowed;
    opacity: .62;
    transform: none;
}

.icon-button {
    display: inline-grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.icon-button svg,
.header-action svg,
.site-search svg,
.wishlist-button svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Announcement and header */
.announcement {
    position: relative;
    z-index: 40;
    color: #f5efe1;
    background: #090909;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.announcement__inner {
    display: grid;
    min-height: 38px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    font-size: 11px;
    letter-spacing: .055em;
}

.announcement p {
    margin: 0;
}

.announcement p:last-child {
    justify-self: end;
}

.announcement__center {
    color: rgba(255, 255, 255, .62);
}

.live-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 0 5px rgba(241, 200, 75, .12);
}

.site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    color: var(--ink);
    background: rgba(255, 254, 250, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-main {
    display: grid;
    min-height: var(--header-height);
    grid-template-columns: auto minmax(280px, 680px) auto;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand span {
    display: grid;
    line-height: 1;
}

.brand strong {
    font-size: 21px;
    letter-spacing: -.04em;
}

.brand small {
    margin-top: 5px;
    color: var(--gold-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .31em;
}

.site-search {
    display: grid;
    height: 48px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding-left: 16px;
    border: 1px solid rgba(18, 18, 18, .22);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.site-search:focus-within {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(217, 167, 39, .15);
}

.site-search svg {
    width: 19px;
    color: var(--muted);
}

.site-search input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

.site-search input::placeholder {
    color: #9a948a;
}

.site-search button {
    height: 100%;
    padding: 0 20px;
    border: 0;
    color: var(--white);
    background: var(--ink);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.header-action > span:not(.cart-icon-wrap) {
    display: grid;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.header-action small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 400;
}

.cart-icon-wrap {
    position: relative;
    display: grid;
    place-items: center;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -11px;
    display: grid;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    place-items: center;
    border-radius: 99px;
    color: var(--ink);
    background: var(--gold-bright);
    font-size: 10px;
    line-height: 1;
}

.menu-toggle {
    display: none;
}

.primary-nav {
    border-top: 1px solid var(--line);
}

.primary-nav__inner {
    display: flex;
    min-height: 54px;
    align-items: stretch;
    justify-content: space-between;
}

.primary-nav a {
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    font-size: 13px;
    font-weight: 700;
    transition: color .2s ease, border-color .2s ease;
}

.primary-nav a:hover {
    color: var(--gold-dark);
    border-color: var(--gold);
}

.primary-nav .sale-link {
    gap: 8px;
    color: var(--gold-dark);
}

.sale-link small {
    padding: 3px 6px;
    color: var(--ink);
    background: var(--gold-bright);
    font-size: 8px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

/* Hero */
.hero {
    position: relative;
    min-height: min(750px, calc(100vh - 180px));
    overflow: hidden;
    color: var(--white);
    background: #0c0c0c;
}

.hero__image,
.hero__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    object-fit: cover;
    object-position: center;
}

.hero__veil {
    background:
        linear-gradient(90deg, rgba(3, 3, 3, .95) 0%, rgba(3, 3, 3, .83) 31%, rgba(3, 3, 3, .2) 69%, rgba(3, 3, 3, .12) 100%),
        linear-gradient(0deg, rgba(3, 3, 3, .68) 0%, transparent 34%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: inherit;
    grid-template-columns: minmax(0, 780px) 190px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-block: 88px 110px;
}

.hero__copy {
    max-width: 790px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #f8e9b7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-kicker i {
    width: 9px;
    height: 9px;
    border: 2px solid var(--gold-bright);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(241, 200, 75, .13);
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 28px;
    font-size: clamp(58px, 6.6vw, 108px);
    font-weight: 500;
    letter-spacing: -.065em;
}

.hero h1 em {
    display: block;
    color: var(--gold-bright);
}

.hero__copy > p {
    max-width: 635px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__proof {
    display: flex;
    margin-top: 54px;
    gap: 0;
}

.hero__proof > div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 146px;
    padding-right: 26px;
    margin-right: 26px;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.hero__proof > div:last-child {
    border-right: 0;
}

.hero__proof strong {
    color: var(--gold-bright);
    font-size: 31px;
    line-height: 1;
}

.hero__proof span {
    color: rgba(255, 255, 255, .63);
    font-size: 11px;
    letter-spacing: .05em;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero-ticket {
    align-self: end;
    margin-bottom: 92px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(8, 8, 8, .7);
    backdrop-filter: blur(16px);
    transform: rotate(-2deg);
}

.hero-ticket > span,
.hero-ticket small {
    color: rgba(255, 255, 255, .58);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-ticket strong {
    display: block;
    margin: 7px 0 12px;
    color: var(--gold-bright);
    font-size: 44px;
    line-height: 1;
}

.hero-ticket p {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.45;
}

.hero-scroll {
    position: absolute;
    z-index: 2;
    right: 32px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .65);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    transform: rotate(90deg) translateX(100%);
    transform-origin: right bottom;
}

.hero-scroll i {
    width: 54px;
    height: 1px;
    background: var(--gold-bright);
}

.hero > picture,
.category-card > picture,
.jersey-card > picture {
    position: absolute;
    inset: 0;
    display: block;
}

.product-card__media > picture {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card__media > picture img {
    display: block;
}

/* Sections */
.section {
    padding-block: 110px;
}

.section-head {
    margin-bottom: 48px;
}

.section-head--split {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
    align-items: end;
    gap: 70px;
}

.section-head h2 {
    max-width: 850px;
    margin-bottom: 0;
    font-size: clamp(48px, 5vw, 82px);
    font-weight: 500;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.section-head--light h2,
.section-head--light p {
    color: var(--white);
}

.section-head--light h2 em,
.standard-intro h2 em {
    color: var(--gold-bright);
}

.section-head--light p {
    color: rgba(255, 255, 255, .63);
}

.categories {
    overflow: hidden;
    background: var(--paper);
}

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

.category-card {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.category-card:nth-child(5),
.category-card:nth-child(6) {
    grid-column: span 1;
}

.category-card:nth-child(7) {
    grid-column: span 2;
}

.category-card img,
.category-card__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.category-card img {
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}

.category-card__shade {
    background: linear-gradient(0deg, rgba(5, 5, 5, .92), rgba(5, 5, 5, .05) 70%);
}

.category-card:hover img {
    transform: scale(1.04);
}

.category-card__number {
    position: absolute;
    top: 18px;
    left: 18px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
}

.category-card__content {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: grid;
}

.category-card__content small {
    margin-bottom: 8px;
    color: var(--gold-bright);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.category-card__content strong {
    font-size: 35px;
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1;
}

.category-card__content > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .26);
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    text-transform: uppercase;
}

/* Sunday rush */
.sunday-rush {
    position: relative;
    overflow: hidden;
    color: var(--ink);
    background: var(--gold-bright);
    border-block: 1px solid rgba(18, 18, 18, .35);
}

.sunday-rush__track {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    transform: rotate(-2deg) scale(1.1);
}

.sunday-rush__track::before {
    color: rgba(18, 18, 18, .07);
    content: "SUNDAY RUSH · SUNDAY RUSH · SUNDAY RUSH · SUNDAY RUSH ·";
    font-size: 116px;
    font-weight: 700;
    letter-spacing: -.04em;
    white-space: nowrap;
}

.sunday-rush__inner {
    position: relative;
    display: grid;
    min-height: 260px;
    grid-template-columns: auto minmax(320px, 1fr) auto auto;
    align-items: center;
    gap: 46px;
}

.rush-number {
    font-size: clamp(78px, 8vw, 130px);
    font-weight: 700;
    letter-spacing: -.08em;
    line-height: .8;
}

.sunday-rush h2 {
    margin-bottom: 12px;
    font-size: 54px;
    font-weight: 500;
}

.sunday-rush p {
    max-width: 540px;
    margin: 0;
    line-height: 1.55;
}

.countdown {
    display: flex;
    gap: 7px;
}

.countdown > div {
    display: grid;
    width: 74px;
    min-height: 78px;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(18, 18, 18, .35);
    background: rgba(255, 255, 255, .24);
}

.countdown strong {
    font-size: 28px;
    line-height: 1;
}

.countdown span {
    margin-top: 7px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* Products */
.products-section {
    background: var(--white);
}

.section-head--products {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.product-filters button {
    padding: 9px 15px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    transition: background .2s ease, color .2s ease;
}

.product-filters button:hover,
.product-filters button.is-active {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.search-result-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 16px 20px;
    border-left: 3px solid var(--gold);
    background: var(--paper);
}

.search-result-note p {
    margin: 0;
}

.search-result-note a {
    color: var(--gold-dark);
    font-weight: 700;
    text-decoration: underline;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px 18px;
}

.product-card {
    min-width: 0;
}

.product-card.is-hidden {
    display: none;
}

.product-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: .89;
    background: #f0ebe2;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.025);
}

.product-badge,
.product-discount {
    position: absolute;
    top: 14px;
    z-index: 2;
    padding: 7px 9px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.product-badge {
    left: 14px;
    color: var(--white);
    background: var(--ink);
}

.product-discount {
    right: 14px;
    color: var(--ink);
    background: var(--gold-bright);
}

.wishlist-button {
    position: absolute;
    z-index: 2;
    top: 51px;
    right: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.wishlist-button svg {
    width: 17px;
    transition: fill .2s ease, color .2s ease;
}

.wishlist-button.is-saved svg {
    color: var(--gold-dark);
    fill: var(--gold-bright);
}

.quick-view {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 42px;
    border: 0;
    color: var(--white);
    background: rgba(18, 18, 18, .92);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.product-card:hover .quick-view,
.quick-view:focus-visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card__body {
    padding-top: 18px;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.rating {
    color: var(--gold-dark);
    letter-spacing: 0;
}

.rating small {
    color: var(--muted);
}

.product-card h3 {
    min-height: 44px;
    margin: 10px 0 13px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.12;
}

.product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
}

.product-price strong {
    font-size: 20px;
}

.product-price del {
    color: #6b655d;
    font-size: 13px;
}

.product-price small {
    margin-left: auto;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-disclaimer {
    min-height: 34px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.35;
}

.add-form {
    margin-top: 17px;
}

.add-form .button {
    min-height: 46px;
    justify-content: space-between;
    padding-inline: 16px;
    font-size: 12px;
}

.empty-results {
    padding: 80px 30px;
    border: 1px solid var(--line);
    text-align: center;
}

.empty-results > span {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
}

.empty-results h3 {
    margin: 18px 0;
    font-size: 38px;
    font-weight: 500;
}

.empty-results p {
    color: var(--muted);
}

/* Jersey collection */
.jersey-edit {
    padding-block: 110px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

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

.jersey-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #080808;
}

.jersey-card img,
.jersey-card__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.jersey-card img {
    object-fit: cover;
    transition: transform .6s ease;
}

.jersey-card:hover img {
    transform: scale(1.035);
}

.jersey-card__veil {
    background: linear-gradient(0deg, rgba(4, 4, 4, .94), rgba(4, 4, 4, .04) 76%);
}

.jersey-card > div {
    position: absolute;
    right: 26px;
    bottom: 26px;
    left: 26px;
}

.jersey-card > div > span {
    color: var(--gold-bright);
    font-size: 9px;
    letter-spacing: .14em;
}

.jersey-card h3 {
    margin: 10px 0 12px;
    font-size: 41px;
    font-weight: 500;
}

.jersey-card p {
    max-width: 320px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .67);
    font-size: 14px;
}

.jersey-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .27);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Shop by need */
.shop-needs {
    background: var(--paper-2);
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
}

.need-card {
    position: relative;
    display: grid;
    min-height: 330px;
    align-content: space-between;
    padding: 24px;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    overflow: hidden;
    transition: color .25s ease, background .25s ease;
}

.need-card::before {
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(18, 18, 18, .13);
    border-radius: 50%;
    content: "";
    transition: transform .35s ease;
}

.need-card:hover {
    color: var(--white);
    background: var(--ink);
}

.need-card:hover::before {
    border-color: rgba(255, 255, 255, .18);
    transform: scale(1.35);
}

.need-card > span {
    font-size: 11px;
    letter-spacing: .14em;
}

.need-card small {
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.need-card h3 {
    margin: 12px 0;
    font-size: 38px;
    font-weight: 500;
}

.need-card p {
    max-width: 210px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.need-card:hover p {
    color: rgba(255, 255, 255, .62);
}

.need-card > i {
    position: absolute;
    right: 24px;
    bottom: 24px;
    font-style: normal;
    font-size: 24px;
}

/* Our standard */
.our-standard {
    padding-block: 120px;
    color: var(--white);
    background:
        radial-gradient(circle at 15% 15%, rgba(217, 167, 39, .15), transparent 28%),
        #0b0b0b;
}

.standard-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(500px, 1.2fr);
    align-items: start;
    gap: 100px;
}

.standard-intro {
    position: sticky;
    top: 190px;
}

.standard-intro h2 {
    margin-bottom: 30px;
    font-size: clamp(49px, 5vw, 78px);
    font-weight: 500;
}

.standard-intro p {
    color: rgba(255, 255, 255, .64);
    font-size: 17px;
    line-height: 1.75;
}

.service-list {
    border-top: 1px solid var(--line-light);
}

.service-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 28px;
    padding: 34px 0;
    border-bottom: 1px solid var(--line-light);
}

.service-item > span {
    color: var(--gold-bright);
    font-size: 12px;
    letter-spacing: .14em;
}

.service-item h3 {
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 500;
}

.service-item p {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, .58);
}

/* Footer */
.site-footer {
    color: #ede7db;
    background: #090909;
}

.footer-newsletter {
    background: #171717;
    border-bottom: 1px solid var(--line-light);
}

.footer-newsletter__inner {
    display: grid;
    min-height: 300px;
    grid-template-columns: 1fr minmax(380px, .65fr);
    align-items: center;
    gap: 80px;
}

.footer-newsletter h2 {
    max-width: 780px;
    margin-bottom: 16px;
    font-size: clamp(42px, 4vw, 65px);
    font-weight: 500;
}

.footer-newsletter p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .56);
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
}

.newsletter-form input {
    min-width: 0;
    padding: 15px 0;
    border: 0;
    outline: 0;
    color: var(--white);
    background: transparent;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .38);
}

.newsletter-form button {
    padding: 0 18px;
    border: 0;
    color: var(--ink);
    background: var(--gold-bright);
    font-weight: 700;
    opacity: .7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 70px;
    padding-block: 86px;
}

.brand--footer {
    margin-bottom: 28px;
    color: var(--white);
}

.brand--footer img {
    width: 54px;
    height: 54px;
}

.brand--footer small {
    color: var(--gold-bright);
}

.footer-brand > p {
    max-width: 470px;
    color: rgba(255, 255, 255, .56);
    font-size: 14px;
    line-height: 1.75;
}

.footer-contact {
    display: grid;
    margin-top: 30px;
    padding-left: 18px;
    border-left: 2px solid var(--gold);
}

.footer-contact span,
.footer-contact small {
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
}

.footer-contact strong {
    margin: 2px 0;
    color: var(--gold-bright);
    font-size: 16px;
}

.footer-grid nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-grid nav h3 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -.02em;
}

.footer-grid nav a,
.footer-grid nav > span {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    transition: color .2s ease;
}

.footer-grid nav a:hover {
    color: var(--gold-bright);
}

.footer-grid nav > span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-grid nav small {
    padding: 1px 5px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 99px;
    font-size: 7px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.footer-confidence {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-block: 1px solid var(--line-light);
}

.footer-confidence > div {
    display: flex;
    min-height: 118px;
    align-items: center;
    gap: 18px;
    padding: 20px 30px;
    border-right: 1px solid var(--line-light);
}

.footer-confidence > div:last-child {
    border-right: 0;
}

.footer-confidence strong {
    color: var(--gold-bright);
    font-size: 28px;
}

.footer-confidence span {
    color: rgba(255, 255, 255, .64);
    font-size: 11px;
    letter-spacing: .08em;
    line-height: 1.45;
    text-transform: uppercase;
}

.footer-bottom {
    display: grid;
    min-height: 105px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:nth-child(2) {
    justify-self: center;
    text-align: center;
}

.footer-bottom div {
    display: flex;
    gap: 18px;
}

/* Cart drawer, modal and toast */
.drawer-backdrop {
    position: fixed;
    z-index: 80;
    inset: 0;
    background: rgba(0, 0, 0, .62);
    opacity: 0;
    transition: opacity .25s ease;
}

.drawer-backdrop.is-visible {
    opacity: 1;
}

.cart-drawer {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    display: grid;
    width: min(460px, 100%);
    height: 100dvh;
    grid-template-rows: auto 1fr auto;
    background: var(--white);
    box-shadow: -30px 0 80px rgba(0, 0, 0, .28);
    transform: translateX(105%);
    transition: transform .32s cubic-bezier(.2, .75, .2, 1);
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-drawer__head,
.cart-drawer__foot {
    padding: 28px;
}

.cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.cart-drawer__head .eyebrow {
    margin-bottom: 8px;
}

.cart-drawer__head h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 500;
}

.cart-drawer__body {
    overflow-y: auto;
    padding: 28px;
}

.empty-cart {
    display: grid;
    min-height: 100%;
    place-items: center;
    align-content: center;
    text-align: center;
}

.empty-cart__icon {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold-dark);
    font-size: 20px;
}

.empty-cart h3 {
    margin: 22px 0 8px;
    font-size: 29px;
    font-weight: 500;
}

.empty-cart p {
    max-width: 280px;
    margin-bottom: 24px;
    color: var(--muted);
}

.cart-lines {
    display: grid;
    gap: 16px;
}

.cart-line {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.cart-line img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    background: var(--paper);
}

.cart-line div {
    display: grid;
}

.cart-line p {
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 700;
}

.cart-line small {
    color: var(--muted);
    font-size: 10px;
}

.cart-line strong {
    margin-top: 4px;
    font-size: 14px;
}

.cart-drawer__foot {
    border-top: 1px solid var(--line);
}

.cart-drawer__foot > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
}

.cart-drawer__foot > div strong {
    font-size: 22px;
}

.cart-drawer__foot > small {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 9px;
    text-align: center;
}

.quick-modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, .72);
}

.quick-modal[hidden] {
    display: none;
}

.quick-modal__card {
    position: relative;
    width: min(500px, 100%);
    padding: 42px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.quick-modal__card > .icon-button {
    position: absolute;
    top: 18px;
    right: 18px;
}

.quick-modal h2 {
    margin-bottom: 18px;
    font-size: 45px;
    font-weight: 500;
}

.quick-modal p {
    margin-bottom: 28px;
    color: var(--muted);
}

.toast {
    position: fixed;
    z-index: 110;
    right: 24px;
    top: 182px;
    max-width: 370px;
    padding: 15px 20px;
    color: var(--white);
    background: var(--success);
    box-shadow: var(--shadow);
    font-size: 13px;
    animation: toast-in .35s ease both;
}

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

/* Responsive */
@media (max-width: 1240px) {
    :root {
        --shell: min(100% - 40px, 1180px);
    }

    .header-main {
        gap: 20px;
    }

    .site-search {
        max-width: 480px;
    }

    .header-action--desktop {
        display: none !important;
    }

    .primary-nav__inner {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 34px;
        scrollbar-width: none;
    }

    .primary-nav__inner::-webkit-scrollbar {
        display: none;
    }

    .primary-nav a {
        flex: 0 0 auto;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 720px) 160px;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-card:nth-child(7) {
        grid-column: span 1;
    }

    .sunday-rush__inner {
        grid-template-columns: auto 1fr auto;
    }

    .sunday-rush__inner > .button {
        grid-column: 2 / 4;
        justify-self: start;
        margin-top: -22px;
    }

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

    .footer-grid {
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 38px;
    }
}

@media (max-width: 900px) {
    :root {
        --shell: min(100% - 32px, 820px);
        --header-height: 72px;
    }

    .announcement__inner {
        min-height: 34px;
        grid-template-columns: 1fr auto;
    }

    .announcement__center {
        display: none;
    }

    .header-main {
        grid-template-columns: auto 1fr auto;
    }

    .menu-toggle {
        display: inline-grid;
        width: 40px;
        height: 40px;
    }

    .brand {
        justify-self: center;
    }

    .brand img {
        width: 41px;
        height: 41px;
    }

    .site-search {
        position: absolute;
        top: calc(100% + 1px);
        right: 16px;
        left: 16px;
        display: none;
        max-width: none;
        box-shadow: var(--shadow);
    }

    .site-search.is-open {
        display: grid;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        width: 100%;
        max-height: calc(100vh - 105px);
        overflow-y: auto;
        border-top: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 24px 40px rgba(0, 0, 0, .15);
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav__inner {
        display: grid;
        padding-block: 12px 20px;
        gap: 0;
        overflow: visible;
    }

    .primary-nav a {
        min-height: 48px;
        border-bottom: 1px solid var(--line);
    }

    .primary-nav a:last-child {
        border-bottom: 0;
    }

    .hero {
        min-height: 720px;
    }

    .hero__image {
        object-position: 62% center;
    }

    .hero__veil {
        background: linear-gradient(90deg, rgba(3, 3, 3, .93), rgba(3, 3, 3, .42)), linear-gradient(0deg, rgba(3, 3, 3, .75), transparent 42%);
    }

    .hero__inner {
        grid-template-columns: 1fr;
        padding-block: 76px 110px;
    }

    .hero__copy {
        max-width: 680px;
    }

    .hero-ticket,
    .hero-scroll {
        display: none;
    }

    .section,
    .jersey-edit {
        padding-block: 82px;
    }

    .section-head--split,
    .section-head--products,
    .standard-grid,
    .footer-newsletter__inner {
        grid-template-columns: 1fr;
    }

    .section-head--split {
        gap: 25px;
    }

    .section-head--products {
        display: grid;
        align-items: start;
    }

    .product-filters {
        justify-content: flex-start;
    }

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

    .category-card:nth-child(7) {
        grid-column: span 2;
    }

    .sunday-rush__inner {
        grid-template-columns: auto 1fr;
        gap: 30px;
        padding-block: 44px;
    }

    .countdown {
        grid-column: 2;
    }

    .sunday-rush__inner > .button {
        grid-column: 2;
        margin-top: 0;
    }

    .jersey-grid {
        grid-template-columns: 1fr;
    }

    .jersey-card {
        min-height: 470px;
    }

    .standard-grid {
        gap: 55px;
    }

    .standard-intro {
        position: static;
    }

    .footer-newsletter__inner {
        gap: 38px;
        padding-block: 65px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-grid nav:last-child {
        grid-column: 2;
    }

    .footer-confidence {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-confidence > div:nth-child(2) {
        border-right: 0;
    }

    .footer-confidence > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line-light);
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-block: 28px;
        text-align: center;
    }

    .footer-bottom p:nth-child(2) {
        justify-self: stretch;
    }

    .footer-bottom div {
        justify-content: center;
    }
}

@media (max-width: 620px) {
    :root {
        --shell: calc(100% - 24px);
    }

    .announcement p:first-child {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .announcement p:last-child {
        font-size: 0;
    }

    .announcement p:last-child .live-dot {
        margin-right: 0;
    }

    .brand {
        gap: 7px;
    }

    .brand strong {
        font-size: 17px;
    }

    .brand small {
        font-size: 7px;
    }

    .header-actions {
        gap: 12px;
    }

    .hero {
        min-height: 730px;
    }

    .hero__image {
        object-position: 70% center;
        opacity: .82;
    }

    .hero__veil {
        background: linear-gradient(90deg, rgba(3, 3, 3, .94), rgba(3, 3, 3, .45)), linear-gradient(0deg, rgba(3, 3, 3, .89), transparent 55%);
    }

    .hero__inner {
        align-items: end;
        padding-block: 70px 78px;
    }

    .hero-kicker {
        margin-bottom: 18px;
        font-size: 9px;
    }

    .hero h1 {
        font-size: clamp(51px, 16vw, 72px);
    }

    .hero__copy > p {
        font-size: 16px;
        line-height: 1.55;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__proof {
        margin-top: 34px;
    }

    .hero__proof > div {
        display: grid;
        min-width: 0;
        flex: 1;
        gap: 6px;
        padding-right: 12px;
        margin-right: 12px;
    }

    .hero__proof strong {
        font-size: 25px;
    }

    .hero__proof span {
        font-size: 8px;
    }

    .section,
    .jersey-edit,
    .our-standard {
        padding-block: 68px;
    }

    .section-head {
        margin-bottom: 34px;
    }

    .section-head h2,
    .standard-intro h2 {
        font-size: clamp(43px, 13vw, 58px);
    }

    .section-head p,
    .standard-intro p {
        font-size: 15px;
    }

    .category-grid {
        display: flex;
        margin-right: -12px;
        overflow-x: auto;
        gap: 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .category-grid::-webkit-scrollbar {
        display: none;
    }

    .category-card,
    .category-card:nth-child(7) {
        min-width: 78vw;
        min-height: 420px;
        grid-column: auto;
        scroll-snap-align: start;
    }

    .sunday-rush__inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .rush-number {
        position: absolute;
        top: 18px;
        right: 12px;
        color: rgba(18, 18, 18, .12);
        font-size: 110px;
    }

    .sunday-rush h2 {
        font-size: 49px;
    }

    .countdown,
    .sunday-rush__inner > .button {
        grid-column: 1;
    }

    .countdown > div {
        width: 70px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .product-card__media {
        aspect-ratio: .92;
    }

    .product-card h3 {
        min-height: 0;
        font-size: 24px;
    }

    .quick-view {
        opacity: 1;
        transform: none;
    }

    .product-filters {
        flex-wrap: nowrap;
        margin-right: -12px;
        padding-bottom: 6px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .product-filters::-webkit-scrollbar {
        display: none;
    }

    .product-filters button {
        flex: 0 0 auto;
    }

    .jersey-card {
        min-height: 450px;
    }

    .jersey-card img {
        object-position: 57% center;
    }

    .jersey-card h3 {
        font-size: 35px;
    }

    .needs-grid {
        grid-template-columns: 1fr;
    }

    .need-card {
        min-height: 270px;
    }

    .standard-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 42px 1fr;
        gap: 16px;
    }

    .footer-newsletter h2 {
        font-size: 42px;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
        border: 0;
        gap: 10px;
    }

    .newsletter-form input {
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, .36);
    }

    .newsletter-form button {
        min-height: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px 25px;
        padding-block: 64px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-grid nav:last-child {
        grid-column: auto;
    }

    .footer-confidence > div {
        min-height: 100px;
        padding: 16px;
        gap: 10px;
    }

    .footer-confidence strong {
        font-size: 21px;
    }

    .footer-confidence span {
        font-size: 8px;
    }

    .quick-modal__card {
        padding: 34px 24px;
    }

    .quick-modal h2 {
        font-size: 38px;
    }

    .cart-drawer__head,
    .cart-drawer__body,
    .cart-drawer__foot {
        padding: 22px;
    }

    .toast {
        right: 12px;
        top: 118px;
        left: 12px;
        max-width: none;
    }
}

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

/* Ecommerce typography and multi-sport hero slider */
body {
    line-height: 1.55;
}

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -.035em;
}

em {
    font-style: normal;
    font-weight: 750;
}

.hero-slider {
    min-height: 560px;
    isolation: isolate;
}

.hero-slider__media,
.hero-slide__media {
    position: absolute;
    inset: 0;
}

.hero-slider__media {
    z-index: 0;
    overflow: hidden;
}

.hero-slide__media {
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.025);
    transition: opacity .65s ease, transform 1.1s cubic-bezier(.2, .7, .2, 1);
}

.hero-slide__media.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slider .hero__image {
    object-position: center;
}

.hero-slider .hero__veil {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 3, 3, .96) 0%, rgba(3, 3, 3, .84) 34%, rgba(3, 3, 3, .16) 70%, rgba(3, 3, 3, .08) 100%),
        linear-gradient(0deg, rgba(3, 3, 3, .66) 0%, transparent 38%);
}

.hero-slider .hero__inner {
    min-height: 560px;
    grid-template-columns: minmax(0, 650px) 155px;
    gap: 44px;
    padding-block: 48px 90px;
}

.hero-slider .hero__copy {
    max-width: 650px;
}

.hero-slider .hero-kicker {
    margin-bottom: 16px;
    font-size: 11px;
}

.hero-slider h1 {
    max-width: 640px;
    margin-bottom: 18px;
    font-size: clamp(46px, 5vw, 76px);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: .98;
}

.hero-title__accent {
    display: block;
    color: var(--gold-bright);
}

@supports (-webkit-background-clip: text) {
    .hero-title__accent {
        background: linear-gradient(100deg, #f1c84b 5%, #fff0a5 45%, #dcae2f 75%, #f1c84b 100%);
        background-size: 220% auto;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
        animation: hero-title-shine 5s linear infinite;
    }
}

.hero-slider .hero__copy > p {
    max-width: 560px;
    margin-bottom: 24px;
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.6;
}

.hero-slider .hero__actions .button {
    min-height: 48px;
}

.hero-slider .hero__proof {
    margin-top: 30px;
}

.hero-slider .hero__proof > div {
    min-width: 126px;
    padding-right: 20px;
    margin-right: 20px;
}

.hero-slider .hero__proof strong {
    font-size: 26px;
}

.hero-slider .hero-ticket {
    align-self: center;
    margin: 0;
    padding: 18px;
    transform: none;
}

.hero-slider .hero-ticket strong {
    margin-block: 5px 9px;
    font-size: 36px;
}

.hero-slider__controls {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 16px;
    left: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 560px) 44px 44px;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

.hero-arrow,
.hero-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    color: var(--white);
    background: rgba(8, 8, 8, .48);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.hero-arrow:hover,
.hero-toggle:hover {
    color: var(--ink);
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    transform: translateY(-1px);
}

.hero-arrow svg,
.hero-toggle svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-toggle__play {
    display: none;
}

.hero-toggle.is-paused .hero-toggle__pause {
    display: none;
}

.hero-toggle.is-paused .hero-toggle__play {
    display: block;
}

.hero-dots {
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.hero-dot {
    display: grid;
    min-width: 0;
    min-height: 44px;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 9px;
    padding: 7px 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .24);
    color: rgba(255, 255, 255, .66);
    background: rgba(8, 8, 8, .42);
    cursor: pointer;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.hero-dot span {
    color: var(--gold-bright);
    font-size: 10px;
    font-weight: 800;
}

.hero-dot small {
    overflow: hidden;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-dot:hover,
.hero-dot.is-active {
    color: var(--white);
    background: rgba(18, 18, 18, .85);
    border-color: var(--gold-bright);
}

.hero-progress {
    grid-column: 1 / -1;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, .18);
}

.hero-progress i {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold-bright);
}

.hero-slider.is-playing .hero-progress i {
    animation: hero-progress var(--hero-interval, 6s) linear both;
}

.hero__copy.is-revealing .hero-kicker,
.hero__copy.is-revealing h1,
.hero__copy.is-revealing > p,
.hero__copy.is-revealing .hero__actions {
    animation: hero-copy-in .48s cubic-bezier(.2, .75, .2, 1) both;
}

.hero__copy.is-revealing h1 {
    animation-delay: .05s;
}

.hero__copy.is-revealing > p {
    animation-delay: .1s;
}

.hero__copy.is-revealing .hero__actions {
    animation-delay: .15s;
}

.section-head h2,
.sunday-rush h2,
.category-card__content strong,
.product-card h3,
.jersey-card h3,
.need-card h3,
.standard-intro h2,
.service-item h3,
.footer-newsletter h2,
.footer-grid nav h3,
.cart-drawer h2,
.quick-modal h2 {
    font-weight: 750;
}

@keyframes hero-title-shine {
    to { background-position: -220% center; }
}

@keyframes hero-copy-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-progress {
    from { width: 0; }
    to { width: 100%; }
}

@media (max-width: 900px) {
    .hero-slider {
        min-height: 590px;
    }

    .hero-slider .hero__inner {
        min-height: 590px;
        grid-template-columns: 1fr;
        align-items: center;
        padding-block: 46px 92px;
    }

    .hero-slider .hero__copy {
        max-width: 580px;
    }

    .hero-slider .hero-ticket {
        display: none;
    }

    .hero-slider__controls {
        grid-template-columns: 44px minmax(0, 1fr) 44px 44px;
    }
}

@media (max-width: 620px) {
    .hero-slider {
        min-height: 620px;
    }

    .hero-slider .hero__image {
        object-position: 72% center;
        opacity: .9;
    }

    .hero-slider .hero__veil {
        background:
            linear-gradient(90deg, rgba(3, 3, 3, .95) 0%, rgba(3, 3, 3, .78) 49%, rgba(3, 3, 3, .3) 100%),
            linear-gradient(0deg, rgba(3, 3, 3, .88) 0%, transparent 58%);
    }

    .hero-slider .hero__inner {
        min-height: 620px;
        align-items: center;
        padding-block: 40px 86px;
    }

    .hero-slider h1 {
        margin-bottom: 15px;
        font-size: clamp(40px, 12.2vw, 52px);
        letter-spacing: -.048em;
    }

    .hero-slider .hero__copy > p {
        max-width: 340px;
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-slider .hero__actions {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .hero-slider .hero__actions .button {
        width: auto;
        min-height: 46px;
        padding-inline: 14px;
        font-size: 11px;
    }

    .hero-slider .hero__proof {
        display: none;
    }

    .hero-slider__controls {
        bottom: 10px;
        grid-template-columns: 44px minmax(0, 1fr) 44px 44px;
        gap: 5px;
    }

    .hero-dot {
        grid-template-columns: 1fr;
        place-items: center;
        padding: 6px;
    }

    .hero-dot small {
        display: none;
    }
}

@media (max-width: 390px) {
    .hero-slider .hero__actions .button--ghost {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide__media,
    .hero__copy,
    .hero-title__accent,
    .hero-progress i {
        animation: none !important;
        transition: none !important;
    }
}

/* User-approved compact 300px hero */
.hero-slider,
.hero-slider .hero__inner {
    min-height: 300px;
    height: 300px;
}

.hero-slider .hero__image {
    object-position: center 12%;
}

.hero-slider .hero__inner {
    grid-template-columns: minmax(0, 570px) 1fr;
    align-items: center;
    padding-block: 18px 58px;
}

.hero-slider .hero__copy {
    max-width: 570px;
}

.hero-slider .hero-kicker {
    margin-bottom: 7px;
    font-size: 9px;
}

.hero-slider .hero-kicker i {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 3px rgba(241, 200, 75, .13);
}

.hero-slider h1 {
    max-width: 560px;
    margin-bottom: 10px;
    font-size: clamp(36px, 3.65vw, 56px);
    line-height: .96;
}

.hero-slider .hero-title__accent {
    display: inline;
}

.hero-slider .hero__copy > p {
    max-width: 540px;
    margin-bottom: 13px;
    font-size: 14px;
    line-height: 1.45;
}

.hero-slider .hero__actions {
    gap: 8px;
}

.hero-slider .hero__actions .button {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 12px;
}

.hero-slider .hero__proof,
.hero-slider .hero-ticket {
    display: none;
}

.hero-slider__controls {
    bottom: 7px;
    grid-template-columns: 40px minmax(0, 520px) 40px 40px;
    gap: 6px;
}

.hero-arrow,
.hero-toggle {
    width: 40px;
    height: 40px;
}

.hero-dot {
    min-height: 40px;
    padding: 5px 8px;
}

.hero-progress {
    height: 1px;
}

@media (max-width: 900px) {
    .hero-slider,
    .hero-slider .hero__inner {
        min-height: 300px;
        height: 300px;
    }

    .hero-slider .hero__inner {
        padding-block: 16px 56px;
    }

    .hero-slider h1 {
        font-size: clamp(34px, 7vw, 48px);
    }

    .hero-slider__controls {
        grid-template-columns: 40px minmax(0, 1fr) 40px 40px;
    }
}

@media (max-width: 620px) {
    .hero-slider,
    .hero-slider .hero__inner {
        min-height: 300px;
        height: 300px;
    }

    .hero-slider .hero__image {
        object-position: 72% center;
    }

    .hero-slider .hero__inner {
        align-items: center;
        padding-block: 14px 54px;
    }

    .hero-slider .hero-kicker {
        margin-bottom: 6px;
        font-size: 8px;
    }

    .hero-slider h1 {
        max-width: 320px;
        margin-bottom: 11px;
        font-size: clamp(31px, 9.4vw, 38px);
        line-height: .98;
    }

    .hero-slider .hero-title__accent {
        display: block;
    }

    .hero-slider .hero__copy > p,
    .hero-slider .hero__actions .button--ghost {
        display: none;
    }

    .hero-slider .hero__actions .button {
        min-height: 44px;
        padding-inline: 15px;
        font-size: 11px;
    }

    .hero-slider__controls {
        bottom: 5px;
        grid-template-columns: 40px minmax(0, 1fr) 40px 40px;
        gap: 4px;
    }

    .hero-arrow,
    .hero-toggle {
        width: 40px;
        height: 40px;
    }

    .hero-dot {
        min-height: 40px;
        padding: 4px;
    }
}

/* Compact inline sport categories directly below the hero */
#categories.section {
    padding-block: 26px 34px;
}

#categories .section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 16px;
}

#categories .section-head > div,
#categories .section-head > p {
    max-width: none;
}

#categories .section-head .eyebrow {
    margin-bottom: 5px;
}

#categories .section-head h2 {
    font-size: clamp(26px, 2.8vw, 40px);
    line-height: 1;
}

#categories .section-head > p {
    max-width: 480px;
    font-size: 13px;
    line-height: 1.5;
}

#categories .category-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 9px;
}

#categories .category-card,
#categories .category-card:nth-child(7) {
    min-width: 0;
    min-height: 122px;
    aspect-ratio: auto;
    grid-column: auto;
    border-radius: 7px;
}

#categories .category-card::after {
    opacity: .15;
}

#categories .category-card picture,
#categories .category-card picture img {
    width: 100%;
    height: 100%;
}

#categories .category-card img {
    object-position: center 42%;
}

#categories .category-card__shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .28) 72%, rgba(0, 0, 0, .12) 100%);
}

#categories .category-card__number {
    top: 9px;
    left: 10px;
    width: 26px;
    height: 26px;
    font-size: 8px;
}

#categories .category-card__content {
    right: 10px;
    bottom: 10px;
    left: 10px;
}

#categories .category-card__content small,
#categories .category-card__content > span {
    display: none;
}

#categories .category-card__content strong {
    font-size: clamp(15px, 1.25vw, 19px);
    font-weight: 750;
    letter-spacing: -.025em;
}

#categories .category-card:hover img {
    transform: scale(1.045);
}

@media (max-width: 1080px) {
    #categories .category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    #categories .category-card:nth-child(7) {
        grid-column: auto;
    }
}

@media (max-width: 620px) {
    #categories.section {
        padding-block: 20px 28px;
    }

    #categories .section-head {
        display: block;
        margin-bottom: 13px;
    }

    #categories .section-head h2 {
        font-size: 28px;
    }

    #categories .section-head > p {
        display: none;
    }

    #categories .category-grid {
        display: flex;
        margin-right: -12px;
        padding-right: 12px;
        overflow-x: auto;
        gap: 8px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    #categories .category-grid::-webkit-scrollbar {
        display: none;
    }

    #categories .category-card,
    #categories .category-card:nth-child(7) {
        flex: 0 0 128px;
        min-width: 128px;
        min-height: 100px;
        scroll-snap-align: start;
    }

    #categories .category-card__content strong {
        font-size: 15px;
    }
}

/* User-supplied product media — private preview */
.product-card__media-link,
.product-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.product-picture img.product-image--supplied {
    object-fit: contain;
    object-position: center;
    padding: 22px;
    background: #fff;
}

.product-card--supplied:hover .product-image--supplied {
    transform: scale(1.015);
}

.image-status {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 12px;
    padding: 7px 9px;
    border: 1px solid rgba(15, 15, 15, .14);
    background: rgba(255, 255, 255, .92);
    color: #2f2c27;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.image-status--supplied {
    background: rgba(15, 15, 15, .9);
    color: #fff;
}

.product-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.product-card__summary {
    display: -webkit-box;
    min-height: 42px;
    margin: 9px 0 14px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rating--pending {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.jersey-card--supplier {
    min-height: 430px;
    background: #f3f0e9;
}

.jersey-card--supplier > picture {
    position: absolute;
    inset: 0;
    display: block;
}

.jersey-card--supplier img {
    object-fit: contain;
    object-position: center 18%;
    padding: 24px 24px 138px;
    background: #fff;
}

.jersey-card--supplier .jersey-card__veil {
    background: linear-gradient(0deg, rgba(5, 5, 5, .98) 0, rgba(5, 5, 5, .89) 30%, rgba(5, 5, 5, 0) 63%);
}

.jersey-card--supplier h3 {
    font-size: clamp(26px, 3vw, 38px);
}

@media (max-width: 720px) {
    .product-picture img.product-image--supplied {
        padding: 16px;
    }

    .jersey-card--supplier {
        min-height: 390px;
    }

    .jersey-card--supplier img {
        padding: 18px 18px 145px;
        object-position: center 14%;
    }
}

/* Ready Anna journal and content-page system */
.catalogue-count { margin: 12px 0 0; color: var(--muted); font-size: .86rem; }
.catalogue-count strong { color: var(--ink); font-size: 1rem; }
.home-guides { background: #f4f1e9; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.blog-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid rgba(18,18,18,.12); border-radius: 18px; background: #fff; box-shadow: 0 18px 55px rgba(18,18,18,.07); }
.blog-card__media { display: block; overflow: hidden; aspect-ratio: 16/10; background: #ece9e1; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
.blog-card:hover .blog-card__media img, .blog-card:focus-within .blog-card__media img { transform: scale(1.035); }
.blog-card__body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.blog-card__body > span { color: #786f61; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.blog-card h3 { margin: 12px 0 10px; font-size: clamp(1.12rem,1.5vw,1.42rem); line-height: 1.22; }
.blog-card h3 a { color: var(--ink); text-decoration: none; }
.blog-card h3 a:hover, .blog-card h3 a:focus-visible { color: #8e6811; }
.blog-card p { margin: 0; color: #625d55; font-size: .93rem; line-height: 1.65; }
.blog-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 20px; }
.blog-card__foot small { color: #7c756b; white-space: nowrap; }
.text-link { color: #7d5c0c; font-size: .88rem; font-weight: 800; text-decoration: none; }
.text-link:hover, .text-link:focus-visible { color: #3d2c05; text-decoration: underline; text-underline-offset: 4px; }
.page-main { min-height: 60vh; background: #faf8f2; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: rgba(255,255,255,.68); font-size: .78rem; }
.breadcrumbs a { color: #f2d680; text-decoration: none; }
.breadcrumbs a:hover, .breadcrumbs a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.article-hero { overflow: hidden; background: #11110f; color: #fff; }
.article-hero__grid { display: grid; min-height: 470px; grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr); align-items: stretch; }
.article-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 64px 56px 64px 0; }
.article-hero h1 { max-width: 850px; margin: 14px 0 18px; font-size: clamp(2.25rem,4vw,4.8rem); line-height: 1.02; letter-spacing: -.045em; }
.article-deck { max-width: 730px; margin: 0; color: rgba(255,255,255,.74); font-size: clamp(1rem,1.4vw,1.15rem); line-height: 1.7; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 26px; color: rgba(255,255,255,.66); font-size: .78rem; }
.article-meta span + span::before { content: '·'; margin-right: 20px; color: #d5b24b; }
.article-hero__media { min-height: 420px; margin: 0; background: #e8e4da; }
.article-hero__media img { width: 100%; height: 100%; object-fit: contain; background: #f2f0ea; }
.article-layout { display: grid; grid-template-columns: minmax(0,760px) minmax(260px,340px); justify-content: space-between; gap: 70px; padding-top: 74px; padding-bottom: 84px; }
.article-content section + section { margin-top: 48px; padding-top: 44px; border-top: 1px solid rgba(18,18,18,.11); }
.article-content h2 { margin: 0 0 18px; font-size: clamp(1.55rem,2.5vw,2.25rem); line-height: 1.14; }
.article-content p, .article-content li { color: #4f4a42; font-size: 1rem; line-height: 1.82; }
.article-content p { margin: 0 0 18px; }
.article-content ul { margin: 22px 0 0; padding-left: 22px; }
.article-content li + li { margin-top: 10px; }
.article-aside { align-self: start; position: sticky; top: 130px; }
.article-aside__card { padding: 28px; border-radius: 18px; background: #161613; color: #fff; }
.article-aside__card .eyebrow { color: #f2d680; }
.article-aside__card h2 { margin: 12px 0 14px; font-size: 1.45rem; line-height: 1.2; }
.article-aside__card p { margin: 0 0 22px; color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.65; }
.article-aside__contact { display: grid; gap: 6px; margin-top: 14px; padding: 20px; border: 1px solid rgba(18,18,18,.12); border-radius: 14px; background: #fff; }
.article-aside__contact a { color: #7d5c0c; overflow-wrap: anywhere; }
.related-guides { border-top: 1px solid rgba(18,18,18,.1); background: #f1eee6; }
.blog-grid--related { grid-template-columns: repeat(2,minmax(0,1fr)); }
.page-hero { padding: 78px 0; background: #151512; color: #fff; }
.page-hero--compact { min-height: 420px; display: grid; align-items: center; }
.page-hero h1 { max-width: 900px; margin: 14px 0 18px; font-size: clamp(2.2rem,5vw,5rem); letter-spacing: -.045em; line-height: 1.02; }
.page-hero p { max-width: 680px; color: rgba(255,255,255,.72); line-height: 1.7; }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

@media (max-width: 980px) {
    .blog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .blog-card:first-child { grid-column: 1/-1; }
    .article-hero__grid, .article-layout { grid-template-columns: 1fr; }
    .article-hero__copy { padding: 56px 0 40px; }
    .article-hero__media { min-height: 360px; }
    .article-layout { gap: 42px; }
    .article-aside { position: static; }
}

@media (max-width: 620px) {
    .blog-grid, .blog-grid--related { grid-template-columns: 1fr; }
    .blog-card:first-child { grid-column: auto; }
    .blog-card__body { padding: 18px; }
    .article-hero__copy { padding: 38px 0 30px; }
    .article-hero h1 { font-size: clamp(2rem,10.5vw,3rem); }
    .article-hero__media { min-height: 280px; }
    .article-layout { padding-top: 46px; padding-bottom: 58px; }
    .article-content section + section { margin-top: 36px; padding-top: 34px; }
    .article-meta { display: grid; gap: 6px; }
    .article-meta span + span::before { content: none; }
}

/* Ready Anna company, contact, policy and error pages */
.info-hero {
    background:
        radial-gradient(circle at 78% 22%, rgba(241, 200, 75, .18), transparent 32%),
        linear-gradient(135deg, #11110f, #1e1c17);
}

.info-hero__inner {
    max-width: 1100px;
}

.info-hero .breadcrumbs {
    margin-bottom: 30px;
}

.info-hero h1 {
    max-width: 980px;
}

.draft-notice {
    display: grid;
    max-width: 760px;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 14px;
    margin-top: 28px;
    padding: 17px 18px;
    border: 1px solid rgba(241, 200, 75, .38);
    border-radius: 12px;
    color: rgba(255, 255, 255, .76);
    background: rgba(241, 200, 75, .08);
    font-size: .86rem;
    line-height: 1.55;
}

.draft-notice strong {
    color: #f5d36d;
    white-space: nowrap;
}

.info-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) minmax(260px, 340px);
    justify-content: space-between;
    gap: 70px;
    padding-top: 72px;
    padding-bottom: 90px;
}

.info-content > section {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 24px;
}

.info-content > section + section {
    margin-top: 48px;
    padding-top: 46px;
    border-top: 1px solid rgba(18, 18, 18, .12);
}

.info-section__number {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(18, 18, 18, .16);
    border-radius: 50%;
    color: #7d5c0c;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.info-content h2 {
    margin: 2px 0 18px;
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.15;
}

.info-content p,
.info-content li {
    color: #514c44;
    font-size: 1rem;
    line-height: 1.78;
}

.info-content p {
    margin: 0 0 18px;
}

.info-content ul {
    margin: 22px 0 0;
    padding-left: 22px;
}

.info-content li + li {
    margin-top: 9px;
}

.info-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0 0;
}

.info-facts > div {
    min-width: 0;
    padding: 16px 18px;
    border: 1px solid rgba(125, 92, 12, .2);
    border-radius: 12px;
    background: linear-gradient(145deg, #fffdf7, #f7f1df);
}

.info-facts dt {
    color: #765708;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1.35;
    text-transform: uppercase;
}

.info-facts dd {
    margin: 7px 0 0;
    color: #211f1b;
    font-size: .94rem;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.info-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.info-links a {
    display: flex;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 15px;
    border: 1px solid rgba(18, 18, 18, .14);
    border-radius: 10px;
    color: #29261f;
    background: #fff;
    font-size: .84rem;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
}

.info-links a span {
    flex: 0 0 auto;
    color: #765708;
    font-size: 1rem;
}

.info-links a:hover,
.info-links a:focus-visible {
    border-color: #9a7415;
    color: #5f4507;
    background: #fffaf0;
}

.policy-references a {
    color: #765708;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.info-aside {
    align-self: start;
    position: sticky;
    top: 130px;
}

.info-aside__card {
    padding: 28px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(18, 18, 18, .12);
    box-shadow: 0 18px 55px rgba(18, 18, 18, .07);
}

.info-aside__card h2 {
    margin: 8px 0 14px;
    font-size: 1.55rem;
    line-height: 1.17;
}

.info-aside__card p {
    margin: 0 0 22px;
    color: #625d55;
    font-size: .9rem;
    line-height: 1.65;
}

.info-aside__contact {
    display: grid;
    gap: 7px;
    margin-top: 14px;
    padding: 22px;
    border-radius: 16px;
    color: #fff;
    background: #181815;
}

.info-aside__contact a {
    color: #f2cf64;
    font-size: .84rem;
    overflow-wrap: anywhere;
}

.info-aside__contact small {
    margin-top: 8px;
    color: rgba(255, 255, 255, .62);
}

.not-found-page .page-hero {
    min-height: 520px;
}

@media (max-width: 980px) {
    .info-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .info-aside {
        position: static;
    }
}

@media (max-width: 620px) {
    .draft-notice {
        grid-template-columns: 1fr;
    }

    .draft-notice strong {
        white-space: normal;
    }

    .info-layout {
        padding-top: 48px;
        padding-bottom: 64px;
    }

    .info-content > section {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .info-content > section + section {
        margin-top: 36px;
        padding-top: 34px;
    }

    .info-facts,
    .info-links {
        grid-template-columns: 1fr;
    }

    .info-facts > div {
        padding: 14px 15px;
    }
}

/* Complete one-page cart controls */
.cart-line__details { min-width: 0; }
.cart-line__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 10px; }
.cart-line__actions form:first-child { display: inline-flex; align-items: center; gap: 6px; }
.cart-line__actions input[type="number"] { width: 54px; min-height: 34px; padding: 5px 7px; border: 1px solid rgba(18,18,18,.2); border-radius: 6px; background: #fff; }
.cart-line__actions button, .cart-clear button { min-height: 34px; padding: 6px 10px; border: 1px solid rgba(18,18,18,.18); border-radius: 6px; color: #28251f; background: #fff; cursor: pointer; font-size: .74rem; font-weight: 800; }
.cart-line__actions button:hover, .cart-line__actions button:focus-visible, .cart-clear button:hover, .cart-clear button:focus-visible { border-color: #80610f; color: #604706; }
.cart-line__actions .cart-line__remove { color: #8b2f2f; }
.cart-clear { display: flex; justify-content: flex-end; margin-top: -4px; }
.cart-clear button { border: 0; padding-inline: 0; color: #746d62; background: transparent; text-decoration: underline; text-underline-offset: 3px; }

/* One-page catalogue SEO copy and rendering safeguards */
.catalogue-intro {
    max-width: 850px;
    margin: -26px 0 34px;
    color: #655f55;
    font-size: .94rem;
    line-height: 1.7;
}

.our-standard {
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

@media (max-width: 720px) {
    .catalogue-intro {
        margin-top: -12px;
        margin-bottom: 24px;
    }
}

/* Mobile commerce touch targets */
.add-form .button {
    min-height: 48px;
}

@media (max-width: 720px) {
    .product-card__body {
        gap: 12px;
    }

    .add-form {
        margin-top: 4px;
    }

    .add-form .button {
        min-height: 50px;
        padding-block: 13px;
    }
}

/* Mobile guide-card touch targets */
.blog-card h3 a {
    display: block;
    min-height: 48px;
    padding-block: 7px;
}

/* Live catalogue card consistency: bordered, equal-height and mobile two-up */
.product-grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
    gap: 24px 18px;
}

.product-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(18, 18, 18, .16);
    background: #fff;
    box-shadow: 0 8px 24px rgba(18, 18, 18, .045);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-card:hover,
.product-card:focus-within {
    border-color: rgba(167, 124, 13, .72);
    box-shadow: 0 12px 30px rgba(18, 18, 18, .09);
}

.product-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 18px;
}

.product-card__meta {
    min-height: 28px;
    align-items: flex-start;
    gap: 8px;
}

.product-card__body > .add-form {
    margin-top: auto;
    padding-top: 18px;
}

@media (max-width: 620px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-card__media {
        aspect-ratio: .89;
    }

    .product-card__body {
        gap: 0;
        padding: 12px;
    }

    .product-card__meta {
        display: block;
        min-height: 36px;
        font-size: 7.5px;
        line-height: 1.3;
    }

    .product-card__meta > span {
        display: block;
    }

    .product-card__meta .rating {
        margin-top: 3px;
    }

    .product-card h3 {
        display: -webkit-box;
        min-height: 47px;
        margin: 7px 0 8px;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.16;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .product-card__summary {
        min-height: 35px;
        margin: 0 0 9px;
        font-size: 10.5px;
        line-height: 1.45;
    }

    .product-price {
        display: block;
    }

    .product-price strong {
        display: block;
        font-size: 16px;
    }

    .product-price small {
        display: block;
        margin: 4px 0 0;
        font-size: 7px;
        line-height: 1.35;
    }

    .product-card__body > .add-form {
        margin-top: auto;
        padding-top: 10px;
    }

    .add-form .button {
        min-height: 44px;
        padding: 9px 10px;
        font-size: 10px;
        line-height: 1.2;
    }

    .quick-view {
        right: 8px;
        bottom: 8px;
        left: 8px;
        min-height: 36px;
        font-size: 10px;
    }

    .wishlist-button {
        top: 45px;
        right: 9px;
        width: 32px;
        height: 32px;
    }

    .product-badge,
    .image-status {
        font-size: 7px;
    }

    .product-badge {
        top: 9px;
        left: 9px;
        padding: 6px 7px;
    }

    .image-status {
        right: 9px;
        bottom: 50px;
        padding: 5px 6px;
    }
}

@media (max-width: 360px) {
    .product-grid {
        gap: 8px;
    }

    .product-card__body {
        padding: 10px;
    }

    .product-card h3 {
        font-size: 13px;
    }
}

/* Complete mobile navigation flyout */
@media (max-width: 900px) {
    body.menu-open {
        overflow: hidden;
    }

    .site-header {
        isolation: isolate;
    }

    .menu-toggle.is-open {
        color: #fff;
        background: var(--ink);
    }

    .site-search.is-open {
        z-index: 42;
        top: calc(100% + 1px);
        right: 12px;
        left: 12px;
        height: 52px;
        box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
    }

    .primary-nav {
        z-index: 41;
        top: calc(100% + 61px);
        max-height: calc(100vh - 170px);
        max-height: calc(100dvh - 170px);
        overscroll-behavior: contain;
        border: 1px solid var(--line);
        border-right: 0;
        border-left: 0;
        box-shadow: 0 24px 42px rgba(0, 0, 0, .18);
        -webkit-overflow-scrolling: touch;
    }

    .primary-nav__inner {
        width: 100%;
        min-height: 0;
        padding: 8px 16px calc(20px + env(safe-area-inset-bottom));
    }

    .primary-nav a {
        width: 100%;
        min-height: 50px;
        justify-content: space-between;
        padding: 0 4px;
        border-bottom: 1px solid var(--line);
        font-size: 14px;
    }

    .primary-nav a.is-current {
        color: var(--gold-dark);
    }

    .primary-nav .sale-link {
        min-height: 58px;
    }
}

@media (max-width: 620px) {
    .primary-nav {
        top: calc(100% + 59px);
        max-height: calc(100vh - 165px);
        max-height: calc(100dvh - 165px);
    }

    .site-search.is-open {
        height: 50px;
    }

    .primary-nav__inner {
        padding-inline: 12px;
    }
}

/* Multi-page catalogue architecture */
.catalogue-main,
.product-detail-main,
.blog-main {
    min-height: 60vh;
    background: #faf8f2;
}

.catalogue-banner {
    position: relative;
    isolation: isolate;
    display: grid;
    width: 100%;
    height: 300px;
    min-height: 300px;
    overflow: hidden;
    color: #fff;
    background: #11110f;
}

.catalogue-banner__media,
.catalogue-banner__media img,
.catalogue-banner__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.catalogue-banner__media {
    z-index: -2;
    margin: 0;
}

.catalogue-banner__media img {
    object-fit: cover;
    object-position: center 40%;
}

.catalogue-banner--cricket .catalogue-banner__media img,
.catalogue-banner--shop .catalogue-banner__media img,
.catalogue-banner--blog .catalogue-banner__media img {
    object-position: center 24%;
}

.catalogue-banner--brand .catalogue-banner__media img {
    object-position: center;
}

.catalogue-banner__veil {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 7, 6, .96) 0%, rgba(7, 7, 6, .82) 42%, rgba(7, 7, 6, .28) 74%, rgba(7, 7, 6, .2) 100%),
        linear-gradient(0deg, rgba(7, 7, 6, .58), transparent 60%);
}

.catalogue-banner__inner {
    display: flex;
    height: 300px;
    max-width: 820px;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
}

.catalogue-banner h1 {
    max-width: 760px;
    margin: 8px 0 10px;
    font-size: clamp(34px, 4.3vw, 62px);
    letter-spacing: -.045em;
    line-height: .98;
}

.catalogue-banner p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(13px, 1.3vw, 16px);
    line-height: 1.55;
}

.catalogue-banner .page-actions {
    margin-top: 15px;
}

.catalogue-banner .button {
    min-height: 42px;
    padding: 9px 16px;
    font-size: 11px;
}

.catalogue-main > .breadcrumbs,
.product-detail-main > .breadcrumbs,
.blog-main > .breadcrumbs {
    margin-top: 22px;
    margin-bottom: 0;
    color: #756f65;
}

.catalogue-main > .breadcrumbs a,
.product-detail-main > .breadcrumbs a,
.blog-main > .breadcrumbs a {
    color: #745508;
}

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

.breadcrumbs li + li::before {
    content: '/';
    margin-right: 8px;
    color: #a49d91;
}

.section-head__actions {
    display: grid;
    justify-items: start;
    gap: 14px;
    max-width: 480px;
}

.section-head__actions p {
    max-width: none;
}

.brand-edit {
    padding-block: 84px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 12%, rgba(241, 200, 75, .14), transparent 28%),
        #11110f;
}

.brand-directory {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.brand-directory a {
    position: relative;
    display: grid;
    min-height: 132px;
    align-content: end;
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    background: rgba(255, 255, 255, .035);
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.brand-directory a::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--gold-bright);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .2s ease;
}

.brand-directory a:hover,
.brand-directory a:focus-visible {
    border-color: rgba(241, 200, 75, .7);
    background: rgba(241, 200, 75, .07);
    transform: translateY(-2px);
}

.brand-directory a:hover::before,
.brand-directory a:focus-visible::before {
    transform: scaleY(1);
}

.brand-directory span {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .55);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.brand-directory strong {
    font-size: clamp(22px, 2.4vw, 34px);
    letter-spacing: -.035em;
}

.brand-directory i {
    position: absolute;
    top: 17px;
    right: 18px;
    color: var(--gold-bright);
    font-style: normal;
}

.catalogue-directory {
    padding-bottom: 36px;
}

.catalogue-link-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.catalogue-link-group {
    padding: 24px;
    border: 1px solid rgba(18, 18, 18, .12);
    background: #fff;
}

.catalogue-link-group > strong {
    display: block;
    margin-bottom: 13px;
    font-size: 1.05rem;
}

.catalogue-link-group > div,
.inline-brand-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalogue-link-group a,
.inline-brand-links a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid rgba(18, 18, 18, .14);
    color: #4a3a11;
    background: #faf8f2;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.catalogue-link-group a:hover,
.catalogue-link-group a:focus-visible,
.inline-brand-links a:hover,
.inline-brand-links a:focus-visible {
    border-color: #ad8420;
    background: #fff7dc;
}

.products-section--page {
    padding-top: 54px;
}

.catalogue-search {
    width: min(100%, 430px);
}

.catalogue-search > label,
.inline-brand-links > span {
    display: block;
    margin-bottom: 8px;
    color: #6c655a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.catalogue-search > div {
    display: flex;
    gap: 8px;
}

.catalogue-search input {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid rgba(18, 18, 18, .2);
    background: #fff;
    color: var(--ink);
}

.inline-brand-links {
    max-width: 430px;
    justify-content: flex-end;
}

.inline-brand-links > span {
    width: 100%;
    text-align: right;
}

.product-grid--compact {
    max-width: 920px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-guide {
    color: #fff;
    background:
        radial-gradient(circle at 12% 82%, rgba(241, 200, 75, .11), transparent 30%),
        #151512;
}

.category-guide__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    align-items: start;
    gap: 72px;
}

.category-guide h2 {
    max-width: 650px;
    margin: 12px 0 18px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.02;
}

.category-guide__grid > div > p {
    max-width: 640px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.72;
}

.category-guide .text-link {
    color: #f2d680;
}

.category-guide__steps {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.category-guide__steps li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.category-guide__steps span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(241, 200, 75, .5);
    border-radius: 50%;
    color: var(--gold-bright);
    font-size: 10px;
    font-weight: 800;
}

.category-guide__steps p {
    align-self: center;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.55;
}

.category-depth {
    background:
        radial-gradient(circle at 88% 8%, rgba(196, 145, 23, .12), transparent 28%),
        #f7f3ea;
}

.category-depth__layout {
    display: grid;
    gap: 34px;
}

.category-depth__header {
    max-width: 860px;
}

.category-depth__header h2,
.category-faq__header h2 {
    max-width: 760px;
    margin: 12px 0 16px;
    color: #171714;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.04;
}

.category-depth__header > p,
.category-faq__header > p {
    max-width: 800px;
    margin: 0;
    color: #655f55;
    font-size: .98rem;
    line-height: 1.78;
}

.category-depth__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-depth__card {
    min-width: 0;
    padding: 28px;
    border: 1px solid rgba(128, 97, 15, .22);
    border-top: 3px solid #c49117;
    border-radius: 12px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 40px rgba(29, 24, 12, .06);
}

.category-depth__card h3 {
    margin: 0 0 14px;
    color: #1d1b16;
    font-size: 1.18rem;
    line-height: 1.25;
}

.category-depth__card p {
    margin: 0;
    color: #625c51;
    font-size: .92rem;
    line-height: 1.72;
}

.category-depth__card p + p {
    margin-top: 12px;
}

.category-depth__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    padding-top: 2px;
}

.category-depth__links .text-link {
    color: #6e5108;
}

.category-faq {
    background: #fff;
}

.category-faq__layout {
    display: grid;
    grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: 64px;
}

.category-faq__header {
    position: sticky;
    top: 108px;
}

.category-faq__items {
    border-top: 1px solid rgba(18, 18, 18, .14);
}

.category-faq__item {
    border-bottom: 1px solid rgba(18, 18, 18, .14);
}

.category-faq__item summary {
    display: grid;
    grid-template-columns: 1fr 26px;
    align-items: center;
    gap: 22px;
    padding: 22px 0;
    color: #1c1b17;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.45;
    list-style: none;
}

.category-faq__item summary::-webkit-details-marker {
    display: none;
}

.category-faq__item summary:focus-visible {
    outline: 2px solid #c49117;
    outline-offset: 5px;
}

.category-faq__icon {
    position: relative;
    display: block;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(128, 97, 15, .45);
    border-radius: 50%;
}

.category-faq__icon::before,
.category-faq__icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: #80610f;
    content: '';
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.category-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.category-faq__item[open] .category-faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.category-faq__answer {
    padding: 0 48px 22px 0;
}

.category-faq__answer p {
    margin: 0;
    color: #655f55;
    line-height: 1.75;
}

@media (max-width: 980px) {
    .category-depth__cards {
        grid-template-columns: 1fr;
    }

    .category-faq__layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .category-faq__header {
        position: static;
    }
}

@media (max-width: 720px) {
    .category-depth__layout,
    .category-faq__layout {
        gap: 26px;
    }

    .category-depth__header h2,
    .category-faq__header h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .category-depth__card {
        padding: 22px;
    }

    .category-depth__card p,
    .category-depth__header > p,
    .category-faq__header > p,
    .category-faq__answer p {
        font-size: .9rem;
    }

    .category-faq__item summary {
        gap: 14px;
        padding: 19px 0;
    }

    .category-faq__answer {
        padding-right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .category-faq__icon::before,
    .category-faq__icon::after {
        transition: none;
    }
}

.category-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-brands {
    color: #fff;
    background: #11110f;
}

.related-brands .section-head p,
.related-brands .section-head h2 {
    color: #fff;
}

.related-brands .text-link {
    color: #f2d680;
}

/* Product detail */
.product-detail {
    padding: 34px 0 74px;
}

.product-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr);
    gap: clamp(38px, 6vw, 88px);
    align-items: start;
}

.product-detail__media {
    position: relative;
    display: grid;
    height: clamp(440px, 55vw, 650px);
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(18, 18, 18, .12);
    background: #fff;
}

.product-detail__media .product-picture {
    width: 100%;
    height: 100%;
}

.product-detail__media .product-picture img {
    width: 100%;
    height: 100%;
    padding: clamp(20px, 4vw, 52px);
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.product-detail__media > span {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 10px;
    color: #fff;
    background: #171714;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.product-detail__content {
    padding-top: 18px;
}

.product-detail__content h1 {
    margin: 12px 0 18px;
    font-size: clamp(38px, 4.6vw, 68px);
    letter-spacing: -.05em;
    line-height: .98;
}

.product-detail__lead {
    max-width: 620px;
    margin: 0;
    color: #625d55;
    font-size: 1rem;
    line-height: 1.72;
}

.product-detail__price {
    display: grid;
    gap: 4px;
    margin: 26px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(18, 18, 18, .12);
    border-bottom: 1px solid rgba(18, 18, 18, .12);
}

.product-detail__price strong {
    font-size: 30px;
    line-height: 1;
}

.product-detail__price span {
    color: #756e63;
    font-size: 11px;
}

.product-order-form {
    display: grid;
    gap: 16px;
}

.product-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-options label,
.product-quantity {
    display: grid;
    gap: 7px;
    color: #403c35;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
}

.product-options select,
.product-quantity input {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid rgba(18, 18, 18, .2);
    background: #fff;
    color: var(--ink);
}

.product-quantity {
    width: 110px;
}

.product-detail__assurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 24px;
    background: rgba(18, 18, 18, .12);
}

.product-detail__assurance div {
    display: grid;
    gap: 5px;
    padding: 14px;
    background: #f2efe8;
}

.product-detail__assurance strong {
    font-size: 10px;
    text-transform: uppercase;
}

.product-detail__assurance span {
    color: #514c44;
    font-size: 10px;
    line-height: 1.4;
}

.product-information {
    border-top: 1px solid rgba(18, 18, 18, .1);
    background: #fff;
}

.product-information__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 80px;
}

.product-information h2 {
    margin: 12px 0 18px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.03;
}

.product-information p {
    color: #5e584f;
    line-height: 1.75;
}

.product-specs {
    margin: 0;
    border-top: 1px solid rgba(18, 18, 18, .14);
}

.product-specs div {
    display: grid;
    grid-template-columns: minmax(120px, .8fr) minmax(0, 1.2fr);
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(18, 18, 18, .14);
}

.product-specs dt {
    color: #766f64;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-specs dd {
    margin: 0;
    color: #2c2924;
    font-weight: 700;
}

.product-specs a {
    color: #745508;
}

.product-guide-cta {
    padding-block: 58px;
    color: #fff;
    background: #11110f;
}

.product-guide-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.product-guide-cta h2 {
    max-width: 760px;
    margin: 8px 0 0;
    font-size: clamp(28px, 3.5vw, 46px);
    line-height: 1.04;
}

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

.footer-grid--expanded {
    grid-template-columns: 1.55fr repeat(4, minmax(120px, 1fr));
    gap: 42px;
}

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

    .footer-grid--expanded {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid--expanded .footer-brand {
        grid-column: 1 / -1;
    }

    .product-detail__grid,
    .product-information__grid,
    .category-guide__grid {
        gap: 44px;
    }
}

@media (max-width: 900px) {
    .catalogue-banner,
    .catalogue-banner__inner {
        height: 300px;
        min-height: 300px;
    }

    .catalogue-banner__veil {
        background: linear-gradient(90deg, rgba(7, 7, 6, .96) 0%, rgba(7, 7, 6, .78) 64%, rgba(7, 7, 6, .4) 100%);
    }

    .catalogue-banner__inner {
        max-width: 700px;
    }

    .section-head__actions {
        max-width: none;
    }

    .product-detail__grid,
    .product-information__grid,
    .category-guide__grid {
        grid-template-columns: 1fr;
    }

    .product-detail__content {
        padding-top: 0;
    }

    .product-information__grid {
        gap: 40px;
    }

    .category-guide__grid {
        gap: 38px;
    }

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

@media (max-width: 720px) {
    .catalogue-banner,
    .catalogue-banner__inner {
        height: 300px;
        min-height: 300px;
    }

    .catalogue-banner__media img {
        object-position: 66% center;
    }

    .catalogue-banner--brand .catalogue-banner__media img {
        object-position: center;
    }

    .catalogue-banner__veil {
        background: linear-gradient(90deg, rgba(7, 7, 6, .97) 0%, rgba(7, 7, 6, .86) 62%, rgba(7, 7, 6, .48) 100%);
    }

    .catalogue-banner h1 {
        max-width: 350px;
        font-size: clamp(31px, 9.4vw, 42px);
    }

    .catalogue-banner p {
        display: -webkit-box;
        max-width: 335px;
        overflow: hidden;
        font-size: 12px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .catalogue-banner .page-actions {
        margin-top: 12px;
    }

    .catalogue-banner .page-actions .button:nth-child(2) {
        display: none;
    }

    .catalogue-link-groups,
    .category-grid--related {
        grid-template-columns: 1fr;
    }

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

    .brand-directory a {
        min-height: 105px;
    }

    .section-head--products {
        align-items: stretch;
    }

    .catalogue-search {
        width: 100%;
    }

    .inline-brand-links {
        max-width: none;
        justify-content: flex-start;
    }

    .inline-brand-links > span {
        text-align: left;
    }

    .product-detail {
        padding-top: 24px;
    }

    .product-detail__media {
        height: 390px;
    }

    .product-detail__content h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .product-options,
    .product-detail__assurance {
        grid-template-columns: 1fr;
    }

    .product-detail__assurance {
        gap: 0;
        border: 1px solid rgba(18, 18, 18, .12);
        background: transparent;
    }

    .product-detail__assurance div + div {
        border-top: 1px solid rgba(18, 18, 18, .12);
    }

    .product-specs div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .product-guide-cta__inner {
        display: grid;
        justify-items: start;
    }

    .footer-grid--expanded {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 22px;
    }

    .footer-grid--expanded .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 420px) {
    .catalogue-search > div {
        display: grid;
    }

    .catalogue-banner__inner {
        padding-block: 18px;
    }

    .footer-grid--expanded {
        grid-template-columns: 1fr 1fr;
    }
}

/* Verified represented-brand marks */
.brand-mark {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.brand-mark__visual {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(18, 18, 18, .12);
    background: #fff;
}

.brand-mark__visual img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-mark__name {
    min-width: 0;
    font-weight: 800;
    line-height: 1.1;
}

.brand-mark__fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #171714;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.brand-directory a {
    min-height: 174px;
    align-content: stretch;
}

.brand-directory .brand-mark--directory {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 10px;
    margin-bottom: 12px;
}

.brand-directory .brand-mark__visual {
    width: 100%;
    height: 76px;
    margin: 0;
    padding: 10px 14px;
    border-color: rgba(255, 255, 255, .12);
    border-radius: 2px;
}

.brand-directory .brand-mark__visual img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 56px;
}

.brand-directory .brand-mark__name {
    margin: 0;
    color: #fff;
    font-size: clamp(21px, 2vw, 30px);
    font-weight: 850;
    letter-spacing: -.035em;
    text-transform: none;
}

.brand-directory .brand-mark__fallback {
    margin: 0;
    color: #171714;
    font-size: 24px;
    letter-spacing: -.04em;
    text-transform: none;
}

.brand-directory .brand-directory__eyebrow {
    align-self: end;
    margin: auto 0 0;
    color: rgba(255, 255, 255, .58);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.35;
    text-transform: uppercase;
}

.product-brand-mark {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: grid;
    width: 58px;
    height: 42px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(18, 18, 18, .12);
    border-radius: 2px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 5px 16px rgba(0, 0, 0, .12);
}

.product-card--branded .wishlist-button {
    top: 64px;
}

.product-brand-mark:focus-visible {
    outline: 3px solid var(--gold-bright);
    outline-offset: 2px;
}

.product-brand-mark .brand-mark--card,
.product-brand-mark .brand-mark__visual {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    gap: 0;
    padding: 4px;
    border: 0;
    background: transparent;
}

.product-card__media .brand-mark__visual img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    object-fit: contain;
    background: transparent;
    transition: none;
    transform: none;
}

.product-card:hover .product-brand-mark img {
    transform: none;
}

.product-brand-mark .brand-mark__fallback {
    font-size: 10px;
}

.brand-chip {
    padding: 6px 9px !important;
}

.brand-mark--chip {
    gap: 7px;
}

.brand-mark--chip .brand-mark__visual {
    width: 34px;
    height: 24px;
    padding: 3px;
}

.brand-mark--chip .brand-mark__name {
    color: inherit;
    font-size: 11px;
}

.brand-mark--chip .brand-mark__fallback {
    font-size: 8px;
}

.brand-page-signature {
    display: flex;
    min-height: 96px;
    align-items: center;
    gap: 24px;
    margin-top: 22px;
    padding: 14px 18px;
    border: 1px solid rgba(18, 18, 18, .12);
    background: #fff;
}

.brand-page-signature .brand-mark--hero {
    flex: 0 0 auto;
}

.brand-mark--hero .brand-mark__visual {
    width: 150px;
    height: 66px;
    padding: 8px 14px;
}

.brand-mark--hero .brand-mark__name {
    color: #171714;
    font-size: 24px;
    letter-spacing: -.035em;
}

.brand-mark--hero .brand-mark__fallback {
    font-size: 21px;
}

.brand-page-signature p {
    max-width: 700px;
    margin: 0 0 0 auto;
    color: #686157;
    font-size: 12px;
    line-height: 1.65;
}

.product-brand-link {
    display: inline-flex;
    color: #4a3a11;
    text-decoration: none;
}

.brand-mark--inline .brand-mark__visual {
    width: 58px;
    height: 32px;
    padding: 4px 7px;
}

.brand-mark--inline .brand-mark__name {
    color: inherit;
    font-size: 13px;
}

.brand-mark--inline .brand-mark__fallback {
    font-size: 9px;
}

.footer-grid nav a.footer-brand-link {
    display: block;
    width: 100%;
    padding: 3px 0;
}

.brand-mark--footer {
    gap: 8px;
}

.brand-mark--footer .brand-mark__visual {
    width: 34px;
    height: 24px;
    padding: 3px;
    border-color: rgba(255, 255, 255, .18);
}

.brand-mark--footer .brand-mark__name {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 700;
}

.brand-mark--footer .brand-mark__fallback {
    font-size: 8px;
}

.footer-grid nav a.footer-brand-link:hover .brand-mark__name,
.footer-grid nav a.footer-brand-link:focus-visible .brand-mark__name {
    color: var(--gold-bright);
}

.related-brands .eyebrow {
    color: #f2d680;
}

@media (max-width: 620px) {
    .brand-directory a {
        min-height: 152px;
        padding: 14px;
    }

    .brand-directory .brand-mark__visual {
        height: 64px;
        padding: 8px 12px;
    }

    .brand-directory .brand-mark__visual img {
        max-height: 48px;
    }

    .brand-page-signature {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .brand-mark--hero .brand-mark__visual {
        width: 128px;
        height: 56px;
    }

    .brand-mark--hero .brand-mark__name {
        font-size: 20px;
    }

    .brand-page-signature p {
        margin: 0;
    }

    .product-brand-mark {
        top: 8px;
        right: 8px;
        width: 44px;
        height: 32px;
    }

    .product-card--branded .wishlist-button {
        top: 48px;
        right: 8px;
    }

    .brand-mark--chip .brand-mark__visual {
        width: 30px;
        height: 22px;
    }
}

/* Scheduled editorial archive */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(18, 18, 18, .14);
}

.pagination a,
.pagination span {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid rgba(18, 18, 18, .2);
    background: #fff;
    color: var(--ink);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pagination a:hover,
.pagination a:focus-visible {
    border-color: var(--gold-dark);
    background: var(--gold-bright);
}

.pagination span {
    border-color: transparent;
    background: transparent;
    color: var(--muted);
}

.article-resources,
.article-sources {
    margin-top: 34px;
    padding: 24px;
    border: 1px solid rgba(18, 18, 18, .16);
    background: #f8f5ee;
}

.article-sources {
    background: #fff;
}

.article-resources h2,
.article-sources h2 {
    margin-top: 0;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.article-resources ul,
.article-sources ul {
    margin-bottom: 0;
}

.article-resources a,
.article-sources a {
    color: #765800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

@media (max-width: 620px) {
    .pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .pagination a,
    .pagination span {
        width: 100%;
    }

    .article-resources,
    .article-sources {
        margin-top: 24px;
        padding: 18px;
    }
}

.section-head__actions .text-link {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
}

.section-head__actions .text-link[href$="/blog/"] {
    min-height: 44px;
    padding-block: 8px;
}

/* Homepage all-jersey carousel — compact, continuous and hover-safe */
.jersey-carousel-section {
    overflow: hidden;
    padding: 18px 0 58px;
    background: var(--paper);
}

.jersey-carousel__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 18px;
}

.jersey-carousel__header h2 {
    margin: 6px 0 0;
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1;
}

.jersey-carousel__header h2 em {
    color: var(--gold-dark);
    font-style: normal;
}

.jersey-carousel__actions {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    gap: 20px;
}

.jersey-carousel__actions > p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.jersey-carousel__controls {
    display: flex;
    flex: 0 0 auto;
    gap: 7px;
}

.jersey-carousel__controls button {
    display: inline-grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(15, 15, 15, .2);
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.jersey-carousel__controls button:hover,
.jersey-carousel__controls button:focus-visible {
    border-color: var(--ink);
    color: var(--gold-bright);
    background: var(--ink);
}

.jersey-carousel__controls svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.jersey-carousel__controls .jersey-carousel__play,
.jersey-carousel__controls button.is-paused .jersey-carousel__pause {
    display: none;
}

.jersey-carousel__controls button.is-paused .jersey-carousel__play {
    display: block;
}

.jersey-carousel {
    min-width: 0;
}

.jersey-carousel__viewport {
    margin-right: calc((100vw - var(--shell)) / -2);
    padding: 4px max(12px, calc((100vw - var(--shell)) / 2)) 16px 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.jersey-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.jersey-carousel__track {
    display: flex;
    width: max-content;
    gap: 12px;
}

.jersey-slide {
    position: relative;
    display: flex;
    width: 214px;
    min-width: 214px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(15, 15, 15, .14);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 15, 15, .06);
    scroll-snap-align: start;
}

.jersey-slide__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 15, 15, .1);
    background: #f1eee7;
}

.jersey-slide__media picture,
.jersey-slide__media img {
    display: block;
    width: 100%;
    height: 100%;
}

.jersey-slide__media img {
    object-fit: contain;
    padding: 10px;
    transition: transform 350ms ease;
}

.jersey-slide:hover .jersey-slide__media img,
.jersey-slide:focus-within .jersey-slide__media img {
    transform: scale(1.025);
}

.jersey-slide__media > span {
    position: absolute;
    top: 9px;
    left: 9px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: #0b0b0b;
    background: var(--gold-bright);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}

.jersey-slide__body {
    display: flex;
    min-height: 126px;
    flex: 1;
    flex-direction: column;
    padding: 14px;
}

.jersey-slide__body small {
    color: var(--gold-dark);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.jersey-slide__body h3 {
    margin: 7px 0 13px;
    font-size: 15px;
    line-height: 1.18;
}

.jersey-slide__body h3 a {
    color: var(--ink);
    text-decoration: none;
}

.jersey-slide__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(15, 15, 15, .12);
    color: var(--ink);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
}

.jersey-slide__body h3 a:hover,
.jersey-slide__body h3 a:focus-visible,
.jersey-slide__link:hover,
.jersey-slide__link:focus-visible {
    color: var(--gold-dark);
}

.jersey-carousel__progress {
    height: 2px;
    margin-top: 8px;
    overflow: hidden;
    background: rgba(15, 15, 15, .11);
}

.jersey-carousel__progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold-dark);
    transition: width 180ms linear;
}

@media (max-width: 1080px) {
    .jersey-carousel__header {
        align-items: start;
    }

    .jersey-carousel__actions {
        align-items: center;
    }

    .jersey-carousel__actions > p {
        display: none;
    }

    .jersey-slide {
        width: 190px;
        min-width: 190px;
    }
}

@media (max-width: 620px) {
    .jersey-carousel-section {
        padding: 12px 0 42px;
    }

    .jersey-carousel__header {
        align-items: end;
        gap: 12px;
        margin-bottom: 14px;
    }

    .jersey-carousel__header h2 {
        max-width: 220px;
        font-size: 27px;
    }

    .jersey-carousel__controls {
        gap: 5px;
    }

    .jersey-carousel__controls button {
        width: 44px;
        height: 44px;
    }

    .jersey-carousel__controls button[data-jersey-toggle] {
        display: none;
    }

    .jersey-carousel__viewport {
        margin-right: -12px;
        padding-right: 12px;
    }

    .jersey-carousel__track {
        gap: 9px;
    }

    .jersey-slide {
        width: 164px;
        min-width: 164px;
        border-radius: 8px;
    }

    .jersey-slide__body {
        min-height: 116px;
        padding: 12px;
    }

    .jersey-slide__body h3 {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .jersey-carousel__viewport {
        scroll-behavior: auto;
    }

    .jersey-slide__media img,
    .jersey-carousel__controls button,
    .jersey-carousel__progress span {
        transition: none;
    }
}

/* Direct carousel-to-products transition: heading intentionally removed. */
.products-section--after-carousel {
    padding-top: 0;
}

/* Homepage featured products use the same compact scale as jersey-carousel cards. */
#featured-products .product-grid--featured {
    grid-template-columns: repeat(6, minmax(0, 214px));
    justify-content: center;
    gap: 18px 14px;
}

#featured-products .product-card {
    width: 214px;
}

#featured-products .product-card__media {
    aspect-ratio: 1 / 1;
}

#featured-products .product-card__body {
    padding: 14px;
}

#featured-products .product-card__meta {
    min-height: 24px;
    font-size: 8px;
    line-height: 1.3;
}

#featured-products .product-card h3 {
    display: -webkit-box;
    min-height: 50px;
    margin: 8px 0 9px;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.16;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

#featured-products .product-card__summary {
    display: -webkit-box;
    min-height: 42px;
    margin: 0 0 10px;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

#featured-products .product-price {
    display: block;
}

#featured-products .product-price strong {
    display: block;
    font-size: 17px;
}

#featured-products .product-price small {
    display: block;
    margin: 4px 0 0;
    font-size: 7px;
    line-height: 1.3;
}

#featured-products .product-card__body > .add-form {
    padding-top: 11px;
}

#featured-products .add-form .button {
    min-height: 44px;
    padding: 9px 11px;
    font-size: 10px;
}

@media (max-width: 1400px) {
    #featured-products .product-grid--featured {
        grid-template-columns: repeat(5, minmax(0, 214px));
    }
}

@media (max-width: 1180px) {
    #featured-products .product-grid--featured {
        grid-template-columns: repeat(4, minmax(0, 214px));
    }
}

@media (max-width: 940px) {
    #featured-products .product-grid--featured {
        grid-template-columns: repeat(3, minmax(0, 190px));
    }

    #featured-products .product-card {
        width: 190px;
    }
}

@media (max-width: 720px) {
    #featured-products .product-grid--featured {
        grid-template-columns: repeat(2, minmax(0, 214px));
    }

    #featured-products .product-card {
        width: 214px;
    }
}

@media (max-width: 620px) {
    #featured-products .product-grid--featured {
        grid-template-columns: repeat(2, minmax(0, 164px));
        gap: 10px 9px;
    }

    #featured-products .product-card {
        width: 164px;
    }

    #featured-products .product-card__body {
        padding: 11px;
    }

    #featured-products .product-card h3 {
        min-height: 46px;
        font-size: 13px;
    }

    #featured-products .product-card__summary {
        min-height: 40px;
        font-size: 9.5px;
    }

    #featured-products .product-badge {
        max-width: calc(100% - 56px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* Final approved carousel-to-products spacing. */
.jersey-carousel-section {
    padding-bottom: 18px;
}

@media (max-width: 620px) {
    .jersey-carousel-section {
        padding-bottom: 12px;
    }
}

/* Compact homepage sports call to action. */
.sports-cta {
    padding: 28px 0 68px;
    background: #fff;
}

.sports-cta__panel {
    position: relative;
    height: 288px;
    min-height: 288px;
    overflow: hidden;
    border: 1px solid rgba(18, 18, 18, .14);
    border-radius: 4px;
    background: #f3eee5;
    box-shadow: 0 14px 34px rgba(18, 18, 18, .07);
}

.sports-cta__picture,
.sports-cta__picture::after {
    position: absolute;
    inset: 0;
}

.sports-cta__picture {
    display: block;
}

.sports-cta__picture::after {
    content: "";
    background: linear-gradient(90deg, rgba(249, 246, 239, .99) 0%, rgba(249, 246, 239, .96) 35%, rgba(249, 246, 239, .72) 52%, rgba(249, 246, 239, .08) 72%);
}

.sports-cta__picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 4%;
}

.sports-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(52%, 620px);
    height: 288px;
    min-height: 0;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 34px 42px;
}

.sports-cta__content h2 {
    max-width: 540px;
    margin: 10px 0 12px;
    font-size: clamp(30px, 3.1vw, 48px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.035em;
}

.sports-cta__content h2 em {
    color: var(--gold-dark);
    font-style: normal;
}

.sports-cta__content p {
    max-width: 520px;
    margin: 0 0 20px;
    color: #544f47;
    font-size: 13px;
    line-height: 1.55;
}

.sports-cta__content .button {
    min-height: 44px;
    padding-inline: 18px;
}

@media (max-width: 720px) {
    .sports-cta {
        padding: 20px 0 48px;
    }

    .sports-cta__panel {
        height: 320px;
        min-height: 320px;
    }

    .sports-cta__picture::after {
        background: linear-gradient(90deg, rgba(249, 246, 239, .99) 0%, rgba(249, 246, 239, .95) 42%, rgba(249, 246, 239, .68) 58%, rgba(249, 246, 239, .04) 78%);
    }

    .sports-cta__picture img {
        object-position: 61% center;
    }

    .sports-cta__content {
        width: 57%;
        height: 320px;
        min-height: 0;
        padding: 22px 0 22px 20px;
    }

    .sports-cta__content .eyebrow {
        font-size: 8px;
    }

    .sports-cta__content h2 {
        margin: 8px 0 10px;
        font-size: 28px;
        line-height: 1;
    }

    .sports-cta__content p {
        margin-bottom: 15px;
        font-size: 10.5px;
        line-height: 1.45;
    }

    .sports-cta__content .button {
        min-height: 44px;
        padding-inline: 13px;
        font-size: 10px;
    }
}

/* CTA background light sweep: the image remains completely fixed. */
.sports-cta__panel {
    isolation: isolate;
}

.sports-cta__picture {
    z-index: 0;
}

.sports-cta__panel::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: -62%;
    bottom: -62%;
    left: -34%;
    width: 18%;
    pointer-events: none;
    background: linear-gradient(105deg, rgba(255, 207, 46, 0) 0%, rgba(255, 207, 46, 0) 31%, rgba(255, 213, 69, .42) 42%, rgba(255, 244, 184, .96) 50%, rgba(255, 199, 35, .58) 57%, rgba(255, 207, 46, 0) 68%, rgba(255, 207, 46, 0) 100%);
    filter: blur(3px) drop-shadow(0 0 16px rgba(255, 190, 28, .42));
    mix-blend-mode: screen;
    opacity: 1;
    transform: translate3d(-180%, 0, 0) skewX(-12deg);
    will-change: transform;
    animation: sports-cta-light-sweep 6s cubic-bezier(.4, 0, .2, 1) infinite;
}

@keyframes sports-cta-light-sweep {
    0%, 18% {
        transform: translate3d(-180%, 0, 0) skewX(-12deg);
    }

    54%, 100% {
        transform: translate3d(760%, 0, 0) skewX(-12deg);
    }
}

@media (max-width: 720px) {
    .sports-cta__panel::after {
        width: 28%;
        opacity: .92;
        animation-duration: 6.5s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sports-cta__panel::after {
        opacity: 0;
        transform: none;
        animation: none;
        will-change: auto;
    }
}

/* Genuine customer-review carousels — arrow-free, draggable and touch-scrollable. */
.review-strip {
    overflow: hidden;
    padding: 76px 0 68px;
    color: #fff;
    background:
        radial-gradient(circle at 86% 14%, rgba(238, 193, 58, .17), transparent 30%),
        linear-gradient(135deg, #0d0d0c 0%, #18150d 58%, #10100f 100%);
}

.review-strip--cricket {
    border-top: 1px solid rgba(226, 181, 46, .18);
    background:
        radial-gradient(circle at 12% 8%, rgba(238, 193, 58, .13), transparent 28%),
        linear-gradient(145deg, #11110f 0%, #1c180d 52%, #10100f 100%);
}

.review-strip__header {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    align-items: end;
    gap: 72px;
    margin-bottom: 30px;
}

.review-strip__header h2 {
    max-width: 780px;
    margin: 10px 0 0;
    color: #fff;
    font-size: clamp(36px, 4.4vw, 62px);
    font-weight: 760;
    line-height: 1.02;
    letter-spacing: -.035em;
}

.review-strip__intro {
    display: grid;
    justify-items: start;
    gap: 16px;
}

.review-strip__intro p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .96rem;
    line-height: 1.7;
}

.review-strip__toggle {
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid rgba(238, 193, 58, .55);
    border-radius: 999px;
    color: #f5d97b;
    background: rgba(255, 255, 255, .035);
    font: inherit;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.review-strip__toggle:hover,
.review-strip__toggle:focus-visible,
.review-strip__toggle[aria-pressed="true"] {
    border-color: #f0ca54;
    color: #11110f;
    background: #f0ca54;
}

.review-strip__toggle:focus-visible,
.review-carousel__viewport:focus-visible {
    outline: 3px solid #f0ca54;
    outline-offset: 4px;
}

.review-carousel {
    min-width: 0;
}

.review-carousel__viewport {
    margin-right: calc((100vw - var(--shell)) / -2);
    padding: 4px max(12px, calc((100vw - var(--shell)) / 2)) 18px 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
}

.review-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.review-carousel__viewport.is-dragging {
    scroll-behavior: auto;
    scroll-snap-type: none;
    cursor: grabbing;
}

.review-carousel__viewport.is-dragging,
.review-carousel__viewport.is-dragging * {
    user-select: none;
}

.review-carousel__track {
    display: flex;
    width: max-content;
    gap: 16px;
}

.review-card {
    position: relative;
    display: flex;
    width: 374px;
    min-width: 374px;
    min-height: 342px;
    flex-direction: column;
    padding: 27px;
    overflow: hidden;
    border: 1px solid rgba(223, 178, 42, .35);
    border-radius: 15px;
    color: #181713;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(246, 240, 224, .96));
    box-shadow: 0 22px 55px rgba(0, 0, 0, .23);
    scroll-snap-align: start;
}

.review-card::before {
    position: absolute;
    top: -38px;
    right: -18px;
    color: rgba(182, 134, 12, .09);
    content: '“';
    font-family: Georgia, serif;
    font-size: 170px;
    line-height: 1;
    pointer-events: none;
}

.review-card__identity {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 13px;
}

.review-card__avatar {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border: 1px solid rgba(128, 96, 12, .28);
    border-radius: 50%;
    color: #121210;
    background: linear-gradient(135deg, #f7df8a, #d5a91f);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.review-card__identity h3 {
    margin: 0 0 3px;
    color: #181713;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.2;
}

.review-card__identity div > span {
    color: #746b5a;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.review-card__stars {
    position: relative;
    z-index: 1;
    margin: 24px 0 15px;
    color: #b6850c;
    font-size: 1.02rem;
    letter-spacing: .13em;
}

.review-card blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
}

.review-card blockquote p {
    margin: 0;
    color: #39362f;
    font-size: .95rem;
    line-height: 1.72;
}

.review-card footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(28, 25, 17, .12);
    color: #796d52;
    font-size: .64rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.review-carousel__progress {
    height: 2px;
    margin-top: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, .16);
}

.review-carousel__progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #c39117, #f4d96f);
    transition: width 160ms linear;
}

.review-carousel__hint {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, .52);
    font-size: .72rem;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .review-strip__header {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .review-strip__intro {
        max-width: 680px;
    }

    .review-card {
        width: 340px;
        min-width: 340px;
    }
}

@media (max-width: 620px) {
    .review-strip {
        padding: 54px 0 48px;
    }

    .review-strip__header {
        gap: 17px;
        margin-bottom: 22px;
    }

    .review-strip__header h2 {
        font-size: clamp(32px, 9.2vw, 42px);
    }

    .review-strip__intro p {
        font-size: .88rem;
    }

    .review-carousel__viewport {
        margin-right: -12px;
        padding-right: 12px;
    }

    .review-carousel__track {
        gap: 11px;
    }

    .review-card {
        width: calc(100vw - 48px);
        min-width: calc(100vw - 48px);
        min-height: 336px;
        padding: 22px;
        border-radius: 12px;
    }

    .review-card blockquote p {
        font-size: .91rem;
        line-height: 1.66;
    }

    .review-carousel__hint {
        max-width: calc(100vw - 24px);
        font-size: .68rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .review-carousel__viewport {
        scroll-behavior: auto;
    }

    .review-strip__toggle,
    .review-carousel__progress span {
        transition: none;
    }
}
