.products__container h3 {
    font-size: 26px;
    font-weight: 600;
}
.product-list {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}
.product {
    background: rgba(36, 131, 251, 0.35);
    border: 2px solid #2483FB;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    align-items: center;
}
.product img {
    border-radius: 15px;
    width: 100%;
}
.product-title {
    font-weight: 500;
    font-size: 20px;
    color: var(--blue);
}
.product-desc {
    text-align: center;
    background-color: rgba(0,0,0,0.1);
    width: 100%;
    padding: 0.5rem;
    border-radius: 15px;
}
.product-price {
    display: flex;
    column-gap: 0.5rem;
    align-items: center;
}
.price-val {
    font-size: 20px;
    font-weight: 600;
}
.price-discount {
    background-color: var(--blue);
    padding: 0.2rem 0.3rem;
    border-radius: 15px;
}
.product-buy {
    background: linear-gradient(360deg, #134FF3 0%, #268AFC 100%);
    border: 2px solid #2483FB;
    border-radius: 15px;
    width: 100%;
    padding: 0.75rem;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}
@media (max-width: 875px) {
    .product-list {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 505px) {
    .product-list {
        grid-template-columns: 1fr;
    }
}