/* Related Products Block Styles */
.related-products-section {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
}
.related-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.related-products-title {
    font-size: 28px;
    color: #003366;
    margin-bottom: 40px;
    font-weight: 600;
}
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.related-product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.related-product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: #003366;
}
.related-product-link {
    text-decoration: none;
    color: inherit;
    width: 100%;
}
.related-product-image {
    margin-bottom: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.related-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}
.related-product-name {
    font-size: 16px;
    color: #003366;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    .related-products-title {
        font-size: 24px;
        text-align: center;
    }
}
