.product-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1530px;
}

.category-title-block {
    text-align: center;
    margin-bottom: 20px;
}

.category-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-title {
    color: #2B2B2B;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -2.88px;
    margin: 0;
    padding: 0;
}

.category-subtitle {
    color: rgba(43, 43, 43, 0.50);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1.8px;
    margin: 0;
    padding: 0;
}

.products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-image {
    position: relative;
    margin-bottom: 20px;
    aspect-ratio: 1 / 0.99;
}

.product-status {
    position: absolute;
    top: 16px;
    left: 20px;
    border-radius: 20px;
    border: 1px solid rgba(43, 43, 43, 0.70);
    background: #FFF;
    display: flex;
    padding: 10px 19px;
    color: rgba(43, 43, 43, 0.70);
    font-family: "Source Sans Pro", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.product-img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    object-position: 50% 50%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.product-img-logo {
    object-fit: fill;
}

.product-name {
    color: #2B2B2B;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.product-buy {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.product-add-to-cart {
    background: none;
    border: none;
}

.product-buy-formats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-buy-format {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-buy-format-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.new-price {
    color: #2B2B2B;
    font-size: 24px;
    line-height: 100%;
}

.old-price {
    color: #2B2B2B;
    opacity: 50%;
    font-size: 20px;
    font-weight: 300;
    text-decoration: line-through;
    letter-spacing: 0;
    vertical-align: middle;
}

.product-buy-format-text {
    color: #2B2B2B;
    opacity: 50%;
    font-size: 20px;
    font-weight: 300;
}

.product-add-to-cart img {
    border-radius: 20px;
    border: 1px solid rgba(43, 43, 43, 0.70);
    background: #FFF;
    display: flex;
    padding: 11px 21px;
}

.product-buy-now {
    border-radius: 20px;
    border: none;
    background: #926A54;
    padding: 17px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    width: 100%;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .category-title-block {
        margin-bottom: 30px;
    }

    .category-title {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .category-subtitle {
        font-size: 24px;
    }

    .products {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
        row-gap: 30px;
        align-items: start;
    }

    .product {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .product-name {
        margin-bottom: 10px;
    }

    .product-buy {
        margin-top: auto;
    }

    .product-buy-format {
        gap: 3px;
    }

}

@media (min-width: 1200px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 30px;
    }

    .category-title {
        font-size: 48px;
    }
}

@media (min-width: 1730px) {
    .products {
        grid-template-columns: repeat(4, 1fr);
        column-gap: 30px;
    }

    .product-name {
        font-size: 20px;
    }
}