.custom-related-products {
    margin-top: 60px;
}

.related-header {
    margin-bottom: 30px;
}

.related-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

/* GRID */
.related-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(220px, 1fr));

    gap: 20px;
}

/* CARD */
.related-card {
    display: flex;
    flex-direction: column;

    background: #fff;

    border-radius: 16px;
    overflow: hidden;

    text-decoration: none;

    transition: .25s ease;

    border: 1px solid #eee;
}

.related-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);
}

/* IMAGEM */
.related-thumb {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #f8f8f8;
}

.related-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .3s ease;
}

.related-card:hover img {
    transform: scale(1.05);
}

/* DESCONTO */
.related-discount {
    position: absolute;

    top: 12px;
    left: 12px;

    background: #00a650;
    color: #fff;

    padding: 6px 10px;

    border-radius: 8px;

    font-size: .85rem;
    font-weight: 700;

    z-index: 2;
}

/* CONTEÚDO */
.related-content {
    padding: 18px;
}

/* TÍTULO */
.related-title {
    font-size: 1rem;
    font-weight: 500;

    color: #222;

    line-height: 1.5;

    margin-bottom: 16px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

/* PREÇOS */
.related-old-price {
    color: #999;
    text-decoration: line-through;

    font-size: .9rem;

    margin-bottom: 4px;
}

.related-sale-price {
    color: #00a650;

    font-size: 1.5rem;
    font-weight: 700;
}

/* PARCELAMENTO */
.related-installments {
    margin-top: 10px;

    font-size: .9rem;
    color: #666;
}

/* MOBILE */
@media (max-width: 768px) {

    .related-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;
    }

    .related-header h2 {
        font-size: 1.5rem;
    }

    .related-sale-price {
        font-size: 1.2rem;
    }

}