﻿: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 {
    justify-content: flex-start;
    margin-top: auto;
    padding-top: 6px;
}

.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;
}
