/* Related products section */
.related-products {
    margin-top: 80px;
    padding: 0 40px;
}

.related-products h2 {
    font-size: 24px;
    font-weight: bold;
    color: black;
    margin-bottom: 32px;
    text-align: left;
}

/* Card on relative products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background-color: white;
    color: black;
    border-radius: 3%;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: bow-shadow 0.5s ease;
}

.product-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 16px;
}

.product-card .price {
    font-size: 15px;
    margin: 0 16px;
    color: #555;
}

.product-card a {
    display: block;
    margin: 12px 16px 16px;
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
}

.product-card a:hover {
    text-decoration: underline;
}

/* Responsive */
@media screen and (max-width:1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}