.mt-10 {
    margin-top: 20px;
}

.relatedProducts {
    padding: 60px 0;
    background: #f9f9f9;
}

.relatedProducts .productCard {
    display: block;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.relatedProducts .productCard:hover {
    transform: translateY(-5px);
}

.relatedProducts .imgArea {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.relatedProducts .imgArea img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.relatedProducts .relatedTitle {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
}