/* =========================================================
   SUPERAPE — VINYL & MERCH
   Brutalist / editorial
   Mobile first
   ========================================================= */

.wrapper {
    width: min(100% - 24px, 1180px);
    margin: 0 auto;
    padding: 18px 0 48px;
}


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

.hero {
    margin: 8px 0 30px;
    padding: 0 0 24px;

    border-bottom: 2px solid #e53935;
}

.hero h1 {
    max-width: 900px;

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 38px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.055em;

    text-transform: uppercase;
}

.hero p {
    max-width: 720px;

    margin: 0;

    color: #92929c;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   SECTION HEAD
   ========================================================= */

.merch-section-head {
    margin-bottom: 18px;
}

.merch-section-head h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;

    text-transform: uppercase;
}

.merch-section-head p {
    max-width: 800px;

    margin: 0;

    color: #92929c;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   VINYL GRID
   ========================================================= */

.vinyl-grid {
    display: grid;
    grid-template-columns: 1fr;

    gap: 12px;
}

.vinyl-card {
    display: flex;
    flex-direction: column;

    background: #101014;

    border: 1px solid #303038;
    border-radius: 2px;

    overflow: hidden;
}

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

.vinyl-cover {
    width: 100%;
    aspect-ratio: 1 / 1;

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

    padding: 12px;

    background: #151519;

    border-bottom: 1px solid #303038;
}

.vinyl-cover img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    display: block;
}

.vinyl-body {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 14px;
}

.vinyl-label {
    width: fit-content;

    margin-bottom: 12px;
    padding: 5px 7px;

    color: #ffffff;

    border: 1px solid #e53935;

    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.04em;

    text-transform: uppercase;
}

.vinyl-body h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.vinyl-body p {
    margin: 0 0 16px;

    color: #7f7f89;

    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.4;

    text-transform: uppercase;
}

.vinyl-buy {
    width: 100%;
    min-height: 44px;

    margin-top: auto;
    padding: 10px 12px;

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

    background: #e53935;
    color: #ffffff;

    border: 1px solid #e53935;
    border-radius: 2px;

    font-size: 12px;
    font-weight: 900;

    text-decoration: none;
}

.vinyl-buy:hover {
    background: #f04440;
    border-color: #f04440;
}


/* =========================================================
   MORE
   ========================================================= */

.vinyl-actions {
    display: flex;
    justify-content: center;

    margin-top: 18px;
}

.vinyl-more {
    min-height: 42px;

    padding: 9px 18px;

    background: transparent;
    color: #a8a8b2;

    border: 1px solid #303038;
    border-radius: 2px;

    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;

    text-transform: uppercase;

    cursor: pointer;
}

.vinyl-more:hover {
    color: #ffffff;
    border-color: #666672;
}


/* =========================================================
   FUTURE
   ========================================================= */

.future-merch {
    display: grid;
    grid-template-columns: 1fr;

    gap: 0;

    margin-top: 36px;
    padding: 18px 4px;

    border-top: 2px solid #ffffff;
    border-bottom: 1px solid #303038;
}

.future-index {
    color: #e53935;

    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;

    font-size: 10px;
    font-weight: 900;
}

.future-merch h2 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 900;
    line-height: 1.05;

    text-transform: uppercase;
}

.future-merch p {
    max-width: 760px;

    margin: 0;

    color: #92929c;

    font-size: 12px;
    line-height: 1.55;
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 760px) {

    .wrapper {
        padding-top: 28px;
    }

    .hero {
        margin-top: 12px;
        padding-bottom: 30px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero p {
        font-size: 14px;
    }

    .merch-section-head h2 {
        font-size: 30px;
    }

    .merch-section-head p {
        font-size: 13px;
    }

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

        gap: 14px;
    }
}

@media (min-width: 1024px) {

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

        gap: 16px;
    }

    .vinyl-body {
        padding: 16px;
    }

    .vinyl-body h3 {
        font-size: 19px;
    }

    .future-merch {
        grid-template-columns: 1fr;

        padding: 22px 4px;
    }
}

/* VINYL & MERCH — GLOBAL BACKGROUND */
body {
    background: #08080a;
}

.wrapper {
    background: transparent;
}
