/* ===========================================================================
   Sepet — /basket
   ---------------------------------------------------------------------------
   Sol sütun: alıcı/fatura formları ve sepet kalemleri.
   Sağ sütun: yapışkan sipariş özeti ve öneriler.
   Betik bağlantı noktaları (#frm, #total_price, #discount_price, .btn-trash,
   .btn-basket, .GiveUpDiscount …) işaretlemede korunmuştur.
   =========================================================================== */

:root {
    --bs-panel: #121414;
    --bs-line: #1f2222;
    --bs-text: #e9eded;
    --bs-muted: #9aa1a1;
    --bs-dim: #767d7d;
    --bs-accent: #f37a52;
}

.bsk { background: #0b0c0c; }
.section.bsk.pt-0 { padding-bottom: 4rem; }

/* ---------------------------------------------------------------------------
   Düzen
   --------------------------------------------------------------------------- */
.bsk-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 1.75rem;
    align-items: start;
}
.bsk-main { min-width: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.bsk-side { display: flex; flex-direction: column; gap: 1.25rem; min-width: 0; position: sticky; top: 92px; }
/* Form bir sarmalayıcı olduğu için kartlar arası boşluğu kendisi taşır. */
.bsk-main form { display: flex; flex-direction: column; gap: 1.25rem; }

/* ---------------------------------------------------------------------------
   Kart
   --------------------------------------------------------------------------- */
.bsk-card {
    border-radius: 1.15rem;
    border: 1px solid var(--bs-line);
    background: var(--bs-panel);
    overflow: hidden;
}
.bsk-card--flush { padding: 0; }
.bsk-card-head {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1.1rem 1.35rem;
    border-bottom: 1px solid var(--bs-line);
    background: rgba(255, 255, 255, .018);
}
.bsk-card-head--row { justify-content: space-between; }
.bsk-card-title { margin: 0; color: #fff; font-size: 1rem; font-weight: 800; letter-spacing: -.01em; }
.bsk-card-sub { margin: .2rem 0 0; color: var(--bs-muted); font-size: .8rem; line-height: 1.5; }
.bsk-card-body { padding: 1.35rem; }

/* Adım numarası */
.bsk-step {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(243, 122, 82, .45);
    background: rgba(243, 122, 82, .12);
    color: #ffbe9c;
    font-size: .8rem;
    font-weight: 800;
}

/* ---------------------------------------------------------------------------
   Form alanları
   --------------------------------------------------------------------------- */
.bsk-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.bsk-row:last-child { margin-bottom: 0; }
.bsk-field { min-width: 0; }
.bsk-label {
    display: block;
    margin-bottom: .4rem;
    color: var(--bs-muted);
    font-size: .76rem;
    font-weight: 700;
}
.bsk-label--ok { color: #ffbe9c; }
.bsk-label-note { color: var(--bs-dim); font-size: .7rem; font-weight: 500; }

/* Bulma `.input`/`.textarea` üzerine yazıyoruz. */
.bsk .bsk-input,
.bsk input.bsk-input,
.bsk select.bsk-input,
.bsk textarea.bsk-input {
    width: 100% !important;
    height: 48px;
    padding: 0 1rem !important;
    border-radius: .8rem !important;
    border: 1px solid var(--bs-line) !important;
    background: rgba(255, 255, 255, .04) !important;
    color: var(--bs-text) !important;
    font-size: .92rem !important;
    box-shadow: none !important;
    transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.bsk textarea.bsk-textarea {
    height: auto;
    min-height: 96px;
    padding: .8rem 1rem !important;
    line-height: 1.6;
    resize: vertical;
}
.bsk .bsk-input:focus {
    border-color: rgba(243, 122, 82, .6) !important;
    background: rgba(255, 255, 255, .06) !important;
    box-shadow: 0 0 0 3px rgba(243, 122, 82, .12) !important;
    outline: none;
}
.bsk .bsk-input::placeholder { color: #5f6666 !important; }

/* Sayı alanlarındaki artır/azalt okları — koyu zeminde çirkin duruyor. */
.bsk input[type="number"]::-webkit-outer-spin-button,
.bsk input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.bsk input[type="number"] { -moz-appearance: textfield; }

/* Açılır liste oku */
.bsk-select { position: relative; display: block; }
.bsk-select::after {
    content: "";
    position: absolute;
    right: 1.15rem;
    top: 50%;
    width: 8px; height: 8px;
    margin-top: -6px;
    border-right: 2px solid var(--bs-dim);
    border-bottom: 2px solid var(--bs-dim);
    transform: rotate(45deg);
    pointer-events: none;
}
.bsk .bsk-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.5rem !important;
}
.bsk .bsk-select select option { background: #16191a; color: var(--bs-text); }

/* ---------------------------------------------------------------------------
   Choices.js açılır listesi (şehir seçimi)
   ---------------------------------------------------------------------------
   `#billing_city` üzerindeki `data-choice-select`, sayfadaki
   `x-init="initSelects()"` ile Choices.js'e dönüştürülüyor: eklenti asıl
   `select` öğesini gizleyip yerine kendi işaretlemesini koyuyor. Bizim
   `.bsk-input` kuralları o yeni düğümlere ulaşmadığı için kutu eklentinin
   beyaz varsayılan temasıyla kalıyordu. Aşağısı o düğümleri karanlık
   yüzeye uyduruyor.
   --------------------------------------------------------------------------- */
.bsk .choices { margin-bottom: 0; }
/* Sarmalayıcının kendi oku ile eklentininki üst üste binmesin. */
.bsk-select:has(.choices)::after { content: none; }

.bsk .choices__inner {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 2.5rem 0 1rem !important;
    border-radius: .8rem !important;
    border: 1px solid var(--bs-line) !important;
    background: rgba(255, 255, 255, .04) !important;
    color: var(--bs-text) !important;
    font-size: .92rem;
}
.bsk .choices.is-open .choices__inner,
.bsk .choices.is-focused .choices__inner {
    border-color: rgba(243, 122, 82, .6) !important;
    box-shadow: 0 0 0 3px rgba(243, 122, 82, .12);
}
.bsk .choices__list--single { padding: 0; }
.bsk .choices__list--single .choices__item { color: var(--bs-text); }
.bsk .choices__placeholder { color: #5f6666; opacity: 1; }

/* Ok — diğer alanlardakiyle aynı çizim. */
.bsk .choices[data-type*="select-one"]::after {
    border: 0;
    width: 8px; height: 8px;
    right: 1.15rem;
    margin-top: -6px;
    border-right: 2px solid var(--bs-dim);
    border-bottom: 2px solid var(--bs-dim);
    transform: rotate(45deg);
}
.bsk .choices[data-type*="select-one"].is-open::after { margin-top: -2px; transform: rotate(-135deg); }

.bsk .choices__list--dropdown {
    z-index: 5;
    border-radius: .8rem !important;
    border: 1px solid var(--bs-line) !important;
    background: #16191a !important;
    box-shadow: 0 28px 60px -30px rgba(0, 0, 0, .95);
    overflow: hidden;
}
.bsk .choices__list--dropdown .choices__list { max-height: 260px; }
.bsk .choices__list--dropdown .choices__item {
    padding: .6rem 1rem;
    color: var(--bs-muted);
    font-size: .9rem;
}
.bsk .choices__list--dropdown .choices__item--selectable.is-highlighted,
.bsk .choices__list--dropdown .choices__item--selectable:hover {
    background: rgba(243, 122, 82, .14);
    color: #fff;
}
.bsk .choices__list--dropdown .choices__item--selectable::after { display: none; }

/* 81 il arasında arama kutusu çıkıyor; o da beyaz kalıyordu. */
.bsk .choices__input {
    margin: 0;
    padding: .6rem 1rem;
    border-bottom: 1px solid var(--bs-line) !important;
    background: rgba(255, 255, 255, .03) !important;
    color: var(--bs-text) !important;
    font-family: inherit;
    font-size: .9rem;
}
.bsk .choices__input::placeholder { color: #5f6666; }
.bsk .choices__list--dropdown .choices__item--disabled,
.bsk .choices__list--dropdown .has-no-results { color: var(--bs-dim); }

/* jquery-validate hata metinleri */
.bsk label.error, .bsk .error {
    display: block;
    margin-top: .35rem;
    color: #ff9d8a !important;
    font-size: .76rem !important;
    font-weight: 500;
}

.bsk-alert {
    padding: .85rem 1.1rem;
    border-radius: .8rem;
    font-size: .87rem;
    line-height: 1.6;
}
.bsk-alert--error { border: 1px solid rgba(255, 96, 72, .35); background: rgba(255, 96, 72, .1); color: #ffb3a3; }

.bsk-hint { margin: 0 0 1rem; color: var(--bs-dim); font-size: .78rem; line-height: 1.6; }
.bsk-hint strong { color: var(--bs-muted); }

/* ---------------------------------------------------------------------------
   Satın alma türü / hediye
   --------------------------------------------------------------------------- */
.bsk-choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .75rem; }
.bsk-choice {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    padding: .85rem 1rem;
    border-radius: .9rem;
    border: 1px solid var(--bs-line);
    background: rgba(255, 255, 255, .022);
    cursor: pointer;
    transition: border-color .22s ease, background .22s ease;
}
.bsk-choice:hover { border-color: rgba(255, 255, 255, .2); }
.bsk-choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.bsk-choice-mark {
    flex: 0 0 auto;
    position: relative;
    width: 18px; height: 18px;
    margin-top: .15rem;
    border-radius: 50%;
    border: 1px solid #4a5151;
    transition: border-color .22s ease;
}
.bsk-choice-mark::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--bs-accent);
    transform: scale(0);
    transition: transform .18s ease;
}
.bsk-choice input:checked ~ .bsk-choice-mark { border-color: var(--bs-accent); }
.bsk-choice input:checked ~ .bsk-choice-mark::after { transform: scale(1); }
.bsk-choice input:focus-visible ~ .bsk-choice-mark { box-shadow: 0 0 0 3px rgba(243, 122, 82, .2); }
.bsk-choice:has(input:checked) { border-color: rgba(243, 122, 82, .4); background: rgba(243, 122, 82, .07); }
.bsk-choice-text strong { display: block; color: var(--bs-text); font-size: .88rem; font-weight: 700; }
.bsk-choice-text small { display: block; margin-top: .15rem; color: var(--bs-dim); font-size: .74rem; line-height: 1.45; }

.bsk-gift {
    margin-top: 1rem;
    padding: 1.1rem;
    border-radius: .9rem;
    border: 1px solid var(--bs-line);
    background: rgba(255, 255, 255, .018);
}
.bsk-gift .bsk-hint { margin-bottom: 0; }

/* ---------------------------------------------------------------------------
   Sepet kalemleri
   --------------------------------------------------------------------------- */
.bsk-items { padding: .4rem; }
.bsk-item {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr) auto;
    gap: 1.1rem;
    align-items: center;
    padding: 1rem;
    border-radius: .9rem;
    transition: background .22s ease;
}
.bsk-item + .bsk-item { border-top: 1px solid var(--bs-line); border-radius: 0 0 .9rem .9rem; }
/* Kalem listesinin altındaki kapsam satırı (.fak-tetik — public-ui.css). Kart
   kenarına kalemlerle aynı hizada oturur: .bsk-items .4rem + kalem 1rem.
   Üstteki ince ayraç satırı kalem listesinden ayırıyor. */
.bsk-items-foot { padding: .9rem 1.4rem 1.15rem; border-top: 1px solid var(--bs-line); }
.bsk-items-foot .fak-tetik { margin-top: 0; }
.bsk-item:hover { background: rgba(255, 255, 255, .022); }
/* Sepette zaten kapsanan kalem — silik ama okunur. */
.bsk-item.is-disabled { opacity: .55; }

.bsk-item-media {
    border-radius: .7rem;
    overflow: hidden;
    background: #16191a;
    border: 1px solid var(--bs-line);
}
.bsk-item-media img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.bsk-item-media--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, .03);
}
.bsk-item-media--icon img { width: auto; height: 68px; aspect-ratio: auto; object-fit: contain; }

.bsk-item-body { min-width: 0; }
.bsk-tag {
    display: inline-flex;
    align-items: center;
    padding: .2rem .55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
    color: var(--bs-dim);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.bsk-tag--full { border-color: rgba(243, 122, 82, .45); background: rgba(243, 122, 82, .12); color: #ffbe9c; }
.bsk-item-title { margin: .5rem 0 0; font-size: 1.05rem; font-weight: 800; line-height: 1.35; letter-spacing: -.01em; }
.bsk-item-title, .bsk-item-title a { color: #fff !important; }
.bsk-item-title a:hover { color: var(--bs-accent) !important; }
.bsk-item-desc { margin: .35rem 0 0; color: var(--bs-muted); font-size: .84rem; line-height: 1.6; }
.bsk-meta { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .55rem; }
.bsk-meta-chip {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 .6rem;
    border-radius: 999px;
    border: 1px solid var(--bs-line);
    background: rgba(255, 255, 255, .03);
    color: var(--bs-muted);
    font-size: .73rem;
    font-weight: 600;
}
.bsk-item-note {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-top: .6rem;
    color: var(--bs-dim);
    font-size: .76rem;
}
.bsk-item-note strong { color: var(--bs-muted); }
.bsk-item-note svg {
    flex: 0 0 auto;
    width: 14px; height: 14px;
    fill: none; stroke: currentColor;
    stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}
.bsk-item-warn { margin: .6rem 0 0; color: #ffbe6e; font-size: .78rem; line-height: 1.5; }

.bsk-item-side { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; text-align: right; }
.bsk-item-old { color: var(--bs-dim); font-size: .85rem; font-weight: 600; text-decoration: line-through; }
.bsk-item-price { color: #fff; font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; white-space: nowrap; }
.bsk-trash {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    margin-top: .2rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 96, 72, .3);
    background: rgba(255, 96, 72, .08);
    color: #ff9d8a !important;
    transition: border-color .22s ease, background .22s ease, color .22s ease;
}
.bsk-trash:hover { border-color: rgba(255, 96, 72, .7); background: rgba(255, 96, 72, .18); color: #ffb3a3 !important; }
.bsk-trash svg {
    width: 16px; height: 16px;
    fill: none; stroke: currentColor;
    stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------------------------------------------------------------------------
   Sipariş özeti
   --------------------------------------------------------------------------- */
.bsk-total {
    padding: 1.1rem;
    margin-bottom: 1rem;
    border-radius: .9rem;
    border: 1px solid var(--bs-line);
    background:
        radial-gradient(120% 100% at 50% 0%, rgba(243, 122, 82, .09), transparent 65%),
        rgba(255, 255, 255, .022);
    text-align: center;
}
.bsk-total-label {
    display: block;
    color: var(--bs-dim);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.bsk-total-value {
    margin-top: .4rem;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
}
.bsk-total-value.is-struck { color: var(--bs-dim); font-size: 1.1rem; }
.bsk-discount { margin-top: .35rem; color: #ffbe9c; }
.bsk-discount small { display: block; font-size: .74rem; font-weight: 700; }
.bsk-discount span { display: block; font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
.bsk-discount:empty, .bsk-discount small:empty { margin: 0; }

.bsk-block { margin-bottom: 1rem; }
.bsk-block-head { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-bottom: .4rem; }
.bsk-block-head .bsk-label { margin-bottom: 0; }
.bsk-giveup { color: #ff9d8a !important; font-size: .76rem; font-weight: 700; }
.bsk-giveup:hover { color: #ffb3a3 !important; }
.bsk-applied {
    margin: 0;
    padding: .7rem .9rem;
    border-radius: .7rem;
    border: 1px solid rgba(255, 190, 110, .35);
    background: rgba(255, 190, 110, .1);
    color: #ffbe6e;
    font-size: .82rem;
}

/* Sözleşme onayı */
.bsk-consent {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin: 1.1rem 0;
    cursor: pointer;
}
.bsk-consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.bsk-consent-box {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    margin-top: .05rem;
    border-radius: .45rem;
    border: 1px solid #4a5151;
    background: rgba(255, 255, 255, .04);
    color: transparent;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.bsk-consent-box svg {
    width: 13px; height: 13px;
    fill: none; stroke: currentColor;
    stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
}
.bsk-consent input:checked ~ .bsk-consent-box {
    border-color: var(--bs-accent);
    background: rgba(243, 122, 82, .22);
    color: #fff;
}
.bsk-consent input:focus-visible ~ .bsk-consent-box { box-shadow: 0 0 0 3px rgba(243, 122, 82, .2); }
.bsk-consent-text { color: var(--bs-muted); font-size: .8rem; line-height: 1.6; }
.bsk-consent-text a { color: var(--bs-accent) !important; font-weight: 700; }

.bsk-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    margin: .75rem 0 0;
    color: var(--bs-dim);
    font-size: .74rem;
}
.bsk-secure svg {
    width: 13px; height: 13px;
    fill: none; stroke: currentColor;
    stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------------------------------------------------------------------------
   Düğmeler
   --------------------------------------------------------------------------- */
.bsk .bsk-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    height: 46px;
    padding: 0 1.35rem !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    background: rgba(255, 255, 255, .05) !important;
    color: #fff !important;
    font-family: inherit;
    font-size: .88rem !important;
    font-weight: 700 !important;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: none !important;
    transition: border-color .22s ease, background .22s ease, color .22s ease;
}
.bsk .bsk-btn:hover { border-color: rgba(255, 255, 255, .4) !important; background: rgba(255, 255, 255, .1) !important; }
.bsk .bsk-btn--wide { width: 100%; }
.bsk .bsk-btn--primary {
    border-color: rgba(243, 122, 82, .55) !important;
    background: rgba(243, 122, 82, .2) !important;
}
.bsk .bsk-btn--primary:hover { border-color: rgba(243, 122, 82, .95) !important; background: rgba(243, 122, 82, .32) !important; }
.bsk .bsk-btn[disabled] { opacity: .45; cursor: not-allowed; }
.bsk .bsk-btn[disabled]:hover { border-color: rgba(255, 255, 255, .16) !important; background: rgba(255, 255, 255, .05) !important; }
.bsk .bsk-btn svg {
    width: 16px; height: 16px;
    fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.bsk-auth { display: flex; gap: .5rem; flex-wrap: wrap; }
.bsk-auth .bsk-btn { flex: 1 1 auto; }
.mt-2 { margin-top: .5rem; }

/* ---------------------------------------------------------------------------
   Öneriler
   ---------------------------------------------------------------------------
   Görsel sütunu 56px ve kiremit biçimi sepet kalemlerindeki
   `.bsk-item-media` ile aynı: yuvarlatılmış kare, koyu zemin, ince çerçeve.
   Önceki hâl daireydi ve iki sorunu vardı: sertifika ikonları kare/şeffaf
   olduğu için dairede köşelerinden kırpılıyordu, sınırsız erişim afişi ise
   1920×1280'lik bir fotoğraf — 56px'e kırpılınca tanınmaz bir karanlık
   lekeye dönüyordu. Fotoğrafın yerini artık amblem alıyor.
   --------------------------------------------------------------------------- */
.bsk-offers { padding: .4rem; }
.bsk-offer {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 36px;
    gap: .85rem;
    /* Metin üç-dört satır; görsel ve "+" düğmesi etiket satırıyla hizalanınca
       kutu üstten okunuyor. Ortalanmış hâlde ikisi de paragrafın ortasına
       kayıyor, düğme "hangi satıra ait" belirsizleşiyordu. */
    align-items: start;
    padding: .85rem;
    border-radius: .8rem;
    transition: background .22s ease;
}
.bsk-offer:hover { background: rgba(255, 255, 255, .03); }
.bsk-offer + .bsk-offer { border-top: 1px solid var(--bs-line); border-radius: 0; }
.bsk-offer--hero { border: 1px solid rgba(243, 122, 82, .3); background: rgba(243, 122, 82, .06); }
/* Vurgulu kutunun kendi çerçevesi var; hemen altındaki ayırıcı onunla
   çakışıp çift çizgi oluşturuyordu. */
.bsk-offer--hero + .bsk-offer { border-top: 0; margin-top: .45rem; }

/* Görsel kiremidi — iki öneri türü de aynı kutuya oturur. */
.bsk-offer-media,
.bsk-offer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: .7rem;
    overflow: hidden;
    background: #16191a;
    border: 1px solid var(--bs-line);
}
/* `.certificateIcon` custom.css'te min/max ile 75px'e sabitlenmiş. `min-width`
   `width`i (!important olsa bile) ezdiği için ikon 56px'lik sütunu 19px
   taşırıp metnin üstüne biniyordu — "ikon kaymış" görüntüsü buradan geliyor.
   O ölçü panodaki eski öneri listesinde hâlâ gerekli, bu yüzden genel kural
   yerinde bırakılıp kelepçe yalnızca burada açılıyor. */
.bsk-offer-icon img {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    max-width: none;
    min-height: 0;
    max-height: none;
    padding: 5px;
    object-fit: contain;
}
/* Sınırsız erişim amblemi — `.bsk-tag--full` etiketiyle aynı turuncu aile. */
.bsk-offer-media--full {
    border-color: rgba(243, 122, 82, .35);
    background: linear-gradient(140deg, rgba(243, 122, 82, .22) 0%, rgba(236, 56, 125, .16) 100%);
    color: #ffbe9c;
}
.bsk-offer-media--full svg {
    width: 26px; height: 26px;
    fill: none; stroke: currentColor;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.bsk-offer-body { min-width: 0; }
.bsk-offer-title { margin: .35rem 0 0; color: #fff; font-size: .92rem; font-weight: 800; line-height: 1.35; }
.bsk-offer-text { margin: .3rem 0 0; color: var(--bs-muted); font-size: .78rem; line-height: 1.6; }
.bsk-offer-text strong { color: #fff; }
.bsk-em { color: #ffbe6e; font-weight: 600; }
.bsk-offer-price { display: block; margin-top: .35rem; color: #fff; font-size: .95rem; font-weight: 800; }
.bsk-add {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(243, 122, 82, .45);
    background: rgba(243, 122, 82, .12);
    color: #ffbe9c !important;
    transition: border-color .22s ease, background .22s ease, color .22s ease;
}
.bsk-add:hover { border-color: rgba(243, 122, 82, .9); background: rgba(243, 122, 82, .26); color: #fff !important; }
.bsk-add svg {
    width: 17px; height: 17px;
    fill: none; stroke: currentColor;
    stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------------------------------------------------------------------------
   Boş sepet
   --------------------------------------------------------------------------- */
.bsk-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    padding: 4rem 1.5rem;
    border-radius: 1.15rem;
    border: 1px dashed var(--bs-line);
    background: rgba(255, 255, 255, .015);
    text-align: center;
}
.bsk-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px; height: 62px;
    border-radius: 50%;
    border: 1px solid var(--bs-line);
    background: rgba(255, 255, 255, .03);
    color: var(--bs-dim);
}
.bsk-empty-icon svg {
    width: 26px; height: 26px;
    fill: none; stroke: currentColor;
    stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.bsk-empty-title { margin: .35rem 0 0; color: #fff; font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; }
.bsk-empty-text { margin: 0; max-width: 460px; color: var(--bs-muted); font-size: .92rem; line-height: 1.7; }
.bsk-empty-actions { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-top: .5rem; }

/* ---------------------------------------------------------------------------
   Küçük ekran
   --------------------------------------------------------------------------- */
@media screen and (max-width: 1215px) {
    .bsk-layout { grid-template-columns: minmax(0, 1fr) 330px; gap: 1.35rem; }
    .bsk-item { grid-template-columns: 140px minmax(0, 1fr) auto; }
}
@media screen and (max-width: 1023px) {
    .bsk-layout { grid-template-columns: minmax(0, 1fr); gap: 1.25rem; }
    /* Yapışkanlık tek sütunda anlamsız; özet akışın içinde kalsın. */
    .bsk-side { position: static; }
}
@media screen and (max-width: 700px) {
    .bsk-item {
        grid-template-columns: minmax(0, 1fr);
        gap: .85rem;
    }
    .bsk-item-media { max-width: 100%; }
    .bsk-item-side { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; text-align: left; }
    .bsk-trash { margin-top: 0; }
    .bsk-card-body { padding: 1.1rem; }
    .bsk-card-head { padding: .95rem 1.1rem; }
}
@media (prefers-reduced-motion: reduce) and (prefers-reduced-motion: no-preference) /* ETKİSİZ: hareket azaltma yok sayılıyor */ {
    .bsk .bsk-btn, .bsk-item, .bsk-offer, .bsk-trash, .bsk-add,
    .bsk-choice, .bsk-choice-mark::after, .bsk-consent-box, .bsk .bsk-input { transition: none; }
}
