/* ===== FİYAT GÖSTERİMİ DÜZELTMESİ ===== */
/* Ana sayfadaki ürün kartlarında fiyat gösterimi için */

.price-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.old-price-small {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.current-price-large {
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
}

.price-note {
    font-size: 11px;
    color: #666;
    display: block;
    margin-top: 3px;
}

/* ===== ÜRÜN KARTI İNDİRİM GÖSTERİMİ ===== */
.product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0;
}

/* Üstü çizili orijinal fiyat */
.price-original {
    font-size: 13px;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
}

/* İndirimli fiyat (kırmızı, büyük) */
.price-per-sqm {
    font-size: 17px;
    font-weight: 700;
    color: #e74c3c;
}

/* İndirim yüzdesi badge */
.price-badge-discount {
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* Mobil için */
@media (max-width: 768px) {
    .old-price-small, .price-original {
        font-size: 12px;
    }

    .current-price-large, .price-per-sqm {
        font-size: 15px;
    }
}