/**
 * Ürün detay — Açıklama / Taksit sekmeleri ve metin alanları
 * main.css üzerine yazılabilmesi için .pdt2 kapsayıcısı şarttır.
 * (Fontlar: site / main.css — burada ayrı font import edilmez.)
 */

.pdt2 {
    --pdt2-bg: #f8f8fc;
    --pdt2-white: #ffffff;
    --pdt2-text: #1d2340;
    --pdt2-text-soft: #5f6785;
    --pdt2-border: #ebeaf5;
    --pdt2-shadow: 0 10px 30px rgba(31, 35, 64, 0.06);
    --pdt2-primary: #6c4ef6;
    --pdt2-primary-soft: #f3efff;
    --pdt2-note-bg: #faf7ff;
    --pdt2-note-border: #e7defe;
    --pdt2-slogan-bg: #f5f1ff;
    --pdt2-muted: #a4abc2;
    color: var(--pdt2-text);
    line-height: 1.7;
}

.pdt2.product-detail-tabs-area {
    margin-top: 8px;
}

/* Tab butonları — Bootstrap nav-tabs reset + referans görünüm */
.pdt2 .pdt2-tabnav.nav {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    margin-bottom: 26px !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    list-style: none !important;
}

.pdt2 .pdt2-tabnav .nav-item {
    margin: 0 !important;
    float: none !important;
}

.pdt2 .pdt2-tabnav .nav-link {
    display: inline-block !important;
    border: 1px solid var(--pdt2-border) !important;
    background: var(--pdt2-white) !important;
    color: #6b728a !important;
    padding: 16px 30px !important;
    border-radius: 18px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    line-height: 1.3 !important;
    box-shadow: var(--pdt2-shadow) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.pdt2 .pdt2-tabnav .nav-link:hover {
    color: var(--pdt2-primary) !important;
    border-color: #e8e1ff !important;
    background: #fbfaff !important;
}

.pdt2 .pdt2-tabnav .nav-link.active,
.pdt2 .pdt2-tabnav .show > .nav-link {
    color: var(--pdt2-primary) !important;
    border-color: #e8e1ff !important;
    background: #fbfaff !important;
}

.pdt2 .pdt2-tab-content.tab-content {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

/* Kartlar */
.pdt2 .pdt2-info-card {
    background: var(--pdt2-white);
    border: 1px solid var(--pdt2-border);
    border-radius: 24px;
    box-shadow: var(--pdt2-shadow);
    padding: 34px 36px;
    margin-bottom: 24px;
}

.pdt2 .pdt2-product-ingredients-card {
    padding: 24px;
    border: 1px solid #ece8f7;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--pdt2-shadow);
}

.pdt2 .pdt2-ingredients-main-title {
    margin: 0 0 0 0;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    color: #182347;
}

.pdt2 .pdt2-title-line {
    display: inline-block;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pdt2-primary), #bcaeff);
    margin: 10px 0 22px 0;
}

.pdt2 .pdt2-ingredients-layout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.pdt2 .pdt2-ingredients-icon-box {
    width: 140px;
    min-width: 140px;
    border: 1px solid #e6defa;
    border-radius: 24px;
    background: #faf8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
}

.pdt2 .pdt2-card-icon.pdt2-purple-icon {
    width: auto;
    height: auto;
    min-width: auto;
    border-radius: 0;
    background: transparent;
    color: #785cff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.pdt2 .pdt2-card-icon.pdt2-purple-icon svg {
    display: block;
    width: 72px;
    height: 72px;
}

.pdt2 .pdt2-ingredients-content-area {
    flex: 1;
    min-width: 0;
}

.pdt2 .pdt2-ingredients-text-box {
    background: #fcfbff;
    border: 1px solid var(--pdt2-border);
    border-radius: 18px;
    padding: 22px 24px;
    min-height: 140px;
    height: auto;
}

.pdt2 .pdt2-ingredients-text-box p,
.pdt2 .pdt2-ingredients-text-box {
    font-size: 16px;
    line-height: 1.9;
    color: #374164;
}

.pdt2 .pdt2-ingredients-text-box p:last-child {
    margin-bottom: 0;
}

.pdt2 .pdt2-info-note {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e6defa;
    border-radius: 18px;
    background: #faf8ff;
    padding: 16px 18px;
    color: #5e6788;
    font-size: 15px;
    line-height: 1.6;
}

.pdt2 .pdt2-info-note-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    border: 1.5px solid #785cff;
    color: #785cff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.pdt2 .pdt2-product-description-card {
    margin-bottom: 24px;
}

.pdt2 .pdt2-section-title h2 {
    margin: 0 0 0 0;
    font-size: 28px;
    font-weight: 800;
    color: var(--pdt2-text);
    letter-spacing: -0.4px;
}

.pdt2 .pdt2-section-title {
    margin-bottom: 22px;
}

.pdt2 .pdt2-section-title .pdt2-title-line {
    margin-top: 10px;
    margin-bottom: 0;
}

.pdt2 .pdt2-editor-content {
    background: #ffffff;
    border: 1px solid var(--pdt2-border);
    border-radius: 18px;
    padding: 28px 28px;
}

.pdt2 .pdt2-editor-content h1,
.pdt2 .pdt2-editor-content h2,
.pdt2 .pdt2-editor-content h3,
.pdt2 .pdt2-editor-content h4,
.pdt2 .pdt2-editor-content h5,
.pdt2 .pdt2-editor-content h6 {
    color: var(--pdt2-text);
    margin-bottom: 16px;
    line-height: 1.4;
    font-weight: 800;
}

.pdt2 .pdt2-editor-content h1 {
    font-size: 30px;
}
.pdt2 .pdt2-editor-content h2 {
    font-size: 26px;
}
.pdt2 .pdt2-editor-content h3 {
    font-size: 22px;
}
.pdt2 .pdt2-editor-content h4 {
    font-size: 20px;
}

.pdt2 .pdt2-editor-content p {
    font-size: 16px;
    color: #333a57;
    line-height: 1.50;
}

.pdt2 .pdt2-editor-content p:last-child {
    margin-bottom: 0;
}

.pdt2 .pdt2-editor-content ul,
.pdt2 .pdt2-editor-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.pdt2 .pdt2-editor-content li {
    font-size: 18px;
    color: #333a57;
    margin-bottom: 10px;
}

.pdt2 .pdt2-editor-content a {
    color: var(--pdt2-primary);
    text-decoration: none;
    font-weight: 600;
}

.pdt2 .pdt2-editor-content a:hover {
    text-decoration: underline;
}

.pdt2 .pdt2-editor-content blockquote {
    margin: 22px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--pdt2-primary);
    background: #faf8ff;
    border-radius: 12px;
    color: #4a5070;
    font-size: 17px;
}

.pdt2 .pdt2-editor-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 14px 0;
}

.pdt2 .pdt2-quote-box {
    margin-top: 22px;
    background: #f6f3ff;
    border: 1px solid #ebe4ff;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 17px;
    color: #5c6380;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Sadece tırnak ikonu (çerçeve / kutu yok) */
.pdt2 .pdt2-quote-box-icon {
    flex: 0 0 auto;
    display: block;
    line-height: 1;
    color: var(--pdt2-primary);
    margin-top: 2px;
}

.pdt2 .pdt2-quote-box-icon i {
    font-size: clamp(26px, 6.5vmin, 40px);
    line-height: 1;
    display: block;
    transform: scaleX(-1);
}

.pdt2 .pdt2-quote-box-body {
    flex: 1;
    min-width: 0;
}

.pdt2 .pdt2-quote-box strong {
    color: var(--pdt2-primary);
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.pdt2 .pdt2-quote-box-sub {
    display: block;
    margin-top: 2px;
}

.pdt2 .pdt2-bottom-slogan-box {
    background: var(--pdt2-slogan-bg);
    border: 1px solid #ebe4ff;
    border-radius: 24px;
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    box-shadow: var(--pdt2-shadow);
}

.pdt2 .pdt2-slogan-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pdt2 .pdt2-heart-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #f9f6ff;
    border: 1px solid #e8defe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pdt2-primary);
    font-size: 34px;
    line-height: 1;
}

.pdt2 .pdt2-slogan-text h3 {
    font-size: 22px;
    color: var(--pdt2-primary);
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.3;
}

.pdt2 .pdt2-slogan-text p {
    font-size: 16px;
    color: #4e5677;
    margin: 0;
    line-height: 1.5;
}

.pdt2 .pdt2-slogan-right {
    font-size: 28px;
    color: #8e73ff;
    font-style: italic;
    white-space: nowrap;
    font-weight: 600;
}

.pdt2 .pdt2-bottom-disclaimer {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--pdt2-border);
    color: var(--pdt2-muted);
    border-radius: 20px;
    padding: 18px 20px;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.pdt2 .pdt2-disclaimer-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    border: 1px solid #cfd4e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--pdt2-muted);
    flex-shrink: 0;
}

.pdt2 .pdt2-taksit-placeholder {
    background: var(--pdt2-white);
    border: 1px solid var(--pdt2-border);
    border-radius: 20px;
    padding: 28px 32px;
    font-size: 16px;
    color: var(--pdt2-text-soft);
    box-shadow: var(--pdt2-shadow);
}

/* Galeri (ileride aynı sekmede kullanılırsa) */
.pdt2 .pdt2-gallery .ratio {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .pdt2 .pdt2-info-card {
        padding: 26px 22px;
    }
    .pdt2 .pdt2-bottom-slogan-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .pdt2 .pdt2-slogan-right {
        font-size: 24px;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .pdt2 .pdt2-ingredients-layout {
        flex-direction: column;
    }
    .pdt2 .pdt2-ingredients-icon-box {
        width: 100%;
        min-width: 100%;
        height: auto;
    }
    .pdt2 .pdt2-ingredients-main-title,
    .pdt2 .pdt2-section-title h2 {
        font-size: 22px;
    }
    .pdt2 .pdt2-tabnav .nav-link {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 14px 18px;
    }
}

@media (max-width: 576px) {
    .pdt2 .pdt2-info-note-icon {
        display: none;
    }
    .pdt2 .pdt2-editor-content,
    .pdt2 .pdt2-ingredients-text-box {
        padding: 20px 16px;
    }
    .pdt2 .pdt2-editor-content p,
    .pdt2 .pdt2-editor-content li {
        font-size: 16px;
    }
}

/* -------------------------------------------------------------------------- */
/* Ürün detay — üst bölüm (görsel + bilgi) — referans modern mağaza düzeni     */
/* main.css ile çakışmayı kırmak için yüksek özgüllük + gerekli yerde !important */
/* -------------------------------------------------------------------------- */

.pdt2-product-hero {
    --pdt-hero-blue: #155bd5;
    --pdt-hero-blue-soft: #e8f0fd;
    --pdt-hero-wa: #25d366;
    --pdt-hero-text: #1a1f36;
    --pdt-hero-muted: #6b7280;
    --pdt-hero-radius: 12px;
    --pdt-hero-radius-lg: 16px;
    /* Görsel img köşe yarıçapı (kutu padding’i .pdt2-media-box’ta) */
    --pdt-media-img-radius: var(--pdt-hero-radius);
    color: var(--pdt-hero-text);
}

.pdt2-product-hero .pdt2-detail-info {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (min-width: 992px) {
    .pdt2-product-hero .pdt2-hero-info {
        padding-left: 1.25rem;
    }
}

/* Görsel + rozetler tek kart — içeriden 15px boşluk (görsel + rozetler bu padding içinde) */
.pdt2-media-box {
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: var(--pdt-hero-radius-lg);
    box-shadow: 0 8px 28px rgba(21, 91, 213, 0.07);
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
}

/* Galeri ekstra padding yok; boşluk kutunun kendi padding’i */
.pdt2-product-hero .pdt2-media-box .pdt2-gallery {
    padding: 0;
    box-sizing: border-box;
    background: transparent;
}

.pdt2-product-hero .pdt2-slider-wrap {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    margin-bottom: 0;
}

.pdt2-product-hero .pdt2-gallery-figure {
    margin: 0;
    border-radius: var(--pdt-media-img-radius);
    overflow: hidden;
    background: #fff;
}

.pdt2-product-hero .pdt2-gallery-figure img,
.pdt2-product-hero .pdt2-gallery-figure img.main-product-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--pdt-media-img-radius);
    object-fit: cover;
}

/* Güven rozetleri (kart altı) — tam beyaz */
.pdt2-media-box .pdt2-trust-badges {
    border-top: 1px solid #edf0f5;
    background: #fff !important;
    padding: 10px 8px 12px;
}

.pdt2-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.pdt2-trust-badge {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 12px 8px;
    background: #f6f8fb;
    border: 1px solid #e8ecf2;
    border-radius: var(--pdt-hero-radius);
    font-size: 11px;
    font-weight: 600;
    color: #5c6370;
    line-height: 1.25;
}

.pdt2-media-box .pdt2-trust-badge {
    background: #fff !important;
}

.pdt2-trust-badge i {
    font-size: 18px;
    color: var(--pdt-hero-blue);
    line-height: 1;
}

@media (max-width: 576px) {
    .pdt2-trust-badge {
        flex: 1 1 100%;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 10px 12px;
    }
}

/* Sağ sütun — kategori: soluk mavi kutu + koyu mavi yazı (referans) */
.pdt2-category-box {
    display: inline-block;
    margin: 0 0 10px 0;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0d47a1;
    background: #e3f0ff;
    border-radius: 6px;
    border: 1px solid rgba(13, 71, 161, 0.12);
    box-shadow: none;
    line-height: 1.35;
    max-width: 100%;
}

.pdt2-product-hero .pdt2-category-box {
    display: none !important;
}

.pdt2-product-title.title-detail {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}

.pdt2-product-code {
    margin: 0 0 10px 0;
    font-size: 12px;
    font-weight: 300;
    color: #6b7280;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.pdt2-product-code__label {
    font-weight: 300;
    color: #9ca3af;
}

.pdt2-product-code__val {
    font-weight: 300;
    color: #6b7280;
}

/* Fiyat: sola yaslı; indirim varsa eski fiyat üstte üstü çizili soluk, güncel fiyat altta */
.pdt2-product-hero .pdt2-price-row.product-price-cover {
    float: none !important;
    clear: both;
    width: 100%;
    align-items: flex-start;
}

.pdt2-price-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 2px;
    margin-bottom: 16px;
    text-align: left;
}

.pdt2-price-row .pdt2-price-old {
    font-size: 0.95rem;
    line-height: 1.3;
    color: #b0b8c4 !important;
    text-decoration: line-through !important;
    font-weight: 500;
    margin-bottom: 2px;
}

.pdt2-price-row .pdt2-price-current {
    font-size: clamp(1.45rem, 2.1vw, 1.8rem) !important;
    font-weight: 800 !important;
    color: var(--pdt-hero-blue) !important;
    line-height: 1.2;
}

.pdt2-short-desc {
    margin-bottom: 22px !important;
}

.pdt2-lead-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #4b5563;
}

/* Teslimat seçenekleri kartları */
.pdt2-product-hero .pdt2-delivery-button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pdt2-product-hero .pdt2-delivery-type-btn.delivery-type-btn {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px !important;
    text-align: left;
    border-radius: var(--pdt-hero-radius) !important;
    border: 1px solid #dbe4f0 !important;
    background: #f8fafc !important;
    box-shadow: none !important;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.pdt2-product-hero .pdt2-delivery-type-btn.active {
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f2fc 100%) !important;
    border-color: rgba(21, 91, 213, 0.35) !important;
    box-shadow: 0 4px 16px rgba(21, 91, 213, 0.1) !important;
}

.pdt2-delivery-ico {
    font-size: 22px;
    line-height: 1;
}

.pdt2-delivery-txt {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.pdt2-delivery-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.3;
}

.pdt2-delivery-sub {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.45;
    font-weight: 400;
}

.pdt2-delivery-check {
    display: none;
    width: 28px;
    height: 28px;
    min-width: 28px;
    align-items: center;
    justify-content: center;
    background: #ecfdf5;
    color: #059669;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
}

.pdt2-delivery-check .fi-rs-check {
    font-size: 13px;
}

.pdt2-product-hero .pdt2-delivery-type-btn.active .pdt2-delivery-check {
    display: flex;
}

/* Blok başlıkları (lokasyon / tarih) */
.pdt2-block-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdt2-block-title i {
    color: var(--pdt-hero-blue);
    font-size: 16px;
}

.pdt2-product-hero .pdt2-location-block,
.pdt2-product-hero .pdt2-datetime-block {
    background: #fff !important;
}

.pdt2-product-hero .pdt2-location-block .pdt2-loc-label,
.pdt2-product-hero .pdt2-location-block label,
.pdt2-product-hero .pdt2-datetime-block label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 5px;
    display: block;
}

.pdt2-product-hero .pdt2-loc-row {
    --pdt-loc-col-gap: 10px;
}

.pdt2-product-hero .pdt2-loc-row .col-sm-12 + .col-sm-12 {
    margin-top: 8px;
}

@media (min-width: 992px) {
    .pdt2-product-hero .pdt2-loc-row .col-sm-12 + .col-sm-12 {
        margin-top: 0;
    }
}

.pdt2-product-hero .pdt2-loc-field {
    width: 100%;
}

.pdt2-product-hero .pdt2-dt-group {
    margin-bottom: 0;
}

/* Native select: ok yerine sağda takvim / saat ikonu */
.pdt2-product-hero .pdt2-select-skin {
    position: relative;
    display: block;
    width: 100%;
}

.pdt2-product-hero .pdt2-select-skin .pdt2-native-select,
.pdt2-product-hero .pdt2-select-skin--static .pdt2-native-input,
.pdt2-product-hero .pdt2-select-skin--static .form-control.pdt2-native-input {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: none;
    padding: 8px 40px 8px 12px;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid #d1dbe8;
    border-radius: 10px;
    min-height: 40px;
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pdt2-product-hero .pdt2-select-skin--static .pdt2-native-input,
.pdt2-product-hero .pdt2-select-skin--static .form-control.pdt2-native-input {
    cursor: default;
    background-color: #f3f4f6;
    color: #374151;
}

.pdt2-product-hero .pdt2-select-skin .pdt2-native-select:focus,
.pdt2-product-hero .pdt2-select-skin .form-control:focus {
    border-color: var(--pdt-hero-blue);
    box-shadow: 0 0 0 3px rgba(21, 91, 213, 0.12);
    outline: none;
}

.pdt2-product-hero .pdt2-select-skin-ico {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--pdt-hero-blue);
    font-size: 16px;
    line-height: 1;
    z-index: 2;
    opacity: 0.92;
}

.pdt2-product-hero .pdt2-dt-row .col-sm-12 + .col-sm-12 {
    margin-top: 12px;
}

@media (min-width: 992px) {
    .pdt2-product-hero .pdt2-dt-row .col-sm-12 + .col-sm-12 {
        margin-top: 0;
    }
}

.pdt2-product-hero .pdt2-location-block .ts-wrapper,
.pdt2-product-hero .pdt2-location-block .ts-control.pdt2-ts-loc,
.pdt2-product-hero .pdt2-location-block .ts-control {
    border-radius: 10px !important;
    border: 1px solid #d1dbe8 !important;
}

/* CTA */
.pdt2-cta-row {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px !important;
    justify-content: space-between !important;
}

/* Satın Al + WhatsApp: aynı radius, font-size, font-weight */
.pdt2-product-hero .pdt2-cta-wrap .pdt2-btn-cart,
.pdt2-product-hero .pdt2-cta-wrap .pdt2-btn-wa,
.pdt2-btn-cart,
.pdt2-btn-wa {
    flex: 1 1 calc(50% - 6px) !important;
    min-width: 140px;
    border-radius: var(--pdt-hero-radius) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
    padding: 14px 18px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none !important;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.pdt2-product-hero .pdt2-cta-wrap .pdt2-btn-cart span,
.pdt2-product-hero .pdt2-cta-wrap .pdt2-btn-wa span {
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

.pdt2-product-hero .pdt2-cta-wrap .pdt2-btn-cart i {
    font-size: 15px !important;
    line-height: 1;
}

.pdt2-btn-cart {
    background: var(--pdt-hero-blue) !important;
    background-color: var(--pdt-hero-blue) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(21, 91, 213, 0.35) !important;
}

/* main.css .button:hover sarı arka planı burada iptal: mavi kalır, parlama + hafif kalkış */
.pdt2-product-hero .pdt2-btn-cart:hover,
.pdt2-product-hero .pdt2-btn-cart.button:hover {
    background: var(--pdt-hero-blue) !important;
    background-color: var(--pdt-hero-blue) !important;
    color: #fff !important;
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(21, 91, 213, 0.45) !important;
}

.pdt2-product-hero .pdt2-btn-cart:hover i,
.pdt2-product-hero .pdt2-btn-cart.button:hover i {
    color: #fff !important;
    opacity: 1 !important;
}

.pdt2-btn-wa {
    background: var(--pdt-hero-wa) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35) !important;
}

.pdt2-btn-wa:hover {
    color: #fff !important;
    filter: brightness(1.05);
}

.pdt2-btn-wa__img {
    max-width: 22px;
    height: auto;
    flex-shrink: 0;
}

/* Alt güven + ödeme (SSL | Müşteri Desteği + ödeme şeridi aynı satırda) */
.pdt2-hero-trust-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin: 8px 0 18px 0;
    padding-top: 4px;
    font-size: 12px;
    color: #9ca3af;
}

.pdt2-hero-trust-foot__cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    flex: 1 1 auto;
    min-width: 0;
}

.pdt2-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.pdt2-hero-trust-item i {
    color: var(--pdt-hero-blue);
    font-size: 14px;
}

.pdt2-payment-inline {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    min-width: 0;
    padding-left: 10px;
    margin-left: 2px;
    border-left: 1px solid #e5e7eb;
}

.pdt2-hero-trust-foot .pdt2-payment-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9ca3af;
    white-space: nowrap;
    line-height: 1.2;
}

.pdt2-hero-trust-foot .pdt2-payment-bands {
    max-width: min(100%, 200px);
    width: auto;
    height: auto;
    max-height: 22px;
    object-fit: contain;
    margin-left: 0 !important;
    flex-shrink: 1;
}

@media (max-width: 576px) {
    .pdt2-payment-inline {
        padding-left: 0;
        margin-left: 0;
        border-left: none;
        flex-basis: 100%;
    }
}

.pdt2-product-hero .button-disabled {
    width: 100%;
    border-radius: var(--pdt-hero-radius) !important;
}
