/* Shop page */

.shop-page {
    padding-top: 50px;
    padding-bottom: 70px;
}

.shop-container {
    width: 100%;
}

.shop-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Products in a row */

.shop-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Product */

.shop-product a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.shop-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-product-name {
    margin: 12px 0 5px;
    font-size: 18px;
}

.shop-product-price {
    font-size: 16px;
}

/* Hover */

.shop-product-image img {
    transition: transform 0.2s ease;
}

.shop-product:hover .shop-product-image img {
    transform: scale(1.03);
}

/* Tablet */

@media (max-width: 900px) {
    .shop-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */

@media (max-width: 600px) {
    .shop-page {
        padding: 30px 15px;
    }

    .shop-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}