/* ========================================
   Shop Page
======================================== */

.shop-page {
    width: min(100%, var(--content-max));
    min-height: 64vh;
    margin-inline: auto;
    padding:
        clamp(4rem, 7vw, 7rem)
        var(--page-gutter)
        clamp(5rem, 8vw, 8rem);
}

.shop-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
}

.shop-coming-title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(3.75rem, 10vw, 9rem);
    line-height: 0.95;
}

.shop-copy {
    width: min(100%, 52rem);
    margin: 0;
    color: #e5e5e5;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    line-height: 1.45;
}

.shop-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    margin-top: clamp(0.25rem, 1vw, 0.75rem);
}

.shop-actions .button {
    min-width: min(100%, 13rem);
}

@media (max-width: 34rem) {
    .shop-page {
        min-height: 58vh;
        padding-top: 3rem;
        padding-bottom: 4rem;
    }

    .shop-coming-title {
        font-size: clamp(3rem, 18vw, 4.75rem);
    }

    .shop-copy {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .shop-actions {
        width: min(100%, 18rem);
    }

    .shop-actions .button {
        width: 100%;
    }
}
