@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');

.products {
    display: block;
    margin: 0;
    overflow-y: scroll;
    scrollbar-width: none;
    height: calc(100vh - 100px);
}

.products .centered {
    display: flex;
    flex-wrap: wrap;
    margin: 24px auto;
    width: 1300px;
    gap: 24px;
}

.products .no-products {
    height: calc(100vh - 100px);
}

.products .product {
    position: relative;
    display: block;
    justify-content: center;
    background: radial-gradient(58.38% 58.39% at 50% 50%, #FFF 36.46%, #FF4E4E 100%);
    opacity: 65%;
    text-decoration: none;
    border-radius: 25px;
    width: calc(25% - 20px);
    height: 420px;
}

.products .product:link {
    opacity: 100%;
}

.products .premium-label {
    background-color: #FFFFFF;
    border-radius: 13px;
    color: #000000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 21px;
    font-weight: 400;
    height: 31px;
    width: 137px;
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    display: flex;
}

.products .product-image {
    height: 238px;
    /* align image to the center both vertically and horizontally */
    display: flex;
    position: absolute;
    top: calc(50% - 12px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.products .product-name {
    color: #000000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    position: absolute;
    bottom: 18px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%)
}

.products .product-price {
    color: #000000;
    font-family: "Work Sans", sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 1340px) {
    .products .centered {
        width: calc(100% - 40px);
        padding-left: 20px;
        padding-right: 20px;
    }

    .products .product {
        width: calc(33.3% - 20px);
    }
}

@media screen and (max-width: 1000px) {
    .products .product {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 600px) {
    .products .product {
        width: 100%
    }
}

@media screen and (orientation: portrait) {
    .products .product {
        width: 100%;
    }

    .products .centered {
        min-height: calc(100vh - 1110px);
    }
}