/* ==========================================================
   LITTLE HERO MERCH BANNER
========================================================== */

body.merch-page {

    --merch-navy: #0d2c54;
    --merch-red: #bd3640;
    --merch-red-dark: #982732;

    --merch-olive: #7d8d5b;
    --merch-olive-light: #eef4e8;

    --merch-text: #526578;

    --merch-cream: #fffaf3;

}


/* ==========================================================
   MODERN HERO
========================================================== */

body.merch-page .merch-modern-hero {

    position: relative;

    overflow: hidden;

    background: #fffdf8;

    padding: 6rem 0;

}


/* Hero Grid */

body.merch-page .merch-hero-grid {

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 4rem;

    align-items: center;

}


/* ==========================================================
   IMAGE
========================================================== */

body.merch-page .merch-hero-media {

    position: relative;

    max-width: 700px;

    width: 100%;

    margin: 0 auto;

}

body.merch-page .merch-hero-image {

    display: block;

    width: 100%;

    height: auto;

    border-radius: 32px;

    object-fit: cover;

    box-shadow:
        0 28px 70px rgba(13, 44, 84, .18);

}


/* ==========================================================
   COPY
========================================================== */

body.merch-page .merch-hero-content {

    max-width: 620px;

}

body.merch-page .merch-eyebrow {

    display: inline-flex;

    align-items: center;

    padding: .65rem 1rem;

    border-radius: 999px;

    background: var(--merch-olive-light);

    color: var(--merch-olive);

    font-size: .78rem;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

    margin-bottom: 1.25rem;

}

body.merch-page .merch-hero-content h1 {

    color: var(--merch-navy);

    font-size: clamp(3.2rem, 6vw, 5.7rem);

    font-weight: 900;

    line-height: .95;

    letter-spacing: -.05em;

    margin-bottom: 1.5rem;

}

body.merch-page .merch-lead {

    font-size: 1.18rem;

    line-height: 1.8;

    color: var(--merch-text);

    margin-bottom: 1.5rem;

}

body.merch-page .merch-description {

    color: var(--merch-text);

    line-height: 1.85;

    margin-bottom: 2rem;

}


/* ==========================================================
   BUTTONS
========================================================== */

body.merch-page .merch-buttons {

    display: flex;

    gap: 1rem;

    flex-wrap: wrap;

}

body.merch-page .merch-buttons .primary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 56px;

    padding: .95rem 1.6rem;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 800;

    color: #fff;

    background:
        linear-gradient(180deg,
            #ef6c77 0%,
            #df4b58 42%,
            #c62f3d 72%,
            #a91f2d 100%);

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, .45),
        0 16px 34px rgba(189, 54, 64, .30);

    transition: .3s;

}

body.merch-page .merch-buttons .primary-btn:hover {

    transform: translateY(-3px);

}

body.merch-page .merch-buttons .secondary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 56px;

    padding: .95rem 1.6rem;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 800;

    color: var(--merch-navy);

    background: #fff;

    border: 1px solid rgba(13, 44, 84, .10);

    box-shadow:
        0 12px 24px rgba(13, 44, 84, .08);

    transition: .3s;

}

body.merch-page .merch-buttons .secondary-btn:hover {

    transform: translateY(-3px);

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:991px) {

    body.merch-page .merch-hero-grid {

        grid-template-columns: 1fr;

    }

    body.merch-page .merch-hero-content {

        max-width: 100%;

        text-align: center;

        margin: auto;

    }

    body.merch-page .merch-buttons {

        justify-content: center;

    }

}

@media (max-width:576px) {

    body.merch-page .merch-modern-hero {

        padding: 4rem 0;

    }

    body.merch-page .merch-hero-content h1 {

        font-size: clamp(2.6rem, 10vw, 3.8rem);

    }

    body.merch-page .merch-buttons {

        flex-direction: column;

    }

    body.merch-page .merch-buttons a {

        width: 100%;

    }

}

/* ==========================================================
   MORE DESIGNS COMING SOON
========================================================== */

body.merch-page .merch-coming-soon {
    position: relative;
    overflow: hidden;

    padding: 5.5rem 0;

    background:
        radial-gradient(circle at 88% 18%,
            rgba(125, 141, 91, 0.12),
            transparent 28%),
        linear-gradient(180deg,
            #ffffff 0%,
            #f8faf4 100%);
}

body.merch-page .merch-coming-soon-card {
    position: relative;

    max-width: 940px;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;

    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.5rem);

    border: 1px solid rgba(125, 141, 91, 0.16);
    border-radius: 28px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.97),
            rgba(238, 244, 232, 0.88));

    box-shadow:
        0 22px 52px rgba(13, 44, 84, 0.10);

    text-align: left;
}

body.merch-page .merch-coming-soon-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: 74%;
    height: 2px;

    transform: translateX(-50%);

    background:
        linear-gradient(90deg,
            transparent,
            rgba(125, 141, 91, 0.55),
            transparent);
}

body.merch-page .merch-coming-soon-icon {
    width: 76px;
    height: 76px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 50%;

    background:
        linear-gradient(180deg,
            #f4f8ef 0%,
            #e5eddc 100%);

    color: #7d8d5b;

    font-size: 1.55rem;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 12px 26px rgba(125, 141, 91, 0.14);
}

body.merch-page .merch-coming-soon-eyebrow {
    display: inline-block;

    margin-bottom: 0.75rem;

    color: #7d8d5b;

    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.merch-page .merch-coming-soon-copy h2 {
    margin: 0 0 1rem;

    color: #0d2c54;

    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.06;
}

body.merch-page .merch-coming-soon-copy p {
    max-width: 700px;
    margin: 0 0 0.8rem;

    color: #526578;

    font-size: 1rem;
    line-height: 1.8;
}

body.merch-page .merch-coming-soon-copy p:last-child {
    margin-bottom: 0;
}

body.merch-page .merch-coming-soon-note {
    color: #334155 !important;
    font-weight: 700;
}

/* ==========================================================
   MERCH COLLECTION INTRO
========================================================== */

body.merch-page .merch-collection-intro {
    position: relative;

    padding: 4rem 1.25rem 4rem;

    background: #ffffff;
}

body.merch-page .merch-collection-intro-content {
    max-width: 860px;

    margin: 0 auto;
}

body.merch-page .merch-collection-intro .merch-eyebrow {
    display: inline-flex;

    margin-bottom: 1rem;
}

body.merch-page .merch-collection-intro h2 {
    max-width: 780px;

    margin: 0 auto 1.25rem;

    color: var(--merch-navy);

    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;

    line-height: 1.08;
    letter-spacing: -0.035em;
}

body.merch-page .merch-collection-intro p {
    max-width: 760px;

    margin: 0 auto;

    color: var(--merch-text);

    font-size: 1.05rem;
    line-height: 1.8;
}

body.merch-page .merch-collection-intro-content::after {
    content: "";

    display: block;

    width: 110px;
    height: 3px;

    margin: 2.25rem auto 0;

    border-radius: 999px;

    background: linear-gradient(90deg,
            transparent,
            var(--merch-olive),
            transparent);

    opacity: 0.65;
}


/* ==========================================================
   MERCH COLLECTION INTRO — MOBILE
========================================================== */

@media (max-width: 767.98px) {

    body.merch-page .merch-collection-intro {
        padding: 3rem 1rem 2rem;
    }

    body.merch-page .merch-collection-intro h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);

        line-height: 1.12;
    }

    body.merch-page .merch-collection-intro p {
        font-size: 1rem;

        line-height: 1.7;
    }

}

/* ==========================================================
   MORE DESIGNS COMING SOON — TABLET
========================================================== */

@media (max-width: 991.98px) {

    body.merch-page .merch-coming-soon-card {
        max-width: 820px;
    }

}


/* ==========================================================
   MORE DESIGNS COMING SOON — MOBILE
========================================================== */

@media (max-width: 767.98px) {

    body.merch-page .merch-coming-soon {
        padding: 4rem 1rem;
    }

    body.merch-page .merch-coming-soon-card {
        grid-template-columns: 1fr;

        gap: 1.25rem;

        padding: 2rem 1.4rem;

        border-radius: 24px;

        text-align: center;
    }

    body.merch-page .merch-coming-soon-icon {
        margin: 0 auto;
    }

    body.merch-page .merch-coming-soon-copy h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    body.merch-page .merch-coming-soon-copy p {
        font-size: 0.96rem;
        line-height: 1.72;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    body.merch-page .merch-coming-soon-card {
        transition: none;
    }

}