/* ═══════════════════════════════════════════════════════════════
   Solestra Rental — Kiralama Ücretleri Bloğu (v2.3.5)
   Minimal, temanın tipografisini kullanır, zorlamaz.
   ═══════════════════════════════════════════════════════════════ */

/* ── Blok ── */
.solestra-price-block {
    font-family: inherit;
    margin: 20px 0 26px;
    padding: 0;
    color: #111;
}

/*
 * KRİTİK: WooCommerce wc_price() çıktısı iç içe span'lar üretir:
 * <span class="woocommerce-Price-amount amount"><bdi>
 *   <span class="woocommerce-Price-currencySymbol">₺</span>6.500,00
 * </bdi></span>
 *
 * Tema (Trousseau / Qi Addons) .amount span'lara kendi font-family'sini
 * uyguluyor → bu font, ürün başlığından farklı görünüyor.
 *
 * Çözüm: blok içindeki HER element için font-family'yi zorla inherit et —
 * böylece ürün başlığıyla aynı tipografi kullanılır.
 */
.solestra-price-block,
.solestra-price-block * {
    font-family: inherit !important;
}

/* ── "KİRALAMA ÜCRETLERİ" üst etiket ── */
.solestra-price-block .solestra-price-title {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #9a9a9a;
    line-height: 1.2;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    background: transparent;
}

/* ── Grid (2 kolon, ortada ince ayırıcı) ── */
.solestra-price-block .solestra-price-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin: 0;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
}

/* ── Kolon (label üstte, fiyat altta) ── */
.solestra-price-block .solestra-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 9px;
    padding: 0;
    margin: 0;
    min-width: 0;
}

/* İlk kolonun sağ padding'i, ikinci kolonun sol padding'i — separator ikisinin ortasında kalsın */
.solestra-price-block .solestra-price-col:first-child {
    padding-right: 28px;
}
.solestra-price-block .solestra-price-col:last-child {
    padding-left: 28px;
}

/* ── "4 GÜN" / "6 GÜN" alt başlık ── */
.solestra-price-block .solestra-price-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b5b5b5;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* ── Fiyat (büyük, tema başlık fontunda) ── */
.solestra-price-block .solestra-price-value {
    display: block;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: #111;
    line-height: 1;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

/* ── WooCommerce wc_price() iç span'ları — reset ── */
.solestra-price-block .solestra-price-value .woocommerce-Price-amount,
.solestra-price-block .solestra-price-value bdi,
.solestra-price-block .solestra-price-value .amount {
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
    text-decoration: none !important;
    display: inline !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}

.solestra-price-block .solestra-price-value .woocommerce-Price-currencySymbol {
    font-size: 0.82em;
    font-weight: inherit;
    margin-right: 1px;
    vertical-align: baseline;
    letter-spacing: 0;
}

/* ── Dikey ayırıcı (4 GÜN / 6 GÜN arasında ince çizgi) ── */
.solestra-price-block .solestra-price-divider {
    display: block;
    width: 1px;
    background: #e8e8e8;
    margin: 4px 0;
    align-self: stretch;
    flex-shrink: 0;
    min-height: 42px;
}

/* ═══ RESPONSIVE ═══ */

@media (max-width: 520px) {
    .solestra-price-block {
        margin: 16px 0 22px;
    }
    .solestra-price-block .solestra-price-title {
        font-size: 9px;
        letter-spacing: 0.22em;
        margin-bottom: 14px;
    }
    .solestra-price-block .solestra-price-col:first-child {
        padding-right: 22px;
    }
    .solestra-price-block .solestra-price-col:last-child {
        padding-left: 22px;
    }
    .solestra-price-block .solestra-price-label {
        font-size: 9px;
        letter-spacing: 0.2em;
    }
    .solestra-price-block .solestra-price-value {
        font-size: 21px;
    }
    .solestra-price-block .solestra-price-divider {
        min-height: 38px;
    }
}

@media (max-width: 360px) {
    .solestra-price-block .solestra-price-col:first-child {
        padding-right: 16px;
    }
    .solestra-price-block .solestra-price-col:last-child {
        padding-left: 16px;
    }
    .solestra-price-block .solestra-price-value {
        font-size: 19px;
    }
}
