body {
    background-image: url("../img/merch_page_background.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.merch-container {
    min-height: 90vh;
}

.merch-container .no-products-placeholder {
    min-width: 50vw;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: orange;
    letter-spacing: 2px;
    font-size: 1.2rem
}

.merch-container .title {
    font-size: 35px;
    color: orange;
    padding-top: 4rem;
    text-transform: uppercase;
}

.merch-container .product-grid {
    margin: 5rem 0 15rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
    padding: 0 8rem;
}

.footer {
    background: linear-gradient(to bottom, rgba(12, 12, 10, 0), #443108);
}

@media screen and (max-width: 768px) {
    body {
        background-image: url("../img/merch_page_background_mobile.jpg");
    }
    .merch-container .product-grid {
        margin: 1rem 0 6rem 0;
        gap: 3%;
        padding: 0;
        /*grid-template-columns: repeat(1, 1fr);*/
    }

    .merch-container .title {
        font-size: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .merch-container .product-grid {
        justify-content: center;

    }
}