.product-section {
    padding: 60px 0 120px 0;
}

.section-head {
    margin-bottom: 40px;
    text-align: center;
}

.section-head h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.related-card {
    display: block;
    padding: 20px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.related-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.related-card__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0px 20px;
    color: #333;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    padding-bottom: 20px;
}

.product-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.related-card__text {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .section-head h2 {
        font-size: 24px;
    }
}