/* ============================================================
   Related Products Section — shared across all product pages
   ============================================================ */

.related-products-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.related-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-products-section .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 32px;
    text-align: center;
    position: relative;
}

.related-products-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1976d2;
    margin: 12px auto 0;
    border-radius: 2px;
}

.related-products-section .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .related-products-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .related-products-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .related-products-section .section-title {
        font-size: 1.4rem;
    }
}
