/*
 * Blocksy WooCommerce secondary nav + breadcrumb gizleme
 * Ürün sayfasında anasayfayla aynı header çıksın diye
 */

/* Blocksy'nin WC sayfalarına eklediği beyaz nav bar */
.woocommerce-page .site-header-row--nav,
.ct-woo-header,
.woocommerce-breadcrumb,
.blocksy-woocommerce-header,
nav.woocommerce-breadcrumb,
.woocommerce-page nav.woocommerce-breadcrumb,
/* Beyaz arka planlı ikincil nav */
.site-header ~ nav,
header + nav,
.entry-header nav,
/* WC hesap/sepet linkerini barındıran alan */
.woocommerce-account-nav,
.wc-tabs-wrapper > nav {
    display: none !important;
}

/* Bizim breadcrumb'ımız ile üstteki arasındaki boşluğu sıfırla */
.isac-bc {
    margin-top: 0 !important;
}

/*
 * ISAC Sense Digital — Ürün Detay Sayfası CSS
 * Dosya: wp-content/themes/blocksy/woocommerce/isac-product.css
 * functions.php'den enqueue edilir (aşağıya bakın)
 */

:root {
    --isac-navy:      #0d2045;
    --isac-navy-mid:  #163366;
    --isac-navy-lite: #1e3d7a;
    --isac-blue:      #4d9de0;
    --isac-blue-dk:   #3a88cc;
    --isac-blue-pale: #e8f3fc;
    --isac-gray-900:  #1a1a2e;
    --isac-gray-700:  #444;
    --isac-gray-500:  #777;
    --isac-gray-300:  #ccc;
    --isac-gray-200:  #e0e0e0;
    --isac-gray-100:  #f4f6f9;
    --isac-gray-50:   #fafbfc;
    --isac-white:     #fff;
    --isac-green:     #2a9d5c;
    --isac-red:       #c0392b;
}

/* ── BREADCRUMB ── */
.isac-bc {
    background: var(--isac-white);
    border-bottom: 1px solid var(--isac-gray-200);
    margin-bottom: 0;
}
.isac-bc nav {
    max-width: 1340px;
    margin: 0 auto;
    padding: 8px 16px;
    font-size: 12px;
    color: var(--isac-gray-500);
    display: flex; flex-wrap: wrap; align-items: center; gap: 4px;
}
.isac-bc .sep { color: var(--isac-gray-300); }
.isac-bc .cur { color: var(--isac-gray-700); font-weight: 600; }
.isac-bc a    { color: var(--isac-blue); text-decoration: none; }
.isac-bc a:hover { text-decoration: underline; }

/* ── PAGE GRID ── */
.isac-pg {
    max-width: 1340px;
    margin: 14px auto 50px;
    padding: 0 14px;
    display: grid;
    grid-template-columns: 212px 1fr 290px;
    gap: 12px;
    align-items: start;
}

/* ── CARD ── */
.isac-card {
    background: var(--isac-white);
    border: 1px solid var(--isac-gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.sec-head {
    font-size: 12px; font-weight: 700;
    padding: 9px 13px;
    text-transform: uppercase; letter-spacing: .5px;
    display: flex; align-items: center; gap: 8px;
}
.sh-navy { background: var(--isac-navy);     color: #fff; }
.sh-mid  { background: var(--isac-navy-mid); color: #fff; }
.sh-blue { background: var(--isac-blue);     color: #fff; }
.sh-gray { background: var(--isac-gray-100); color: var(--isac-gray-900); border-bottom: 1px solid var(--isac-gray-200); }

/* ── SOL SIDEBAR ── */
.isac-left { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 14px; }

/* Marka listesi */
.brand-list { padding: 6px 0 8px; }
.brand-a {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 13px;
    font-size: 12.5px; color: var(--isac-gray-700);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all .15s;
}
.brand-a:hover { color: var(--isac-blue); border-left-color: var(--isac-blue); background: var(--isac-blue-pale); }
.brand-a.active { color: var(--isac-navy); font-weight: 700; border-left-color: var(--isac-blue); background: var(--isac-blue-pale); }
.brand-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--isac-gray-300); flex-shrink: 0; }
.brand-a.active .brand-dot { background: var(--isac-blue); }

/* Kategori ağacı */
.cat-tree { padding-bottom: 6px; }

.cl1 {
    display: flex; align-items: center; justify-content: space-between;
    padding: 7px 13px;
    font-size: 12.5px; font-weight: 700;
    background: var(--isac-navy); color: #b8cce4;
    cursor: pointer; user-select: none;
    border-bottom: 1px solid var(--isac-navy-lite);
    transition: background .15s;
}
.cl1:hover, .cl1.open { background: var(--isac-navy-lite); color: #fff; }
.cl1 .arr { font-size: 10px; transition: transform .2s; opacity: .6; }
.cl1.open .arr { transform: rotate(90deg); }
.cw1 { display: none; }
.cw1.open { display: block; }

.cl2 {
    display: flex; align-items: center; justify-content: space-between;
    padding: 6px 13px 6px 22px;
    font-size: 12px; font-weight: 700;
    background: #f0f4fa; color: var(--isac-navy);
    cursor: pointer;
    border-bottom: 1px solid var(--isac-gray-200);
    text-decoration: none;
    transition: background .15s;
}
.cl2:hover, .cl2.open { background: #dde6f5; }
.cl2 .arr { font-size: 10px; transition: transform .2s; opacity: .5; }
.cl2.open .arr { transform: rotate(90deg); }
.cw2 { display: none; }
.cw2.open { display: block; }

.cl3 {
    display: flex; align-items: center; justify-content: space-between;
    padding: 5px 13px 5px 30px;
    font-size: 12px; font-weight: 600;
    background: var(--isac-gray-50); color: var(--isac-gray-700);
    cursor: pointer;
    border-bottom: 1px solid var(--isac-gray-100);
    text-decoration: none;
    transition: all .15s;
}
.cl3:hover  { color: var(--isac-blue); background: var(--isac-blue-pale); }
.cl3.active { background: var(--isac-blue); color: #fff; font-weight: 700; }
.cl3.open   { background: #dde6f5; color: var(--isac-navy); }
.cl3 .arr   { font-size: 10px; transition: transform .2s; opacity: .4; }
.cl3.open .arr { transform: rotate(90deg); }
.cw3 { display: none; }
.cw3.open { display: block; }

.cl4 {
    display: block;
    padding: 5px 13px 5px 40px;
    font-size: 11.5px; color: var(--isac-gray-700);
    text-decoration: none;
    background: var(--isac-white);
    border-bottom: 1px solid var(--isac-gray-100);
    transition: all .15s;
}
.cl4:hover  { color: var(--isac-blue); background: var(--isac-blue-pale); }
.cl4.active { color: var(--isac-blue); font-weight: 700; background: var(--isac-blue-pale); border-left: 2px solid var(--isac-blue); }

/* ── ORTA KOLON ── */
.isac-mid { display: flex; flex-direction: column; gap: 12px; }

/* Ürün ana kart */
.isac-p-top {
    padding: 18px 20px 20px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 22px;
}

/* WC: tek görsel */
.isac-img-wrap { display: flex; justify-content: center; padding-top: 4px; }
.isac-main-img {
    width: 186px; height: 186px;
    object-fit: contain;
    border: 1px solid var(--isac-gray-200);
    padding: 10px;
    background: var(--isac-gray-50);
    display: block;
}

/* Ürün bilgileri */
.isac-p-data {}
.p-brand { font-size: 17px; font-weight: 700; color: var(--isac-navy-mid); margin-bottom: 8px; }
.p-title { font-size: 22px; font-weight: 700; color: var(--isac-gray-900); line-height: 1.15; margin-bottom: 4px; }
.p-codes { font-size: 12px; color: var(--isac-gray-500); margin-bottom: 12px; }
.p-codes span { color: var(--isac-gray-700); }
.p-mf { font-size: 12.5px; color: var(--isac-gray-700); margin-bottom: 10px; line-height: 1.7; }
.p-mf b { color: var(--isac-gray-900); }
.p-feat {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--isac-blue-dk); font-size: 12.5px; font-weight: 700;
    margin-bottom: 14px;
}
.p-feat::before { content: "✓"; color: var(--isac-green); }

/* Hızlı özellikler */
.qs { font-size: 12.5px; margin-bottom: 14px; line-height: 1.85; }
.qs-r { display: flex; gap: 6px; }
.qs-l { font-weight: 700; color: var(--isac-gray-900); min-width: 90px; }
.qs-v { color: var(--isac-gray-700); }

/* Sertifika badge'leri */
.cert-row { display: flex; gap: 6px; flex-wrap: wrap; }
.cert { border: 1px solid var(--isac-gray-300); border-radius: 2px; padding: 2px 8px; font-size: 11px; font-weight: 700; color: var(--isac-gray-700); }

/* Ürün bilgi tablosu — görselin yanındaki bilgi alanı */
.p-info-tbl { width: 100%; border-collapse: collapse; font-size: 12.5px; margin-bottom: 12px; }
.p-info-tbl tr { border-bottom: 1px solid var(--isac-gray-100); }
.p-info-tbl tr:last-child { border-bottom: none; }
.p-info-tbl td { padding: 6px 0; vertical-align: top; }
.p-info-tbl td:first-child { font-weight: 700; color: var(--isac-gray-900); width: 36%; padding-right: 10px; }
.p-info-tbl td:last-child { color: var(--isac-gray-700); }

/* Teknik özellikler tablosu */
.spec-tbl { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.spec-tbl tr { border-bottom: 1px solid #ebebeb; }
.spec-tbl tr:last-child { border-bottom: none; }
.spec-tbl tr:nth-child(even) { background: var(--isac-gray-50); }
.spec-tbl tr:hover { background: #eef2fa; }
.spec-tbl td { padding: 8px 16px; vertical-align: top; }
.spec-tbl td:first-child { font-weight: 700; color: var(--isac-gray-900); width: 42%; border-right: 1px solid #ebebeb; }

/* Uzun açıklama */
.isac-desc { padding: 18px 20px; }
.isac-desc h3 { font-size: 13px; font-weight: 700; color: var(--isac-navy); padding-bottom: 8px; margin-bottom: 12px; border-bottom: 2px solid var(--isac-blue); display: inline-block; }
.isac-desc p { font-size: 13px; color: var(--isac-gray-700); line-height: 1.75; margin-bottom: 10px; }
.isac-desc ul, .isac-desc ol { padding-left: 20px; font-size: 13px; color: var(--isac-gray-700); line-height: 1.75; }

/* ── SAĞ KOLON ── */
.isac-right { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 14px; }

/* Fiyat */
.price-body { padding: 13px 15px; display: flex; flex-direction: column; }
.pr-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 0; border-bottom: 1px solid var(--isac-gray-100); gap: 8px;
}
.pr-row:last-of-type { border-bottom: none; }
.pr-lbl { font-weight: 700; font-size: 12.5px; color: var(--isac-gray-700); white-space: nowrap; }

/* WC price override */
.pr-price-wrap .price {
    display: flex !important;
    align-items: baseline !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    line-height: 1.2 !important;
}
/* Normal fiyat (indirimsiz) */
.pr-price-wrap .price > .woocommerce-Price-amount {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--isac-navy) !important;
}
/* İndirimli fiyat: del = eski, ins = yeni */
.pr-price-wrap .price del {
    font-size: 13px !important;
    color: var(--isac-gray-400) !important;
    font-weight: 400 !important;
    text-decoration: line-through !important;
    order: 1 !important;
}
.pr-price-wrap .price del .woocommerce-Price-amount {
    font-size: 13px !important;
    color: var(--isac-gray-400) !important;
    font-weight: 400 !important;
}
.pr-price-wrap .price ins {
    text-decoration: none !important;
    order: 2 !important;
}
.pr-price-wrap .price ins .woocommerce-Price-amount {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--isac-navy) !important;
}
/* "Orijinal fiyat:" / "Şu andaki fiyat:" screen reader metinlerini gizle */
.pr-price-wrap .price .screen-reader-text {
    display: none !important;
}

.stock-val { display: flex; align-items: center; gap: 6px; font-size: 12.5px; }
.sdot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-g { background: var(--isac-green); }
.dot-o { background: #e07b00; }
.dot-r { background: var(--isac-red); }
.deliv-val { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--isac-gray-700); }

/* Sepet block */
.cart-block { padding: 12px 15px 14px; border-top: 1px solid var(--isac-gray-100); }

/* WC: add_to_cart düğmesi override */
.cart-block .single_add_to_cart_button,
.cart-block button[type="submit"] {
    width: 100% !important;
    background: var(--isac-blue) !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 12px !important;
    border-radius: 3px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background .18s !important;
    margin-top: 8px;
}
.cart-block .single_add_to_cart_button:hover { background: var(--isac-blue-dk) !important; }

/* Adet kutusu — Blocksy tüm olası qty seçicileri */
/* ── ADET KUTUSU — tamamen gizle ── */
.cart-block .quantity {
    display: none !important;
}

/* YITH Quote button */
.cart-block .yith-ywraq-add-button,
.cart-block .ywraq-add-to-quote {
    display: flex !important; align-items: center !important; justify-content: center !important;
    width: 100% !important; background: var(--isac-white) !important;
    color: var(--isac-navy) !important; border: 1px solid var(--isac-navy-mid) !important;
    padding: 8px 12px !important; border-radius: 3px !important;
    font-size: 12.5px !important; font-weight: 700 !important;
    cursor: pointer !important; transition: all .18s !important;
    margin-top: 7px !important; text-decoration: none !important;
}
.cart-block .yith-ywraq-add-button:hover { background: #f0f4fa !important; }

/* TI Wishlist */
.cart-block .ti-wishlist-add-to-wishlist-button {
    display: flex !important; align-items: center !important; justify-content: center !important;
    width: 100% !important; background: none !important;
    color: var(--isac-gray-500) !important; border: 1px solid var(--isac-gray-300) !important;
    padding: 7px 12px !important; border-radius: 3px !important;
    font-size: 12px !important; font-weight: 600 !important;
    cursor: pointer !important; transition: all .18s !important;
    margin-top: 7px !important;
}
.cart-block .ti-wishlist-add-to-wishlist-button:hover { border-color: var(--isac-blue) !important; color: var(--isac-blue) !important; }

/* Dokümanlar */
.docs-body { padding: 10px 13px; display: flex; flex-direction: column; gap: 3px; }
.doc-a {
    display: flex; align-items: center; gap: 8px;
    text-decoration: none; color: var(--isac-gray-700);
    font-size: 12px; padding: 6px 8px; border-radius: 2px;
    transition: all .15s;
}
.doc-a:hover { background: var(--isac-blue-pale); color: var(--isac-blue); }
.doc-type { font-size: 9.5px; font-weight: 800; padding: 2px 5px; border-radius: 2px; min-width: 32px; text-align: center; flex-shrink: 0; }
.t-pdf { background: #fdeaea; color: var(--isac-red); }
.t-cad { background: var(--isac-blue-pale); color: var(--isac-blue-dk); }
.doc-ico { margin-left: auto; color: var(--isac-gray-300); flex-shrink: 0; }
.doc-a:hover .doc-ico { color: var(--isac-blue); }

/* Teknik destek */
.contact-body { padding: 12px 14px; }
.contact-body p { font-size: 12px; color: var(--isac-gray-500); margin-bottom: 9px; line-height: 1.55; }
.btn-isac-contact {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    background: var(--isac-navy); color: #fff; border: none;
    padding: 9px 12px; border-radius: 3px;
    font-size: 13px; font-weight: 600;
    cursor: pointer; text-decoration: none; width: 100%;
    transition: background .18s;
}
.btn-isac-contact:hover { background: var(--isac-navy-mid); }

/* ── ACTION BUTTONS ── */
.p-action-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 16px;
    padding-top: 13px;
    border-top: 1px solid var(--isac-gray-100);
    align-items: center;
}
.p-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--isac-blue);
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    transition: color .15s, opacity .15s;
    font-family: var(--font);
    line-height: 1;
}
.p-action-btn:hover { color: var(--isac-blue-dk); }

/* Wishlist */
.p-action-wishlist svg { fill: none; stroke: var(--isac-blue); stroke-width: 1.8; transition: fill .2s, stroke .2s; }
.p-action-wishlist:hover svg,
.p-action-wishlist.is-active svg { fill: var(--isac-blue); stroke: var(--isac-blue); }
.p-action-wishlist.is-active { color: var(--isac-blue-dk); }

/* Compare */
.p-action-compare svg { stroke: var(--isac-blue); stroke-width: 2.2; transition: stroke .2s; }
.p-action-compare:hover svg { stroke: var(--isac-blue-dk); }
.p-action-compare.is-active { color: var(--isac-blue-dk); opacity: .75; }

/* ── COMPARE BAR (alt sabit) ── */
#isac-compare-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--isac-navy);
    color: #fff;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform .3s ease;
    border-top: 3px solid var(--isac-blue);
}
#isac-compare-bar.visible { transform: translateY(0); }
.cmp-bar-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cmp-bar-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #b8cce4;
    white-space: nowrap;
    flex-shrink: 0;
}
.cmp-items {
    display: flex;
    gap: 10px;
    flex: 1;
    flex-wrap: wrap;
    align-items: center;
}
.cmp-item {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 3px;
    padding: 5px 8px 5px 6px;
    font-size: 12px;
    max-width: 180px;
}
.cmp-item img { width: 28px; height: 28px; object-fit: contain; background: #fff; border-radius: 2px; flex-shrink: 0; }
.cmp-item span { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11.5px; }
.cmp-item button {
    background: none; border: none; color: #aaa;
    font-size: 16px; cursor: pointer; padding: 0; line-height: 1; flex-shrink: 0;
}
.cmp-item button:hover { color: #fff; }

#isac-do-compare {
    background: var(--isac-blue);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 3px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s;
    flex-shrink: 0;
}
#isac-do-compare:hover   { background: var(--isac-blue-dk); }
#isac-do-compare:disabled { opacity: .4; cursor: not-allowed; }
.cmp-bar-clear {
    background: none;
    border: 1px solid rgba(255,255,255,.25);
    color: #b8cce4;
    padding: 7px 14px;
    border-radius: 3px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .18s, color .18s;
    flex-shrink: 0;
}
.cmp-bar-clear:hover { border-color: #fff; color: #fff; }

/* ── TOAST ── */
#isac-toast {
    position: fixed;
    bottom: 70px;
    right: 22px;
    background: var(--isac-navy);
    color: #fff;
    padding: 11px 16px;
    border-radius: 3px;
    font-size: 12.5px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(13,32,69,.35);
    transform: translateY(20px);
    opacity: 0;
    transition: transform .28s, opacity .28s;
    z-index: 10000;
    pointer-events: none;
    max-width: 300px;
    line-height: 1.5;
}
#isac-toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .isac-pg { grid-template-columns: 190px 1fr 275px; } }
@media (max-width: 900px)  { .isac-pg { grid-template-columns: 1fr 268px; } .isac-left { display: none; } }
@media (max-width: 640px)  {
    .isac-pg { grid-template-columns: 1fr; }
    .isac-right { position: static; }
    .isac-p-top { grid-template-columns: 1fr; }
    .isac-img-wrap { padding-bottom: 14px; border-bottom: 1px solid var(--isac-gray-200); }
}

/* ── MOBİL GELİŞTİRMELER ── */
@media (max-width: 768px) {
    /* Grid: sol sidebar gizle, sağ panel alta */
    .isac-pg {
        grid-template-columns: 1fr;
        padding: 0 10px;
        margin-top: 8px;
        gap: 10px;
    }
    .isac-left { display: none; }
    .isac-right { position: static; order: 1; }
    .isac-mid   { order: 2; }
    /* Stok & Fiyat paneli mobilde en üstte (önceden sayfa dibine düşüyordu) */

    /* Ürün üst kart — görsel üste, bilgi alta */
    .isac-p-top {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 14px;
    }
    .isac-img-wrap {
        padding-bottom: 14px;
        border-bottom: 1px solid var(--isac-gray-200);
    }
    .isac-main-img {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }

    /* Başlık ve kod */
    .p-title { font-size: 18px; }
    .p-brand { font-size: 15px; }

    /* Teknik özellikler tablosu — kaydırılabilir */
    .spec-tbl { font-size: 12px; }
    .spec-tbl td { padding: 7px 10px; }
    .spec-tbl td:first-child { width: 45%; }

    /* Fiyat & stok kartı */
    .price-body { padding: 12px 14px; }
    .pr-row { flex-wrap: wrap; gap: 4px; }
    .pr-lbl { min-width: auto; }

    /* Action butonlar */
    .p-action-btns { gap: 14px; }
    .p-action-btn { font-size: 11px; }

    /* Compare bar */
    .cmp-bar-inner { padding: 8px 12px; gap: 10px; }
    .cmp-item { max-width: 140px; }
    .cmp-bar-title { font-size: 11px; }
}

@media (max-width: 480px) {
    .isac-pg { padding: 0 8px; }

    /* Görsel daha küçük */
    .isac-main-img { width: 130px; height: 130px; }

    /* Ürün üst kart */
    .isac-p-top { padding: 12px; }
    .p-title { font-size: 16px; }

    /* Bilgi tablosu */
    .p-info-tbl { font-size: 12px; }
    .p-info-tbl td { padding: 5px 0; }

    /* Fiyat */
    .woocommerce-Price-amount { font-size: 20px !important; }

    /* Action butonlar — alt alta */
    .p-action-btns { flex-direction: column; gap: 10px; }
    .p-action-btn { font-size: 12px; }

    /* Compare bar — kompakt */
    .cmp-items { display: none; }
    .cmp-bar-inner { justify-content: space-between; }
}

.price-body .pr-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #e8e8e8;
}

.price-body .pr-row:last-child {
    border-bottom: none;
}

.price-body .pr-lbl {
    font-size: 15px;
    font-weight: 600;
    color: #3a3a3a;
    line-height: 1.4;
    margin: 0;
}

.price-body .pr-val {
    font-size: 15px;
    font-weight: 600;
    color: #3a3a3a;
    line-height: 1.4;
    text-align: right;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   ISAC — ÜRÜN SAYFASI MODERN KATMAN (v1.2)
   Hepsi .isac-pg kapsamında (başka sayfaları etkilemez)
   Görsel BOYUTU değişmez — sadece çerçeve modernleşir
   ═══════════════════════════════════════════════ */
.isac-pg .isac-card { border-radius: 12px; border-color: #e6edf5; box-shadow: 0 1px 4px rgba(13,32,69,.05); }
.isac-pg .sec-head { text-transform: none; letter-spacing: .2px; font-weight: 600; font-size: 12.5px; padding: 11px 14px; }
.isac-pg .isac-main-img { border: 1px solid #eef3f8; border-radius: 12px; background: #fff; }
.isac-pg .p-brand { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .4px; color: var(--isac-blue-dk); background: var(--isac-blue-pale); padding: 3px 10px; border-radius: 6px; margin-bottom: 8px; }
.isac-pg .p-title { font-weight: 600; }
.isac-pg .cert { border-radius: 20px; border-color: #d7e2ee; color: var(--isac-gray-700); font-weight: 500; padding: 3px 11px; }
.isac-pg .btn-teklif-iste { border-radius: 9px; }

/* ── MARKA PANELİ ── */
.isac-pg .isac-brandcard { padding: 0; }
.isac-pg .isac-bc-accent { height: 4px; width: 100%; }
.isac-pg .isac-bc-logo { background: #fff; height: 72px; display: flex; align-items: center; justify-content: center; padding: 12px 16px; border-bottom: 1px solid #eef3f8; }
.isac-pg .isac-bc-logo img { max-height: 44px; max-width: 78%; object-fit: contain; display: block; }
.isac-pg .isac-bc-name { font-size: 18px; font-weight: 700; color: var(--isac-navy); }
.isac-pg .isac-bc-head { padding: 12px 14px 0; font-size: 11px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; color: #8496ab; }
.isac-pg .isac-bc-stats { display: flex; gap: 8px; padding: 8px 12px 6px; }
.isac-pg .isac-bc-note { margin: 0 12px 12px; padding: 8px 11px; background: #f7f9fc; border: 1px solid #e7edf5; border-radius: 8px; font-size: 11px; line-height: 1.5; color: #5a6b80; }
.isac-pg .isac-bc-note b { color: var(--isac-navy); font-weight: 700; }
.isac-pg .isac-bc-stat { flex: 1; background: #f3f8fd; border-radius: 10px; padding: 11px 6px; text-align: center; }
.isac-pg .isac-bc-stat b { display: block; font-size: 20px; font-weight: 600; color: var(--isac-navy); line-height: 1.05; }
.isac-pg .isac-bc-stat span { font-size: 10.5px; color: #7d93ab; }
.isac-pg .isac-bc-stat.is-in { background: #e9f7ee; }
.isac-pg .isac-bc-stat.is-in b { color: #1a6e2a; }
.isac-pg .isac-bc-stat.is-in span { color: #5a8a6b; }
.isac-pg .isac-bc-btn { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 0 12px 12px; padding: 10px 12px; border-radius: 9px; color: #fff; font-size: 12.5px; font-weight: 600; text-decoration: none; transition: filter .15s ease, transform .15s ease; }
.isac-pg .isac-bc-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.isac-pg .isac-bc-dist { display: flex; align-items: center; gap: 7px; margin: 0 14px 14px; padding-top: 11px; border-top: 1px solid #eef3f8; font-size: 11.5px; font-weight: 500; color: #44556b; }
.isac-pg .isac-bc-dist svg { color: var(--isac-blue); flex-shrink: 0; }

/* Mobilde marka kartı tam genişlik (sağ kolon zaten üstte stack oluyor) */
@media (max-width: 560px) {
    .isac-pg .isac-bc-logo { height: 64px; }
}

/* ═══════════════════════════════════════════════
   ISAC ÜRÜN SAYFASI MODERN KATMAN (v1.3)
   Sol menü kaldırıldı (2 kolon), modern başlıklar,
   marka paneli ISAC lacivert/mavi, hızlı özellik chip'leri.
   Masaüstü düzenleri min-width ile (mobil bozulmaz).
   ═══════════════════════════════════════════════ */

/* Modern bölüm başlıkları: lacivert bar yerine beyaz + mavi vurgu */
.isac-pg .sec-head,
.isac-pg .sec-head.sh-navy,
.isac-pg .sec-head.sh-mid,
.isac-pg .sec-head.sh-blue { background:#fff; color:var(--isac-navy); border-bottom:1px solid #eef3f8; text-transform:none; letter-spacing:.2px; font-weight:600; font-size:13px; padding:12px 15px; }
.isac-pg .sec-head::before { content:""; width:3px; height:14px; background:var(--isac-blue); border-radius:2px; flex:0 0 auto; }

/* Hızlı özellik chip'leri */
.isac-pg .p-chips { display:flex; flex-wrap:wrap; gap:7px; margin:10px 0 14px; }
.isac-pg .p-chip { font-size:11.5px; color:#44556b; background:#f1f6fb; border:1px solid #e0e9f3; padding:4px 10px; border-radius:7px; }
.isac-pg .p-chip b { color:var(--isac-navy); font-weight:600; }

/* Marka paneli — ISAC lacivert/mavi (marka rengi kaldırıldı) */
.isac-pg .isac-bc-accent { background: linear-gradient(90deg, var(--isac-navy), var(--isac-blue)); }
.isac-pg .isac-bc-btn { background: var(--isac-navy); }
.isac-pg .isac-bc-btn:hover { background: var(--isac-navy-mid); filter:none; }

/* Wishlist / karşılaştır — pill */
.isac-pg .p-action-btn { border:1px solid #d7e2ee; border-radius:8px; padding:8px 13px; background:#fff; color:#44556b; }
.isac-pg .p-action-btn:hover { border-color:var(--isac-blue); color:var(--isac-navy); }

/* 2 kolon (sol menü yok) — yalnızca masaüstü/tablet */
@media (min-width: 1101px) { .isac-pg { grid-template-columns: 1fr 300px; } }
@media (min-width: 769px) and (max-width: 1100px) { .isac-pg { grid-template-columns: 1fr 280px; } }

/* Görsel büyüt + üst bloğu genişlet — yalnızca ≥769px (mobil boyutlara dokunmaz) */
@media (min-width: 769px) {
  .isac-pg .isac-p-top { grid-template-columns: 250px 1fr; gap: 26px; }
  .isac-pg .isac-main-img { width: 230px; height: 230px; }
}

/* ══════════════════════════════════════════════════════════════
   v1.4 — BENZER ÜRÜNLER (Upsells) + marka paneli düzeltmeleri
   ══════════════════════════════════════════════════════════════ */

/* Marka paneli: stok gizli markalarda tek kutu tam genişlik.
   Ayrıca toplam ADET rakamları uzun olabildiği için puntoyu ölçekle. */
.isac-pg .isac-bc-stats.is-hidden-stock .isac-bc-stat { flex: 1 1 100%; }
.isac-pg .isac-bc-stats .isac-bc-stat b { font-size: 18px; letter-spacing: -.3px; }
.isac-pg .isac-bc-stats .isac-bc-stat span { font-size: 10px; }

/* ── Benzer Ürünler şeridi ── */
.isac-rel {
    max-width: 1340px;
    margin: 0 auto 34px;
    padding: 0 20px;
}
.isac-rel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dde3ed;
}
.isac-rel-ttl { min-width: 0; }
.isac-rel-head h2 {
    font-size: 19px;
    font-weight: 700;
    color: #0d2045;
    margin: 0;
    letter-spacing: -.2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Başlıktaki sayı rozeti */
.isac-rel-n {
    font-size: 11px;
    font-weight: 700;
    color: #4d9de0;
    background: #eaf3fc;
    border: 1px solid #cfe4f7;
    border-radius: 999px;
    padding: 1px 8px;
    line-height: 1.7;
}
.isac-rel-head p {
    margin: 3px 0 0;
    font-size: 12px;
    color: #7d93ab;
    line-height: 1.5;
}

/* ── Aksesuar şeridi: kendi kimliği (amber aksan) ── */
.isac-rel--acc .isac-rel-head { border-bottom-color: #f0e2c8; }
.isac-rel--acc .isac-rel-n { color: #b45309; background: #fdf4e3; border-color: #f0dcb4; }
.isac-rel--acc .isac-rel-card:hover { border-color: #d9932a; box-shadow: 0 10px 28px rgba(180,83,9,.13); }
.isac-rel--acc .isac-rel-sku { color: #b45309; }
.isac-rel--acc .isac-rel-cta { color: #b45309; }
.isac-rel-nav { display: flex; gap: 8px; }
.isac-rel-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid #d0daea;
    background: #fff;
    color: #0d2045;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .16s, border-color .16s, opacity .16s;
    padding: 0;
}
.isac-rel-btn svg { width: 16px; height: 16px; }
.isac-rel-btn:hover:not(:disabled) { background: #0d2045; border-color: #0d2045; color: #fff; }
.isac-rel-btn:disabled { opacity: .32; cursor: default; }

.isac-rel-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 4px 2px 10px;
    scrollbar-width: thin;
    scrollbar-color: #cdd9e8 transparent;
}
.isac-rel-track::-webkit-scrollbar { height: 6px; }
.isac-rel-track::-webkit-scrollbar-thumb { background: #cdd9e8; border-radius: 8px; }
.isac-rel-track::-webkit-scrollbar-track { background: transparent; }

.isac-rel-card {
    flex: 0 0 216px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #dde3ed;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.isac-rel-card:hover {
    box-shadow: 0 10px 28px rgba(13,32,69,.13);
    transform: translateY(-3px);
    border-color: #4d9de0;
}
.isac-rel-img {
    height: 148px;
    display: flex; align-items: center; justify-content: center;
    background: #fafbfc;
    border-bottom: 1px solid #f0f2f6;
    padding: 12px;
}
.isac-rel-img img { max-width: 100%; max-height: 100%; object-fit: contain; }

.isac-rel-body { padding: 11px 13px 6px; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.isac-rel-sku  { font-size: 10.5px; font-weight: 700; color: #4d9de0; letter-spacing: .3px; }
.isac-rel-name {
    font-size: 12.5px; font-weight: 600; color: #0d2045; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.isac-rel-cat  { font-size: 10.5px; color: #8899aa; margin-top: auto; }

.isac-rel-foot { padding: 8px 13px 12px; display: flex; flex-direction: column; gap: 7px; }
.isac-rel-foot .isac-stok-badge--small { width: 100%; justify-content: center; box-sizing: border-box; }
.isac-rel-price { font-size: 13px; font-weight: 700; color: #0d2045; }
.isac-rel-cta {
    font-size: 10.5px; font-weight: 700; color: #4d9de0;
    text-transform: uppercase; letter-spacing: .4px;
}

/* İki şerit alt alta gelince araya nefes payı */
.isac-rel + .isac-rel { margin-top: 6px; }

@media (max-width: 768px) {
    .isac-rel { padding: 0 16px; margin-bottom: 26px; }
    .isac-rel-head { align-items: flex-start; flex-direction: column; gap: 6px; }
    .isac-rel-head h2 { font-size: 17px; }
    .isac-rel-head p { font-size: 11.5px; }
    .isac-rel-nav { display: none !important; }
    .isac-rel-card { flex: 0 0 168px; }
    .isac-rel-img { height: 118px; }
    .isac-rel-track { scroll-snap-type: x mandatory; }
}
