﻿:root {
    --bg: #fbf7ef;
    --surface: #ffffff;
    --text: #12301f;
    --muted: #476b56;
    --brand: #2c6b3f;
    --brand-2: #7fb18d;
    --peach: #f7c7a3;
    --butter: #f2e3a0;
    --border: rgba(18, 48, 31, 0.12);
    --shadow: 0 10px 30px rgba(18, 48, 31, 0.10);
    --radius: 18px;
    --header-h: 72px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(900px 500px at 15% 10%, rgba(127, 177, 141, 0.25), transparent 60%), radial-gradient(900px 500px at 80% 20%, rgba(247, 199, 163, 0.22), transparent 55%), var(--bg);
    color: var(--text);
}

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

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.page-main {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 40px;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    backdrop-filter: blur(10px);
    background: rgba(251, 247, 239, 0.92);
    border-bottom: 1px solid var(--border);
}

.header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
}

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

.brand__logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand__name {
    font-weight: 800;
    letter-spacing: 0.2px;
}

.brand__tag {
    font-size: 12px;
    color: var(--muted);
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center;
    font-weight: 650;
    color: var(--muted);
}

    .nav a {
        padding: 10px 10px;
        border-radius: 12px;
    }

        .nav a:hover {
            background: rgba(127, 177, 141, 0.18);
            color: var(--text);
        }

.header__desktop-cta {
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
}

    .nav-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--text);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

.site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    background: rgba(251, 247, 239, 0.98);
    backdrop-filter: blur(10px);
}

    .mobile-menu[aria-hidden="true"] {
        display: none;
        max-height: 0;
        overflow: hidden;
    }

.mobile-menu__nav {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 14px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mobile-menu__nav a:not(.mobile-menu__cta) {
        padding: 14px 16px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.72);
        font-weight: 700;
    }

.mobile-menu__cta {
    margin-top: 4px;
    width: 100%;
}

/* HOMEPAGE HERO */
.hero-image {
    position: relative;
    width: 100%;
    height: 72vh;
    min-height: 520px;
    overflow: hidden;
}

.hero-image__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.landing-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-top: 40px;
}

.landing-intro__content {
    max-width: 760px;
}

    .landing-intro__content h1 {
        margin: 0 0 16px;
        font-size: clamp(2rem, 4vw, 4rem);
        line-height: 1.02;
        letter-spacing: -0.03em;
    }

/* GLOBAL TYPOGRAPHY */
.kicker {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid var(--border);
    background: rgba(242, 227, 160, 0.35);
    border-radius: 999px;
    color: var(--muted);
    font-weight: 650;
    margin: 0 0 14px;
}

.subhead {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 720px;
}

.micro {
    margin: 12px 0 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

/* SECTIONS */
.section {
    padding: 22px 0 34px;
}

.section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

    .section__head h1,
    .section__head h2,
    .section__head h3 {
        margin: 0;
    }

    .section__head p {
        margin: 0;
        color: var(--muted);
    }

.grid {
    display: grid;
    gap: 16px;
}

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

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

.card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 18px;
}

.tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(127, 177, 141, 0.14);
    font-weight: 750;
    text-align: center;
    min-height: 60px;
}

    .tile:hover {
        background: rgba(247, 199, 163, 0.20);
    }

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-weight: 750;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-small {
    padding: 10px 12px;
    border-radius: 12px;
}

.btn-primary {
    background: linear-gradient(180deg, rgba(44, 107, 63, 0.95), rgba(44, 107, 63, 0.80));
    color: #fff;
    border-color: rgba(44, 107, 63, 0.25);
}

    .btn-primary:hover {
        filter: brightness(1.02);
        transform: translateY(-1px);
    }

.btn-ghost {
    background: rgba(255, 255, 255, 0.65);
    color: var(--text);
}

    .btn-ghost:hover {
        background: rgba(242, 227, 160, 0.25);
    }

.link {
    color: var(--brand);
    font-weight: 750;
    display: inline-flex;
    gap: 8px;
    margin-top: 10px;
}

.band {
    border-top: 1px solid var(--border);
}

.band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(90deg, rgba(247, 199, 163, 0.22), rgba(127, 177, 141, 0.20));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
}

/* PRODUCTS PAGE */
.products-hero {
    padding-bottom: 12px;
}

.products-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 28px;
    align-items: center;
}

.products-hero__content {
    max-width: 620px;
}

    .products-hero__content h1 {
        margin: 0 0 16px;
        font-size: clamp(2rem, 4vw, 3.6rem);
        line-height: 1.04;
        letter-spacing: -0.03em;
    }

.products-hero__actions {
    justify-content: flex-start;
}

.products-carousel {
    position: relative;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 24px;
    overflow: hidden;
    min-height: 460px;
}

.products-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 460px;
}

.products-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

    .products-carousel__slide.is-active {
        opacity: 1;
        pointer-events: auto;
    }

    .products-carousel__slide img {
        width: 100%;
        height: 100%;
        min-height: 460px;
        object-fit: cover;
        display: block;
    }

.products-carousel__controls {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(18, 48, 31, 0.20);
    backdrop-filter: blur(6px);
}

.products-carousel__btn {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 0;
}

    .products-carousel__btn.is-active {
        background: #ffffff;
    }

.product-showcase-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-showcase-card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
    background: rgba(127, 177, 141, 0.10);
}

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

    .product-showcase-card__body h3 {
        margin: 0;
        font-size: 1.35rem;
    }

    .product-showcase-card__body p {
        margin: 0;
        color: var(--muted);
        line-height: 1.65;
        flex: 1;
    }

    .product-showcase-card__body .btn {
        align-self: flex-start;
    }

.products-story {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: stretch;
    background: linear-gradient(90deg, rgba(247, 199, 163, 0.18), rgba(127, 177, 141, 0.14));
}

.products-story__content h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
}

.products-story__points {
    display: grid;
    gap: 14px;
}

.products-story__point {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
}

    .products-story__point h3 {
        margin: 0 0 8px;
    }

    .products-story__point p {
        margin: 0;
        color: var(--muted);
        line-height: 1.6;
    }

.products-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(90deg, rgba(247, 199, 163, 0.20), rgba(127, 177, 141, 0.18));
}

.products-cta-band__content {
    max-width: 720px;
}

    .products-cta-band__content h2 {
        margin: 0 0 14px;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        line-height: 1.08;
    }

.products-cta-band__actions {
    justify-content: flex-start;
}

/* MERCH PAGE */
.merch-hero {
    padding-bottom: 12px;
}

.merch-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 28px;
    align-items: center;
}

.merch-hero__content {
    max-width: 620px;
}

    .merch-hero__content h1 {
        margin: 0 0 16px;
        font-size: clamp(2rem, 4vw, 3.6rem);
        line-height: 1.04;
        letter-spacing: -0.03em;
    }

.merch-hero__actions {
    justify-content: flex-start;
}

.merch-carousel {
    position: relative;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 24px;
    overflow: hidden;
    min-height: 460px;
}

.merch-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 460px;
}

.merch-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

    .merch-carousel__slide.is-active {
        opacity: 1;
        pointer-events: auto;
    }

    .merch-carousel__slide img {
        width: 100%;
        height: 100%;
        min-height: 460px;
        object-fit: cover;
        display: block;
    }

.merch-carousel__controls {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(18, 48, 31, 0.20);
    backdrop-filter: blur(6px);
}

.merch-carousel__btn {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 0;
}

    .merch-carousel__btn.is-active {
        background: #ffffff;
    }

.merch-showcase-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.merch-showcase-card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
    background: rgba(127, 177, 141, 0.10);
}

.merch-showcase-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

    .merch-showcase-card__body h3 {
        margin: 0;
        font-size: 1.35rem;
    }

    .merch-showcase-card__body p {
        margin: 0;
        color: var(--muted);
        line-height: 1.65;
        flex: 1;
    }

    .merch-showcase-card__body .btn {
        align-self: flex-start;
    }

.merch-story {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: stretch;
    background: linear-gradient(90deg, rgba(247, 199, 163, 0.18), rgba(127, 177, 141, 0.14));
}

.merch-story__content h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
}

.merch-story__points {
    display: grid;
    gap: 14px;
}

.merch-story__point {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
}

    .merch-story__point h3 {
        margin: 0 0 8px;
    }

    .merch-story__point p {
        margin: 0;
        color: var(--muted);
        line-height: 1.6;
    }

.merch-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(90deg, rgba(247, 199, 163, 0.20), rgba(127, 177, 141, 0.18));
}

.merch-cta-band__content {
    max-width: 720px;
}

    .merch-cta-band__content h2 {
        margin: 0 0 14px;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        line-height: 1.08;
    }

.merch-cta-band__actions {
    justify-content: flex-start;
}

/* EVENTS */
.events-hero {
    padding-bottom: 8px;
}

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

    .events-hero__content h1 {
        margin: 0 0 16px;
        font-size: clamp(2rem, 4vw, 3.5rem);
        line-height: 1.05;
        letter-spacing: -0.03em;
    }

.event-grid {
    align-items: stretch;
}

.event-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.event-card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
    background: rgba(127, 177, 141, 0.10);
}

.event-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.event-card__meta {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
}

.event-card__body h3 {
    margin: 0;
    font-size: 1.2rem;
}

.event-card__body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.event-card__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding-top: 10px;
}

    /* Force button to center perfectly */
    .event-card__actions .btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

.booking-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.booking-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .booking-card__content h2 {
        margin: 0 0 14px;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        line-height: 1.08;
    }

.booking-placeholder {
    min-height: 320px;
    border: 1px dashed rgba(18, 48, 31, 0.22);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(127, 177, 141, 0.12), rgba(247, 199, 163, 0.12)), rgba(255, 255, 255, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.booking-placeholder__inner {
    text-align: center;
    max-width: 420px;
}

    .booking-placeholder__inner h3 {
        margin: 0 0 12px;
    }

    .booking-placeholder__inner p {
        margin: 0 0 18px;
        color: var(--muted);
        line-height: 1.6;
    }

/* ABOUT */
.about-minimal-hero {
    padding-bottom: 8px;
}

.about-minimal-hero__content {
    max-width: 760px;
}

    .about-minimal-hero__content h1 {
        margin: 0 0 16px;
        font-size: clamp(2rem, 4vw, 3.4rem);
        line-height: 1.05;
        letter-spacing: -0.03em;
    }

.about-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: center;
}

.about-split__media {
    padding: 0;
    overflow: hidden;
}

.about-split__img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-split__content h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.08;
}

.about-split__content p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.75;
}

    .about-split__content p:last-child {
        margin-bottom: 0;
    }

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 6px;
}

.about-value {
    padding: 6px 0;
}

    .about-value h3 {
        margin: 0 0 10px;
        font-size: 1.2rem;
    }

    .about-value p {
        margin: 0;
        color: var(--muted);
        line-height: 1.65;
    }

.about-image-band {
    padding: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.about-image-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-image-band__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(127, 177, 141, 0.08);
}

.about-minimal-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(90deg, rgba(247, 199, 163, 0.20), rgba(127, 177, 141, 0.18));
}

.about-minimal-cta__content {
    max-width: 760px;
}

    .about-minimal-cta__content h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3vw, 2.4rem);
        line-height: 1.1;
    }

.about-minimal-cta__actions {
    justify-content: flex-start;
}

/* FOOTER */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 22px 0;
    margin-top: 22px;
    background: rgba(251, 247, 239, 0.75);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.footer__links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--muted);
}

/* AGE GATE */
.agegate {
    position: fixed;
    inset: 0;
    background: rgba(18, 48, 31, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.agegate--open {
    display: flex;
}

.agegate__card {
    width: min(520px, 100%);
}

@media (min-width: 921px) {
    .mobile-menu {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
    }
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .products-hero__grid,
    .products-story,
    .merch-hero__grid,
    .merch-story {
        grid-template-columns: 1fr;
    }

    .products-hero__actions,
    .products-cta-band__actions,
    .merch-hero__actions,
    .merch-cta-band__actions {
        justify-content: flex-start;
    }

    .products-cta-band,
    .merch-cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 920px) {
    .header__inner {
        gap: 12px;
    }

    .nav,
    .header__desktop-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-header.menu-open .mobile-menu[aria-hidden="false"] {
        display: block;
        max-height: 80vh;
    }

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

    .band__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .section__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-card,
    .about-split,
    .about-image-band__grid,
    .about-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero-image {
        height: 48vh;
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .container,
    .page-main {
        width: min(1120px, calc(100% - 24px));
    }

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

    .landing-intro {
        padding-top: 28px;
    }

    .section {
        padding: 20px 0 28px;
    }

    .footer__inner {
        flex-direction: column;
    }

    .page-main {
        padding-top: calc(var(--header-h) + 20px);
        padding-bottom: 28px;
    }

    .event-card__actions,
    .about-band__actions,
    .products-hero__actions,
    .products-cta-band__actions,
    .merch-hero__actions,
    .merch-cta-band__actions {
        justify-content: center;
    }

    .booking-placeholder {
        min-height: 240px;
    }

    .products-carousel,
    .products-carousel__track,
    .products-carousel__slide img,
    .merch-carousel,
    .merch-carousel__track,
    .merch-carousel__slide img {
        min-height: 280px;
    }

    .product-showcase-card__body .btn,
    .merch-showcase-card__body .btn {
        align-self: stretch;
    }

    .products-cta-band,
    .merch-cta-band {
        align-items: stretch;
    }

    .mobile-menu__nav {
        width: min(1120px, calc(100% - 24px));
    }

    .brand__text {
        display: none;
    }
}

/* MERCH IMAGE FOCAL POINTS */
.merch-focus {
    object-fit: cover;
}

.merch-focus--hoodie-model {
    object-position: 50% 34%;
}

.merch-focus--hat-model {
    object-position: 50% 28%;
}

.merch-focus--shirt-model {
    object-position: 50% 36%;
}

.merch-focus--hoodie-flat {
    object-position: 50% 34%;
    background: #efefef;
}

.merch-focus--hat-flat {
    object-position: 50% 42%;
    background: #efefef;
}

.merch-focus--shirt-flat {
    object-position: 50% 34%;
    background: #efefef;
}

/* EVENT CAPTURE PAGE */
.event-capture-hero {
    padding-bottom: 8px;
}

.event-capture-shell {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 26px;
    align-items: stretch;
    padding: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(127, 177, 141, 0.08));
}

.event-capture-shell__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px;
}

    .event-capture-shell__content h1 {
        margin: 0 0 16px;
        font-size: clamp(2.2rem, 4vw, 3.4rem);
        line-height: 1.04;
        letter-spacing: -0.03em;
        max-width: 12ch;
    }

.event-capture-points {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    max-width: 620px;
}

.event-capture-point {
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.68);
}

    .event-capture-point strong {
        display: block;
        margin-bottom: 6px;
        font-size: 0.98rem;
    }

    .event-capture-point p {
        margin: 0;
        color: var(--muted);
        line-height: 1.6;
    }

.event-capture-shell__form {
    display: flex;
    align-items: stretch;
}

.event-capture-form-card {
    width: 100%;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

    .event-capture-form-card h2 {
        margin: 0 0 10px;
        font-size: clamp(1.7rem, 2.5vw, 2.25rem);
        line-height: 1.08;
    }

.event-capture-form-intro {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.6;
}

.event-form {
    display: grid;
    gap: 14px;
}

.event-form__field {
    display: grid;
    gap: 8px;
}

    .event-form__field label,
    .event-form__check {
        font-size: 14px;
        font-weight: 700;
        color: var(--text);
    }

    .event-form__field input,
    .event-form__field select {
        width: 100%;
        min-height: 52px;
        padding: 14px 16px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: #fff;
        color: var(--text);
        font: inherit;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

        .event-form__field input::placeholder {
            color: var(--muted);
        }

        .event-form__field input:focus,
        .event-form__field select:focus {
            border-color: rgba(44, 107, 63, 0.45);
            box-shadow: 0 0 0 4px rgba(127, 177, 141, 0.18);
        }

.event-form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-top: 4px;
    font-weight: 600;
    color: var(--muted);
}

    .event-form__check input {
        margin-top: 2px;
    }

.event-form__actions {
    display: flex;
    padding-top: 4px;
}

.event-form__submit {
    width: 100%;
    min-height: 52px;
}

    .event-form__submit:disabled {
        opacity: 0.72;
        cursor: wait;
        transform: none;
    }

.event-form__helper {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

.event-form__status {
    display: none;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-weight: 700;
    line-height: 1.5;
}

    .event-form__status.is-visible {
        display: block;
    }

    .event-form__status.is-loading {
        background: rgba(242, 227, 160, 0.30);
    }

    .event-form__status.is-success {
        background: rgba(127, 177, 141, 0.20);
        color: var(--brand);
    }

    .event-form__status.is-error {
        background: rgba(247, 199, 163, 0.25);
        color: #8a3b1c;
    }

.event-capture-image-band {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 280px;
}

.event-capture-image-band__img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
}

.event-capture-image-band__overlay {
    position: absolute;
    inset: auto 20px 20px 20px;
    max-width: 540px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(251, 247, 239, 0.88);
    border: 1px solid rgba(18, 48, 31, 0.10);
    backdrop-filter: blur(10px);
}

    .event-capture-image-band__overlay h3 {
        margin: 0;
        font-size: clamp(1.2rem, 2vw, 1.6rem);
        line-height: 1.15;
    }

@media (max-width: 980px) {
    .event-capture-shell {
        grid-template-columns: 1fr;
    }

    .event-capture-shell__content h1 {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .event-capture-shell {
        padding: 16px;
        gap: 18px;
    }

    .event-capture-form-card {
        padding: 18px;
    }

    .event-capture-image-band__overlay {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px 16px;
    }
}
/* LOCATIONS PAGE */
.locations-page {
    padding-top: calc(var(--header-h) + 46px);
}

.locations-hero {
    padding-bottom: 12px;
}

.locations-hero__content {
    max-width: 840px;
}

    .locations-hero__content h1 {
        margin: 0 0 16px;
        font-size: clamp(2rem, 4vw, 3.75rem);
        line-height: 1.04;
        letter-spacing: -0.03em;
    }

.locations-hero__actions {
    justify-content: flex-start;
}

.locations-map-card {
    padding: 0;
    overflow: hidden;
}

.locations-map {
    width: 100%;
    height: 560px;
    min-height: 560px;
    z-index: 1;
}

    /* Leaflet hardening: prevents the site's global rules or a blocked CDN stylesheet from breaking map tiles. */
    .locations-map.leaflet-container {
        position: relative;
        overflow: hidden;
        touch-action: pan-x pan-y;
    }

    .locations-map .leaflet-pane,
    .locations-map .leaflet-tile,
    .locations-map .leaflet-marker-icon,
    .locations-map .leaflet-marker-shadow,
    .locations-map .leaflet-tile-container,
    .locations-map .leaflet-pane > svg,
    .locations-map .leaflet-pane > canvas,
    .locations-map .leaflet-zoom-box,
    .locations-map .leaflet-image-layer,
    .locations-map .leaflet-layer {
        position: absolute;
        left: 0;
        top: 0;
    }

    .locations-map .leaflet-tile {
        max-width: none !important;
        width: 256px !important;
        height: 256px !important;
        display: block;
    }

    .locations-map .leaflet-control-container .leaflet-top,
    .locations-map .leaflet-control-container .leaflet-bottom {
        position: absolute;
        z-index: 1000;
    }

    .locations-map .leaflet-top {
        top: 0;
    }

    .locations-map .leaflet-right {
        right: 0;
    }

    .locations-map .leaflet-bottom {
        bottom: 0;
    }

    .locations-map .leaflet-left {
        left: 0;
    }

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    color: var(--text);
}

.leaflet-popup-content strong {
    display: inline-block;
    margin-bottom: 4px;
}

.leaflet-popup-content a {
    color: var(--brand);
    font-weight: 800;
}

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

.location-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

    .location-card:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.96);
    }

.location-card__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.location-card h3 {
    margin: 0 0 8px;
    font-size: 1.18rem;
}

.location-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.location-card__address {
    margin-top: 6px !important;
    font-size: 0.95rem;
}

.location-card__distance {
    display: inline-flex;
    margin-top: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(127, 177, 141, 0.16);
    color: var(--brand);
    font-size: 0.86rem;
    font-weight: 800;
}

.location-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-shrink: 0;
}

@media (max-width: 820px) {
    .locations-list {
        grid-template-columns: 1fr;
    }

    .location-card__body {
        flex-direction: column;
    }

    .location-card__actions,
    .locations-hero__actions {
        justify-content: flex-start;
    }

    .locations-map {
        height: 460px;
        min-height: 460px;
    }
}

@media (max-width: 560px) {
    .locations-map {
        height: 380px;
        min-height: 380px;
    }

    .location-card__actions .btn {
        width: 100%;
    }
}

/* PRODUCT STORE CATALOG UPGRADE */
.product-store-page .section {
    position: relative;
}

.product-store-hero {
    padding-bottom: 16px;
}

.product-store-hero__grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 32px;
    align-items: center;
}

.product-store-hero__content h1 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 4.8vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.product-search-card {
    margin-top: 24px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.78);
}

    .product-search-card label {
        display: block;
        margin: 0 0 10px;
        color: var(--text);
        font-weight: 850;
    }

.product-search-card__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.product-search-card input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    font: inherit;
    outline: none;
}

    .product-search-card input:focus {
        border-color: rgba(44, 107, 63, 0.55);
        box-shadow: 0 0 0 4px rgba(127, 177, 141, 0.18);
    }

.product-store-hero__media {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.76);
}

    .product-store-hero__media img {
        width: 100%;
        height: 100%;
        min-height: 440px;
        object-fit: cover;
    }

.product-store-hero__badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(251, 247, 239, 0.9);
    border: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(18, 48, 31, 0.16);
}

    .product-store-hero__badge span,
    .product-store-hero__badge strong {
        display: block;
    }

    .product-store-hero__badge span {
        color: var(--muted);
        font-size: 0.86rem;
    }

    .product-store-hero__badge strong {
        color: var(--text);
        font-size: 1.05rem;
    }

.product-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(90deg, rgba(247, 199, 163, 0.16), rgba(127, 177, 141, 0.14));
}

    .product-toolbar h2 {
        margin: 0 0 6px;
        font-size: clamp(1.45rem, 2.4vw, 2rem);
    }

    .product-toolbar p {
        margin: 0;
        color: var(--muted);
    }

.product-filter-row {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.product-filter {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    font: inherit;
    font-weight: 820;
    cursor: pointer;
    transition: 0.2s ease;
}

    .product-filter:hover,
    .product-filter.is-active {
        background: var(--brand);
        border-color: rgba(44, 107, 63, 0.28);
        color: #fff;
        transform: translateY(-1px);
    }

.product-grid-head {
    align-items: flex-end;
}

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

.product-store-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-store-card__media {
    position: relative;
    width: 100%;
    padding: 0;
    border: none;
    cursor: pointer;
    background: rgba(127, 177, 141, 0.10);
    overflow: hidden;
}

.product-size-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(242, 227, 160, 0.96);
    border: 1px solid rgba(18, 48, 31, 0.10);
    color: var(--text);
    font-size: .82rem;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(18,48,31,.10);
    z-index: 2;
}

.product-store-card__media img {
    width: 100%;
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
    transition: transform 0.25s ease;
}

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

.product-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(242, 227, 160, 0.9);
    border: 1px solid rgba(18, 48, 31, 0.10);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.product-store-card__media .product-pill {
    position: absolute;
    left: 12px;
    bottom: 12px;
}

.product-store-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

    .product-store-card__body h3 {
        margin: 0 0 8px;
        font-size: 1.14rem;
        line-height: 1.16;
    }

    .product-store-card__body p {
        margin: 0;
        color: var(--muted);
        line-height: 1.55;
        font-size: 0.95rem;
    }

.product-store-card__specs,
.product-modal__specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: auto 0 0;
}

    .product-store-card__specs div,
    .product-modal__specs div {
        padding: 10px;
        border-radius: 14px;
        background: rgba(127, 177, 141, 0.11);
        border: 1px solid rgba(18, 48, 31, 0.08);
    }

    .product-store-card__specs dt,
    .product-modal__specs dt {
        margin: 0 0 4px;
        color: var(--muted);
        font-size: 0.72rem;
        font-weight: 850;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .product-store-card__specs dd,
    .product-modal__specs dd {
        margin: 0;
        color: var(--text);
        font-size: 0.86rem;
        font-weight: 850;
    }

.product-store-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

    .product-store-card__actions .btn {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.92rem;
    }

.product-empty {
    text-align: center;
    padding: 32px;
}

    .product-empty h3 {
        margin: 0 0 8px;
    }

    .product-empty p {
        margin: 0;
        color: var(--muted);
    }

.product-feature-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(90deg, rgba(127, 177, 141, 0.20), rgba(247, 199, 163, 0.16));
}

    .product-feature-band h2 {
        margin: 0 0 12px;
        font-size: clamp(1.8rem, 3vw, 2.7rem);
        line-height: 1.05;
    }

.product-feature-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .product-modal.is-open {
        display: flex;
    }

.product-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 48, 31, 0.58);
    backdrop-filter: blur(6px);
}

.product-modal__dialog {
    position: relative;
    width: min(980px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    overflow: auto;
    border-radius: 26px;
    background: var(--bg);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.product-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.product-modal__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.product-modal__image-wrap {
    min-height: 520px;
    background: rgba(127, 177, 141, 0.12);
}

    .product-modal__image-wrap img {
        width: 100%;
        height: 100%;
        min-height: 520px;
        object-fit: cover;
    }

.product-modal__content {
    padding: 38px;
}

    .product-modal__content h2 {
        margin: 14px 0 14px;
        font-size: clamp(2rem, 4vw, 3.1rem);
        line-height: 1;
        letter-spacing: -0.035em;
    }

    .product-modal__content p {
        color: var(--muted);
        line-height: 1.65;
    }

.product-modal__specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 20px 0;
}

.product-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.product-modal__note {
    margin: 18px 0 0;
    font-size: 0.86rem;
}

body.product-modal-open {
    overflow: hidden;
}

@media (max-width: 1100px) {
    .product-store-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .product-store-hero__grid,
    .product-modal__grid {
        grid-template-columns: 1fr;
    }

    .product-store-hero__media,
    .product-store-hero__media img,
    .product-modal__image-wrap,
    .product-modal__image-wrap img {
        min-height: 340px;
    }

    .product-toolbar,
    .product-feature-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-filter-row,
    .product-feature-band__actions {
        justify-content: flex-start;
    }
}

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

    .product-search-card__row {
        grid-template-columns: 1fr;
    }

    .product-modal__content {
        padding: 24px;
    }

    .product-modal__specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .product-store-grid {
        grid-template-columns: 1fr;
    }

    .product-filter {
        flex: 1 1 auto;
    }

    .product-feature-band__actions,
    .product-modal__actions {
        width: 100%;
    }

        .product-feature-band__actions .btn,
        .product-modal__actions .btn {
            width: 100%;
        }
}


/* Premium Product Catalog Layout */
.product-store-page {
    width: min(1480px, calc(100% - 80px));
    padding-top: calc(var(--header-h) + 56px);
}

.product-controls-section {
    padding: 0 0 48px;
}

.product-catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 38px;
}

    .product-catalog-header h1 {
        margin: 0 0 8px;
        font-size: clamp(2.6rem, 4.5vw, 4rem);
        line-height: 0.95;
        letter-spacing: -0.055em;
    }

    .product-catalog-header p {
        margin: 0;
        color: var(--muted);
        font-size: 1.15rem;
    }

.product-retailer-link {
    color: var(--brand);
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
}

.product-catalog-panel {
    display: grid;
    grid-template-columns: 1fr 310px;
    align-items: center;
    gap: 28px;
    padding: 24px 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(18, 48, 31, 0.08);
    box-shadow: 0 24px 60px rgba(18, 48, 31, 0.08);
}

    .product-catalog-panel .product-search-card {
        margin: 0;
        padding: 0;
        background: transparent;
    }

        .product-catalog-panel .product-search-card input {
            min-height: 58px;
            padding: 0 18px;
            border: none;
            background: transparent;
            box-shadow: none;
            font-size: 1.05rem;
        }

            .product-catalog-panel .product-search-card input:focus {
                box-shadow: none;
                border: none;
            }

.product-category-menu {
    position: relative;
    padding-left: 28px;
    border-left: 1px solid rgba(18,48,31,.10);
}

.product-category-trigger {
    width: 100%;
    min-height: 58px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 12px;
    align-content: center;
    padding: 0;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.product-category-label {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 600;
}

.product-category-trigger strong {
    font-size: 1rem;
    font-weight: 850;
    color: var(--text);
}

.product-category-arrow {
    align-self: center;
    color: var(--brand);
    font-size: 1.15rem;
    transition: transform .18s ease;
}

.product-category-trigger[aria-expanded="true"]
.product-category-arrow {
    transform: rotate(180deg);
}

.product-category-list {
    position: absolute;
    top: calc(100% + 12px);
    right: -8px;
    width: 260px;
    z-index: 50;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(18,48,31,.08);
    box-shadow: 0 20px 50px rgba(18,48,31,.14);
}

    .product-category-list button {
        width: 100%;
        min-height: 42px;
        padding: 0 14px;
        border: none;
        border-radius: 12px;
        background: transparent;
        text-align: left;
        font: inherit;
        font-weight: 700;
        color: var(--text);
        cursor: pointer;
        transition: all .18s ease;
    }

        .product-category-list button:hover {
            background: rgba(127,177,141,.14);
            color: var(--brand);
        }

        .product-category-list button.is-active {
            background: rgba(127,177,141,.18);
            color: var(--brand);
            font-weight: 850;
        }

.product-filter-row--hidden {
    display: none !important;
}

.product-grid-section {
    padding-top: 0;
}

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

.product-store-card {
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(18, 48, 31, 0.08);
}

.product-store-card__media img {
    aspect-ratio: 1 / 0.64;
}

.product-store-card__actions .btn-primary::after {
    content: " ↗";
}

@media (max-width: 1100px) {
    .product-store-page {
        width: min(1120px, calc(100% - 40px));
    }

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

@media (max-width: 760px) {
    .product-store-page {
        width: min(1120px, calc(100% - 24px));
        padding-top: calc(var(--header-h) + 28px);
    }

    .product-catalog-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 22px;
    }

    .product-catalog-panel {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .product-category-select-wrap {
        padding-left: 0;
        padding-top: 16px;
        border-left: none;
        border-top: 1px solid rgba(18, 48, 31, 0.10);
    }

    .product-store-grid {
        grid-template-columns: 1fr;
    }
}


.product-store-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all .25s ease;
}

    .product-store-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(18,48,31,.12);
    }

.product-store-card__media img {
    aspect-ratio: 1/0.8;
    object-fit: cover;
}

.product-store-card__body {
    padding: 18px;
    gap: 16px;
}

.product-store-card__brand {
    display: block;
    font-size: .78rem;
    font-weight: 800;
    color: var(--muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.product-store-card__header h3 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.2;
}

.product-store-card__meta {
    margin-top: 6px;
    font-size: .85rem;
    color: var(--muted);
}

.product-store-card__availability {
    font-size: .85rem;
    color: var(--brand);
    font-weight: 700;
}

.product-store-card__specs {
    margin-top: auto;
}

.product-store-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

    .product-store-card__actions .btn {
        width: 100%;
        min-height: 44px;
    }

/* Product size custom dropdown */
.product-size-menu {
    position: relative;
    width: 100%;
}

.product-size-trigger {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #b7cfbf;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
    color: var(--text);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

    .product-size-trigger:hover,
    .product-size-trigger:focus,
    .product-size-trigger[aria-expanded="true"] {
        border-color: var(--brand);
        box-shadow: 0 0 0 4px rgba(127, 177, 141, .16);
        transform: translateY(-1px);
    }

.product-size-arrow {
    color: var(--brand);
    font-size: 1rem;
    line-height: 1;
    transition: transform .18s ease;
}

.product-size-trigger[aria-expanded="true"] .product-size-arrow {
    transform: rotate(180deg);
}

.product-size-list {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% + 8px);
    z-index: 80;
    width: 100%;
    padding: 7px;
    border: 1px solid rgba(18, 48, 31, .10);
    border-radius: 16px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 16px 40px rgba(18, 48, 31, .14);
    backdrop-filter: blur(10px);
}

    .product-size-list button {
        width: 100%;
        min-height: 38px;
        padding: 0 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        border: none;
        border-radius: 11px;
        background: transparent;
        color: var(--text);
        font: inherit;
        font-weight: 750;
        text-align: left;
        cursor: pointer;
    }

        .product-size-list button:hover {
            background: rgba(127, 177, 141, .18);
            color: var(--brand);
        }

        .product-size-list button.is-active {
            background: var(--brand);
            color: #ffffff;
        }

.product-size-check {
    opacity: 0;
    font-weight: 900;
}

.product-size-list button.is-active .product-size-check {
    opacity: 1;
}

/* MERCH STORE COMMERCE REVAMP */
.merch-store-page {
    width: 100%;
    padding-top: var(--header-h);
}

.merch-store-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 72px max(56px, calc((100vw - 1360px) / 2 + 56px)) 84px;
    margin-bottom: -18px;
    border-radius: 0 0 28px 28px;
    background: var(--bg);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

    .merch-store-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient( 90deg, rgba(251, 247, 239, 0.99) 0%, rgba(251, 247, 239, 0.94) 28%, rgba(251, 247, 239, 0.62) 48%, rgba(251, 247, 239, 0.14) 76%, rgba(251, 247, 239, 0.02) 100% );
        pointer-events: none;
    }

.merch-store-hero__bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: contain;
    object-position: center bottom;
}



.merch-store-hero__content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

    .merch-store-hero__content h1 {
        margin: 0 0 22px;
        font-size: clamp(3.6rem, 6vw, 5.6rem);
        line-height: 0.92;
        letter-spacing: -0.065em;
    }

    .merch-store-hero__content .subhead {
        max-width: 520px;
        font-size: 1.1rem;
        line-height: 1.6;
    }

.merch-store-perks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 640px;
    margin-top: 26px;
}

    .merch-store-perks div {
        min-height: 84px;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 4px 10px;
        align-items: center;
        padding: 14px;
        border: 1px solid rgba(18, 48, 31, 0.10);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: 0 14px 34px rgba(18, 48, 31, 0.08);
        backdrop-filter: blur(8px);
    }

    .merch-store-perks span {
        grid-row: span 2;
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: rgba(127, 177, 141, 0.16);
        color: var(--brand);
        font-weight: 900;
    }

    .merch-store-perks strong {
        font-size: 0.94rem;
    }

    .merch-store-perks small {
        color: var(--muted);
        line-height: 1.35;
    }

.merch-store-toolbar {
    position: relative;
    z-index: 5;
    width: calc(100% - 32px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    margin: 0 auto 30px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(18, 48, 31, 0.10);
}

.merch-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.merch-filter {
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--text);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
    transition: 0.18s ease;
}

    .merch-filter:hover,
    .merch-filter.is-active {
        background: var(--brand);
        color: #fff;
        border-color: rgba(44, 107, 63, 0.28);
        transform: translateY(-1px);
    }

.merch-sort-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
}

.merch-sort {
    min-height: 46px;
    min-width: 180px;
    padding: 0 42px 0 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-weight: 800;
    outline: none;
}

.merch-commerce-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 26px;
    align-items: start;
}

.merch-grid-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 18px;
}

    .merch-grid-head h2 {
        margin: 0 0 6px;
        font-size: clamp(1.6rem, 2.5vw, 2.2rem);
        letter-spacing: -0.035em;
    }

    .merch-grid-head p {
        margin: 0;
        color: var(--muted);
    }

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

.merch-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

    .merch-product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 42px rgba(18, 48, 31, 0.12);
    }

.merch-product-card__media {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-bottom: 1px solid rgba(18, 48, 31, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 247, 239, 0.72));
}

    .merch-product-card__media img {
        width: 100%;
        height: 230px;
        object-fit: contain;
        transition: transform 0.24s ease;
    }

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

.merch-product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

    .merch-product-card__body h3 {
        margin: 0 0 6px;
        font-size: 1.18rem;
        line-height: 1.2;
    }

.merch-product-card__price {
    margin: 0 0 8px;
    color: var(--brand);
    font-weight: 900;
    font-size: 1.1rem;
}

.merch-product-card__description {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.94rem;
}

.merch-product-card__options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.merch-option {
    min-width: 38px;
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: 0.18s ease;
}

    .merch-option:hover,
    .merch-option.is-active {
        background: var(--brand);
        color: #fff;
        border-color: rgba(44, 107, 63, 0.35);
    }

.merch-add-btn {
    width: 100%;
    min-height: 48px;
}

.merch-cart {
    position: sticky;
    top: calc(var(--header-h) + 22px);
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
}

.merch-cart__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

    .merch-cart__head .kicker {
        margin-bottom: 8px;
    }

    .merch-cart__head h2 {
        margin: 0;
        font-size: 1.4rem;
    }

.merch-cart__clear {
    border: none;
    background: transparent;
    color: var(--brand);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

.merch-cart__items {
    display: grid;
    gap: 12px;
    max-height: 420px;
    overflow: auto;
    padding-right: 4px;
}

.merch-cart-empty {
    padding: 18px;
    border-radius: 16px;
    background: rgba(127, 177, 141, 0.10);
    color: var(--muted);
    text-align: center;
    font-weight: 700;
}

.merch-cart-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(18, 48, 31, 0.08);
    background: rgba(251, 247, 239, 0.55);
}

    .merch-cart-item img {
        width: 76px;
        height: 76px;
        object-fit: contain;
        border-radius: 12px;
        background: #fff;
    }

.merch-cart-item__top,
.merch-cart-item__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

    .merch-cart-item__top strong {
        line-height: 1.2;
    }

    .merch-cart-item__top button {
        border: none;
        background: transparent;
        color: var(--muted);
        cursor: pointer;
        font-size: 1.15rem;
        line-height: 1;
    }

.merch-cart-item p {
    margin: 5px 0 10px;
    color: var(--muted);
    font-size: 0.9rem;
}

.merch-quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(18, 48, 31, 0.08);
}

    .merch-quantity-control button {
        width: 28px;
        height: 28px;
        border: none;
        border-radius: 999px;
        background: rgba(127, 177, 141, 0.14);
        color: var(--brand);
        font-weight: 900;
        cursor: pointer;
    }

    .merch-quantity-control span {
        min-width: 18px;
        text-align: center;
        font-weight: 850;
    }

.merch-cart__summary {
    display: grid;
    gap: 10px;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(18, 48, 31, 0.10);
}

    .merch-cart__summary div {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        color: var(--muted);
    }

    .merch-cart__summary strong {
        color: var(--text);
    }

    .merch-cart__summary .merch-cart__total {
        margin-top: 6px;
        padding-top: 12px;
        border-top: 1px solid rgba(18, 48, 31, 0.10);
        color: var(--text);
        font-size: 1.1rem;
    }

        .merch-cart__summary .merch-cart__total strong {
            color: var(--brand);
            font-size: 1.35rem;
        }

.merch-checkout-btn {
    width: 100%;
    min-height: 52px;
    margin-top: 18px;
}

    .merch-checkout-btn:disabled {
        opacity: 0.58;
        cursor: not-allowed;
        transform: none;
    }

.merch-cart__note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: center;
}

.merch-quality-band {
    margin-top: 30px;
    text-align: center;
    padding: 34px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(127, 177, 141, 0.12));
}

    .merch-quality-band h2 {
        margin: 0 auto 24px;
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        letter-spacing: -0.04em;
    }

.merch-quality-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    text-align: center;
}

    .merch-quality-grid div {
        padding: 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.56);
        border: 1px solid rgba(18, 48, 31, 0.08);
    }

    .merch-quality-grid strong {
        display: block;
        margin-bottom: 8px;
    }

    .merch-quality-grid p {
        margin: 0;
        color: var(--muted);
        line-height: 1.5;
    }

@media (max-width: 1200px) {
    .merch-store-page {
        width: min(1120px, calc(100% - 40px));
    }

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

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

    .merch-cart {
        position: static;
    }

    .merch-quality-grid,
    .merch-store-perks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .merch-store-page {
        width: min(1120px, calc(100% - 24px));
        padding-top: calc(var(--header-h) + 20px);
    }

    .merch-store-hero {
        min-height: 620px;
        align-items: flex-start;
        padding: 44px 24px;
        border-radius: 24px;
        margin-bottom: 18px;
    }

    .merch-store-hero__bg {
        object-position: center bottom;
    }

    .merch-store-hero::before {
        background: linear-gradient( 180deg, rgba(251, 247, 239, 0.99) 0%, rgba(251, 247, 239, 0.92) 42%, rgba(251, 247, 239, 0.22) 100% );
    }

    .merch-store-toolbar {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .merch-sort-wrap,
    .merch-sort {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .merch-store-page {
        width: min(1120px, calc(100% - 24px));
        padding-top: calc(var(--header-h) + 22px);
    }

    .merch-store-hero {
        min-height: 640px;
        padding: 34px 20px;
    }

    .merch-store-hero__content h1 {
        font-size: clamp(3rem, 17vw, 4.5rem);
    }

    .merch-store-perks,
    .merch-store-grid,
    .merch-quality-grid {
        grid-template-columns: 1fr;
    }
}

/* FINAL MERCH STORE MATCH - screenshot layout polish */
.nav a.is-active {
    position: relative;
    color: var(--text);
    background: transparent;
}

.nav a.is-active::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -16px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand);
}

.mobile-menu__nav a.is-active {
    color: var(--text);
    background: rgba(127, 177, 141, 0.18);
}

.merch-store-page {
    width: min(1470px, calc(100% - 64px));
    padding-top: var(--header-h);
}

.merch-store-hero {
    min-height: 595px;
    padding: 78px 56px 64px;
    margin-bottom: -18px;
    border-radius: 0 0 30px 30px;
}

.merch-store-hero::before {
    background: linear-gradient(90deg,
        rgba(251,247,239,.99) 0%,
        rgba(251,247,239,.96) 27%,
        rgba(251,247,239,.67) 48%,
        rgba(251,247,239,.18) 72%,
        rgba(251,247,239,.03) 100%);
}

.merch-store-hero__bg {
    object-position: 72% center;
    filter: saturate(.98) contrast(1.02);
}

.merch-store-hero__content {
    max-width: 575px;
}

.merch-store-hero__content h1 {
    margin-bottom: 18px;
    font-size: clamp(4.3rem, 6.5vw, 6.55rem);
    line-height: .91;
    letter-spacing: -0.075em;
    font-weight: 950;
}

.merch-store-hero__content .kicker,
.merch-cart__head .kicker,
.merch-quality-band .kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 9px 15px;
    border: 1px solid rgba(18, 48, 31, .11);
    border-radius: 999px;
    background: rgba(242, 227, 160, .48);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

.merch-store-hero__content .subhead {
    max-width: 565px;
    font-size: 1.05rem;
    color: var(--muted);
}

.merch-store-perks {
    max-width: 650px;
    gap: 14px;
    margin-top: 25px;
}

.merch-store-perks div {
    min-height: 92px;
    padding: 15px 17px;
    border-radius: 15px;
    background: rgba(255,255,255,.76);
}

.merch-store-perks span {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    background: rgba(127, 177, 141, .18);
    border: 1px solid rgba(44, 107, 63, .14);
}

.merch-store-toolbar {
    width: calc(100% - 32px);
    min-height: 82px;
    padding: 18px 22px;
    margin-bottom: 34px;
    border-radius: 17px;
}

.merch-filter {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(18,48,31,.04);
}

.merch-sort {
    min-width: 218px;
    min-height: 48px;
    border-radius: 14px;
}

.merch-commerce-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 40px;
}

.merch-grid-head h2 {
    font-size: clamp(2rem, 2.4vw, 2.45rem);
    line-height: 1;
}

.merch-store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.merch-product-card {
    border-radius: 18px;
}

.merch-product-card__media {
    min-height: 270px;
}

.merch-product-card__media img {
    height: 245px;
}

.merch-cart {
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(18, 48, 31, .10);
}

.merch-cart-empty {
    text-align: left;
    font-weight: 850;
    color: var(--text);
    background: rgba(127,177,141,.12);
}

@media (max-width: 1180px) {
    .merch-commerce-layout {
        grid-template-columns: 1fr;
    }

    .merch-cart {
        position: relative;
        top: auto;
    }
}

@media (max-width: 920px) {
    .merch-store-page {
        width: min(100% - 28px, 720px);
        padding-top: calc(var(--header-h) + 20px);
    }

    .merch-store-hero {
        min-height: auto;
        padding: 44px 24px 300px;
        border-radius: 26px;
        margin-bottom: 18px;
    }

    .merch-store-hero::before {
        background: linear-gradient(180deg, rgba(251,247,239,.98) 0%, rgba(251,247,239,.88) 47%, rgba(251,247,239,.18) 100%);
    }

    .merch-store-hero__bg {
        object-position: 62% bottom;
    }

    .merch-store-hero__content h1 {
        font-size: clamp(3.3rem, 15vw, 5rem);
    }

    .merch-store-perks,
    .merch-store-grid,
    .merch-quality-grid {
        grid-template-columns: 1fr;
    }

    .merch-store-toolbar {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .merch-sort-wrap {
        justify-content: space-between;
    }

    .merch-sort {
        min-width: 0;
        flex: 1;
    }
}

/* TRUE MERCH HERO SHELF BLEND OVERRIDE */

.merch-store-page {
    width: min(1440px, calc(100% - 64px));
    padding-top: var(--header-h);
}

.merch-store-hero {
    position: relative;
    min-height: 575px;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 72px 56px 84px;
    margin-bottom: 0;
    border-radius: 0;
    background: radial-gradient(circle at 74% 42%, rgba(127, 177, 141, .18), transparent 38%), linear-gradient(90deg, rgba(251,247,239,1) 0%, rgba(251,247,239,.94) 38%, rgba(251,247,239,.78) 100%);
}

    .merch-store-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(90deg, rgba(251,247,239,1) 0%, rgba(251,247,239,.96) 27%, rgba(251,247,239,.66) 45%, rgba(251,247,239,.22) 62%, rgba(251,247,239,0) 82%), linear-gradient(180deg, rgba(251,247,239,0) 68%, rgba(251,247,239,.72) 86%, rgba(251,247,239,1) 100%);
    }

.merch-store-hero__scene {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.merch-store-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    filter: saturate(.98) contrast(1.02);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 22%, black 100%), linear-gradient(180deg, black 0%, black 82%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(90deg, transparent 0%, black 22%, black 100%), linear-gradient(180deg, black 0%, black 82%, transparent 100%);
    mask-composite: intersect;
}

.merch-store-hero__content {
    position: relative;
    z-index: 3;
    max-width: 555px;
}

    .merch-store-hero__content h1 {
        max-width: 540px;
        margin-bottom: 18px;
        font-size: clamp(4.2rem, 6vw, 6.35rem);
        line-height: .91;
        letter-spacing: -.075em;
    }

.merch-store-perks {
    max-width: 650px;
}

.merch-store-toolbar {
    position: relative;
    z-index: 6;
    width: calc(100% - 32px);
    max-width: 1360px;
    min-height: 82px;
    margin: -34px auto 34px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(18,48,31,.1);
    box-shadow: 0 18px 45px rgba(18,48,31,.08);
    backdrop-filter: blur(12px);
}

.merch-commerce-layout {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 4;
}

@media (max-width: 920px) {
    .merch-store-page {
        width: min(100% - 28px, 720px);
    }

    .merch-store-hero {
        min-height: auto;
        padding: 44px 24px 330px;
        overflow: hidden;
        border-radius: 24px;
    }

    .merch-store-hero__scene {
        width: 100%;
        height: 360px;
    }

    .merch-store-hero__bg {
        object-position: center bottom;
        -webkit-mask-image: linear-gradient(180deg, black 0%, black 78%, transparent 100%);
        mask-image: linear-gradient(180deg, black 0%, black 78%, transparent 100%);
    }

    .merch-store-hero::before {
        background: linear-gradient(180deg, rgba(251,247,239,.98) 0%, rgba(251,247,239,.9) 44%, rgba(251,247,239,.28) 72%, rgba(251,247,239,1) 100%);
    }

    .merch-store-toolbar {
        width: 100%;
        margin: -24px auto 30px;
    }
}
