/* ===== 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;
}

/* Mobil için */
@media (max-width: 768px) {
    .old-price-small {
        font-size: 12px;
    }

    .current-price-large {
        font-size: 16px;
    }
}