/* ============================================================
   fabrilogy™ — Passende Produkte
   Pfad: /httpdocs/shop/templates/ew_evelations/css/fabrilogy_related.css
   ============================================================ */

/* ── Container ──────────────────────────────────────────────── */
.fabrilogy-related-products {
    width: 100%;
    margin: 20px 0 25px 0;
    padding: 0 20px;
    clear: both;
}

/* ── Überschrift ────────────────────────────────────────────── */
.fabrilogy-related-products .related-headline {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3a3128;
    border-left: 4px solid #e07b00;
    padding-left: 10px;
    margin-bottom: 14px;
}

/* ── Grid ───────────────────────────────────────────────────── */
.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
}

/* ── Karten-Breite ──────────────────────────────────────────── */

/* Mobil: 2 Spalten */
.related-card {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
}

/* Tablet: 3 Spalten */
@media (min-width: 768px) {
    .related-card {
        flex: 0 0 calc(33.333% - 8px);
        max-width: calc(33.333% - 8px);
    }
}

/* Desktop: bis 6 Spalten */
@media (min-width: 1200px) {
    .related-card {
        flex: 0 0 calc(16.666% - 10px);
        max-width: calc(16.666% - 10px);
    }
}

/* ── Mobil: ab Karte 5 ausblenden (max. 4 auf Mobil) ────────── */
@media (max-width: 767px) {
    .related-card:nth-child(n+5) {
        display: none;
    }
}

/* ── Karte ──────────────────────────────────────────────────── */
.related-card {
    border: 1px solid #e0d8d0;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow .18s ease, border-color .18s ease;
}
.related-card:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,.10);
    border-color: #e07b00;
}
.related-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ── Bild ───────────────────────────────────────────────────── */
.related-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f7f4f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}
.related-card:hover .related-card__image img {
    transform: scale(1.05);
}
.related-card__no-image {
    font-size: 2rem;
    color: #ccc;
}

/* ── Info ───────────────────────────────────────────────────── */
.related-card__info {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Produktname */
.related-card__name {
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
}

/* Preis-Bereich */
.related-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Normaler Preis */
.related-card__price-normal {
    font-size: 1rem;
    font-weight: 700;
    color: #e07b00;
}

/* UVP / Streichpreis */
.related-card__price-uvp {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

/* Einheit (/ Meter) */
.related-card__price-unit {
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
}

/* Rabatt-Prozent und UVP-Streichpreis ausblenden */
.related-card__price .price-discount,
.related-card__price .price-old {
    display: none;
}
