/**
 * Düğün Paketi Sihirbazı — duyarlı, tasarım-öncelikli stiller
 * Mobile-first; masaüstünde 2 sütun (adımlar + yapışkan özet), mobilde tek sütun + sabit alt çubuk.
 */

.ev-wizard {
    --ev-accent: var(--evname-accent, #d71b0c);
    --ev-accent-dark: #b3160a;
    --ev-ink: #1f2328;
    --ev-muted: #6b7280;
    --ev-line: #eceef1;
    --ev-radius: 14px;
    --ev-shadow: 0 6px 24px rgba(0, 0, 0, .06);
    padding: 24px 0 60px;
    color: var(--ev-ink);
}

/* ---------- başlık ---------- */
.ev-wizard-head { text-align: center; max-width: 720px; margin: 0 auto 28px; }
.ev-wizard-title { font-size: clamp(24px, 4vw, 36px); font-weight: 800; letter-spacing: -.5px; margin: 0 0 8px; }
.ev-wizard-desc { color: var(--ev-muted); font-size: 15px; margin: 0; }

/* ---------- yerleşim ---------- */
.ev-wizard-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 992px) {
    .ev-wizard-layout { grid-template-columns: minmax(0, 1fr) 360px; align-items: start; }
}

/* ---------- adım göstergesi ---------- */
.ev-steps {
    list-style: none; margin: 0 0 22px; padding: 0;
    display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
    -webkit-overflow-scrolling: touch; counter-reset: step;
}
.ev-steps::-webkit-scrollbar { display: none; }
.ev-step {
    flex: 1 0 auto; min-width: 0; display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; background: #fff; border: 1px solid var(--ev-line);
    border-radius: 12px; cursor: pointer; transition: all .2s ease; position: relative;
}
.ev-step-num {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
    display: grid; place-items: center; font-weight: 700; font-size: 14px;
    background: #f3f4f6; color: var(--ev-muted); transition: all .2s ease;
}
.ev-step-label { font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ev-step.is-active { border-color: var(--ev-accent); box-shadow: 0 0 0 3px rgba(215, 27, 12, .1); }
.ev-step.is-active .ev-step-num { background: var(--ev-accent); color: #fff; }
.ev-step.is-done .ev-step-num { background: #198754; color: #fff; }

/* ---------- panel ---------- */
.ev-panel { display: none; }
.ev-panel.is-active { display: block; animation: ev-fade .25s ease; }
@keyframes ev-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.ev-panel-head h2 { font-size: 18px; font-weight: 700; margin: 0 0 16px; }
.ev-panel-head small { color: var(--ev-muted); font-weight: 500; font-size: 14px; }

/* ---------- ürün ızgarası ---------- */
.ev-products, .ev-products-skeleton {
    display: grid; gap: 14px;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 576px) { .ev-products, .ev-products-skeleton { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .ev-products, .ev-products-skeleton { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .ev-products, .ev-products-skeleton { grid-template-columns: repeat(3, 1fr); } }

.ev-product {
    background: #fff; border: 1px solid var(--ev-line); border-radius: var(--ev-radius);
    overflow: hidden; cursor: default; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    display: flex; flex-direction: column; position: relative;
}
.ev-product:hover { transform: translateY(-3px); box-shadow: var(--ev-shadow); }
/* Görsel hazır paketlerdeki gibi orijinal oranında gösterilir (kareye kırpma yok) */
.ev-product-media { position: relative; background: #f4f5f7; cursor: zoom-in; }
.ev-product-media img { width: 100%; height: auto; display: block; }
.ev-product-check {
    position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%;
    background: var(--ev-accent); color: #fff; display: grid; place-items: center;
    opacity: 0; transform: scale(.5); transition: all .18s ease; box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}
.ev-product-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ev-product-name {
    font-size: 13.5px; font-weight: 600; line-height: 1.35; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ev-product-price { margin-top: auto; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.ev-old-price { color: #9aa0a6; text-decoration: line-through; font-size: 12px; }
.ev-new-price { color: var(--ev-ink); font-weight: 800; font-size: 15px; }
.ev-select-btn {
    border: 1px solid var(--ev-line); background: #fff; color: var(--ev-ink);
    border-radius: 8px; padding: 8px 10px; font-weight: 600; font-size: 13px; cursor: pointer;
    transition: all .15s ease;
}
.ev-select-btn:hover { border-color: var(--ev-accent); color: var(--ev-accent); }

/* seçili durum */
.ev-product.is-selected { border-color: var(--ev-accent); box-shadow: 0 0 0 2px var(--ev-accent) inset; }
.ev-product.is-selected .ev-product-check { opacity: 1; transform: scale(1); }
.ev-product.is-selected .ev-select-btn {
    background: var(--ev-accent); border-color: var(--ev-accent); color: #fff; font-size: 0;
}
.ev-product.is-selected .ev-select-btn::before { content: 'Seçildi'; font-size: 13px; }

/* iskelet yükleme */
.ev-skeleton-card { aspect-ratio: .78; border-radius: var(--ev-radius); background:
    linear-gradient(100deg, #eee 30%, #f6f7f8 50%, #eee 70%); background-size: 200% 100%;
    animation: ev-shimmer 1.2s infinite; }
@keyframes ev-shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

.ev-empty { color: var(--ev-muted); padding: 24px 0; text-align: center; grid-column: 1 / -1; }

/* daha fazla / panel nav */
.ev-products-more { text-align: center; margin: 18px 0; }
.ev-load-more {
    border: 1px solid var(--ev-line); background: #fff; border-radius: 50px;
    padding: 10px 24px; font-weight: 600; cursor: pointer; transition: all .15s ease;
}
.ev-load-more:hover { border-color: var(--ev-accent); color: var(--ev-accent); }
.ev-panel-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 10px; }
.ev-prev, .ev-next {
    border-radius: 10px; padding: 11px 22px; font-weight: 700; cursor: pointer; border: 1px solid var(--ev-line); transition: all .15s ease;
}
.ev-prev { background: #fff; color: var(--ev-ink); }
.ev-prev:disabled { opacity: .4; cursor: not-allowed; }
.ev-next { background: var(--ev-accent); border-color: var(--ev-accent); color: #fff; }
.ev-next:hover { background: var(--ev-accent-dark); }

/* ---------- özet ---------- */
.ev-summary-card {
    background: #fff; border: 1px solid var(--ev-line); border-radius: var(--ev-radius);
    padding: 20px; box-shadow: var(--ev-shadow);
}
@media (min-width: 992px) { .ev-summary { position: sticky; top: 100px; } }
.ev-summary-title { font-size: 17px; font-weight: 800; margin: 0 0 14px; }

.ev-progress { margin-bottom: 16px; }
.ev-progress-track { height: 8px; border-radius: 50px; background: #f0f1f3; overflow: hidden; }
.ev-progress-fill { display: block; height: 100%; width: 0; border-radius: 50px;
    background: linear-gradient(90deg, var(--ev-accent), #ff5a4d); transition: width .35s ease; }
.ev-progress-text { display: block; margin-top: 6px; font-size: 12.5px; color: var(--ev-muted); font-weight: 600; }

.ev-summary-list { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ev-summary-item { display: flex; align-items: center; gap: 10px; }
.ev-summary-item img, .ev-si-placeholder {
    width: 42px; height: 42px; border-radius: 8px; object-fit: cover; flex-shrink: 0;
    background: #f4f5f7; border: 1px solid var(--ev-line);
}
.ev-si-placeholder { border-style: dashed; }
.ev-si-body { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.ev-si-cat { font-size: 11px; color: var(--ev-muted); text-transform: uppercase; letter-spacing: .4px; }
.ev-si-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ev-summary-item.is-empty .ev-si-name { color: #b5bac1; font-weight: 500; }
.ev-si-price { font-size: 13px; font-weight: 700; white-space: nowrap; }

.ev-summary-totals { border-top: 1px dashed var(--ev-line); padding-top: 14px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.ev-line { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--ev-muted); }
.ev-line strong { color: var(--ev-ink); font-weight: 700; }
.ev-discount-line { color: #198754; } .ev-discount-line strong { color: #198754; }
.ev-total-line { font-size: 16px; padding-top: 6px; border-top: 1px solid var(--ev-line); }
.ev-total-line span { color: var(--ev-ink); font-weight: 700; }
.ev-total-line strong { font-size: 20px; font-weight: 800; }

.ev-add-to-cart {
    width: 100%; border: none; border-radius: 10px; padding: 14px; font-weight: 800; font-size: 15px;
    color: #fff; background: var(--ev-accent); cursor: pointer; transition: all .2s ease;
}
.ev-add-to-cart:hover:not(:disabled) { background: var(--ev-accent-dark); transform: translateY(-1px); }
.ev-add-to-cart:disabled { background: #d6d8db; cursor: not-allowed; }
.ev-hint { margin: 10px 0 0; font-size: 12.5px; color: var(--ev-muted); text-align: center; min-height: 16px; }
.ev-hint.is-success { color: #198754; font-weight: 600; }

/* ---------- mobil sabit alt çubuk ---------- */
.ev-mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040;
    display: flex; align-items: center; gap: 12px; padding: 10px 14px;
    background: #fff; border-top: 1px solid var(--ev-line); box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
}
.ev-mobile-bar-info { display: flex; flex-direction: column; line-height: 1.2; }
.ev-mobile-progress { font-size: 11px; color: var(--ev-muted); font-weight: 600; }
.ev-mobile-total { font-size: 16px; font-weight: 800; }
.ev-mobile-atc {
    margin-left: auto; border: none; border-radius: 10px; padding: 12px 24px; font-weight: 800;
    color: #fff; background: var(--ev-accent); cursor: pointer;
}
.ev-mobile-atc:disabled { background: #d6d8db; }
@media (min-width: 992px) { .ev-mobile-bar { display: none !important; } }

@media (max-width: 991px) {
    /* Tema'nın mobil alt menüsü (Mağaza/Ara/...) sihirbazda gizli — kendi paket
       çubuğumuzla çakışmasın. wedding-wizard.css sadece bu sayfada yüklenir. */
    #tp-bottom-menu-sticky { display: none !important; }

    .ev-wizard { padding: 16px 0 84px; overflow-x: hidden; }
    .ev-wizard-head { margin-bottom: 18px; }
    .ev-wizard-layout { gap: 18px; }

    /* adım göstergesi: kompakt + kaydırılabilir */
    .ev-step { padding: 9px 12px; }
    .ev-step-label { font-size: 13px; }

    /* özet kartı: adımların altında, sade */
    .ev-summary-card { box-shadow: none; border-radius: 12px; }

    /* mobil alt çubuk: tema navı gizli olduğu için en altta, güvenli alan dahil */
    .ev-mobile-bar { padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 360px) {
    .ev-products, .ev-products-skeleton { grid-template-columns: 1fr; }  /* çok dar ekranda tek sütun */
    .ev-mobile-atc { padding: 12px 18px; }
}

/* ============================================================
   PANEL BAŞLIĞI (başlık solda, İleri/Geri sağda) + KATEGORİ ARAMA
   + GÖRSEL ÖNİZLEME (zoom) + ÖNİZLEME MODALI
   ============================================================ */
.ev-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.ev-panel-head h2 { margin: 0; }
.ev-panel-head .ev-panel-nav { margin: 0; gap: 8px; }
.ev-panel-head .ev-prev, .ev-panel-head .ev-next { padding: 8px 16px; font-size: 13px; }

.ev-panel-search { position: relative; margin-bottom: 16px; }
.ev-panel-search > svg { position: absolute; inset-inline-start: 14px; top: 50%; transform: translateY(-50%); color: #9aa0a6; pointer-events: none; }
.ev-search { width: 100%; height: 44px; padding: 0 16px 0 42px; border: 1px solid #eceef1; border-radius: 10px; font-size: 14px; outline: none; background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
.ev-search:focus { border-color: var(--evname-accent, #d71b0c); box-shadow: 0 0 0 3px rgba(215, 27, 12, .08); }

.ev-product-zoom {
    position: absolute; top: 8px; inset-inline-start: 8px; width: 30px; height: 30px;
    border: none; border-radius: 8px; background: rgba(255, 255, 255, .92); color: #333;
    display: grid; place-items: center; cursor: pointer; z-index: 3;
    opacity: 0; transform: translateY(-4px); transition: all .18s ease; box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}
.ev-product:hover .ev-product-zoom, .ev-product-zoom:focus-visible { opacity: 1; transform: translateY(0); }
.ev-product-zoom:hover { background: #fff; color: var(--evname-accent, #d71b0c); }
@media (hover: none) { .ev-product-zoom { opacity: 1; transform: none; } } /* dokunmatikte hep görünür */

.ev-preview { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.ev-preview[hidden] { display: none; }
.ev-preview-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .7); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.ev-preview-dialog { position: relative; z-index: 1; background: #fff; border-radius: 14px; overflow: hidden; width: 100%; max-width: min(560px, 92vw); box-shadow: 0 20px 60px rgba(0, 0, 0, .4); animation: ev-pop .2s ease; }
@keyframes ev-pop { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ev-preview-img { display: block; width: 100%; max-height: 70vh; object-fit: contain; background: #f4f5f7; }
.ev-preview-close { position: absolute; top: 10px; inset-inline-end: 10px; width: 36px; height: 36px; border: none; border-radius: 50%; background: rgba(0, 0, 0, .55); color: #fff; display: grid; place-items: center; cursor: pointer; }
.ev-preview-close:hover { background: rgba(0, 0, 0, .8); }
.ev-preview-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-top: 1px solid #eceef1; }
.ev-preview-name { font-weight: 600; font-size: 15px; }
.ev-preview-select { border: none; border-radius: 8px; padding: 10px 20px; font-weight: 700; color: #fff; background: var(--evname-accent, #d71b0c); cursor: pointer; white-space: nowrap; }
.ev-preview-select:hover { filter: brightness(.92); }

@media (max-width: 575px) {
    .ev-panel-head .ev-panel-nav { width: 100%; justify-content: space-between; }
}

/* ============================================================
   MOBİL/SAYFA DÜZELTMELERİ
   - Arama: tema input[type=search] kuralı padding'i eziyordu (ikon/yazı çakışması)
   - Breadcrumb banner kaldırıldı (sihirbazın kendi başlığı var)
   - Yüzen öğeler (sosyal bar, WhatsApp, chat, yukarı-çık) sihirbazda sadeleştirildi
   ============================================================ */
.ev-panel-search .ev-search {
    -webkit-appearance: none; appearance: none; box-sizing: border-box;
    padding-left: 44px !important;
}
.ev-panel-search .ev-search::-webkit-search-decoration,
.ev-panel-search .ev-search::-webkit-search-cancel-button { -webkit-appearance: none; }

/* sihirbazda breadcrumb banner gerekmez */
.breadcrumb__area { display: none !important; }

/* sağdaki dikey sosyal bar ürünlerin üstüne biniyordu */
.fixed-social-media-container { display: none !important; }

/* mobilde yüzen öğeleri gizle: kendi alt CTA çubuğumuz var -> sade, çakışmasız */
@media (max-width: 991px) {
    .whatsapp-container-x, .back-to-top, #ncw-root { display: none !important; }
    .ev-mobile-bar { z-index: 1050; padding: 10px 12px; gap: 10px; }
    .ev-mobile-bar-info { min-width: 0; }
    .ev-mobile-atc { padding: 12px 20px; flex-shrink: 0; }
}

/* grid item taşması (sağ sütun kırpılması + sabit çubuk) -> min-width:0 ile düzelt */
.ev-wizard-main, .ev-summary { min-width: 0; }
@media (max-width: 991px) { html, body { overflow-x: hidden; } }

/* devre dışı butonlarda okunur kontrast (beyaz yazı açık gri üstünde kayboluyordu) */
.ev-add-to-cart:disabled, .ev-mobile-atc:disabled { background: #e5e7eb; color: #9aa0a6; }

/* Masaüstü yapışkan özet: tema 'main{overflow:hidden}' position:sticky'i kırıyordu.
   overflow:clip taşmayı yine kırpar ama scroll-container oluşturmaz -> sticky çalışır. */
main { overflow: clip !important; }
.ev-summary { align-self: start; }

/* Paketi Düzenle (ikincil buton) + özete kaydırma vurgusu */
.ev-edit-package {
    width: 100%; margin-top: 10px; border: 1px solid var(--ev-line); background: #fff;
    color: var(--ev-ink); border-radius: 10px; padding: 11px; font-weight: 600; font-size: 13.5px;
    cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    transition: border-color .15s ease, color .15s ease;
}
.ev-edit-package:hover { border-color: var(--ev-accent); color: var(--ev-accent); }
.ev-summary-card.is-highlight { animation: ev-summary-pulse 1.6s ease; }
@keyframes ev-summary-pulse {
    0% { box-shadow: 0 0 0 0 rgba(215, 27, 12, 0); }
    20% { box-shadow: 0 0 0 4px rgba(215, 27, 12, .25); }
    100% { box-shadow: var(--ev-shadow); }
}

/* ============================================================
   2026-06-11 İYİLEŞTİRME TURU
   Hazır paketler · adet kontrolleri · stok · restore · a11y · özet notu
   ============================================================ */

/* ---- erişilebilirlik: görünür odak halkası (#4) ---- */
.ev-wizard :focus-visible,
.ev-preset-card a:focus-visible,
.ev-preview button:focus-visible {
    outline: 3px solid rgba(215, 27, 12, .5);
    outline-offset: 2px;
    border-radius: 6px;
}

/* ---- hazır / popüler paketler (#8) — TEK ŞERİT SLIDER (mobil 2 / masaüstü 4) ---- */
.ev-presets { margin: 0 0 30px; }
.ev-presets-head { text-align: center; margin-bottom: 16px; }
.ev-presets-title { font-size: clamp(18px, 3vw, 24px); font-weight: 800; margin: 0 0 4px; }
.ev-presets-sub { color: var(--ev-muted); font-size: 14px; margin: 0; }

.ev-presets-slider { position: relative; }
.ev-presets-track {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding: 4px 2px 8px;
    scrollbar-width: none;
}
.ev-presets-track::-webkit-scrollbar { display: none; }

/* kart = ürün sayfasına link; görsel + ad + fiyat. Mobil 2, masaüstü 4 görünür. */
.ev-preset-card {
    flex: 0 0 calc((100% - 14px) / 2); scroll-snap-align: start;
    background: #fff; border: 1px solid var(--ev-line); border-radius: var(--ev-radius);
    overflow: hidden; display: flex; flex-direction: column; text-decoration: none;
    color: var(--ev-ink); transition: transform .15s ease, box-shadow .15s ease;
}
@media (min-width: 992px) { .ev-preset-card { flex-basis: calc((100% - 42px) / 4); } }
.ev-preset-card:hover { transform: translateY(-3px); box-shadow: var(--ev-shadow); }
/* Görsel: kare DEĞİL — orijinal en-boy oranıyla (kırpma yok) */
.ev-preset-media { display: block; background: #f4f5f7; }
.ev-preset-media img { width: 100%; height: auto; display: block; }
/* Ad + fiyat: kartta ortalı */
.ev-preset-name {
    padding: 10px 11px 0; font-size: 13.5px; font-weight: 700; line-height: 1.3; text-align: center;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ev-preset-card:hover .ev-preset-name { color: var(--ev-accent); }
.ev-preset-price { padding: 6px 11px 12px; margin-top: auto; display: flex; align-items: baseline; justify-content: center; gap: 6px; flex-wrap: wrap; }

/* gezinme okları (masaüstü; mobilde dokunmatik kaydırma) */
.ev-presets-nav {
    position: absolute; top: 40%; transform: translateY(-50%); z-index: 4;
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--ev-line);
    background: #fff; color: var(--ev-ink); display: grid; place-items: center; cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .14); transition: color .15s ease, border-color .15s ease, opacity .15s ease;
}
.ev-presets-nav:hover { color: var(--ev-accent); border-color: var(--ev-accent); }
.ev-presets-nav[hidden] { display: none; }
.ev-presets-prev { left: -8px; }
.ev-presets-next { right: -8px; }
@media (max-width: 991px) { .ev-presets-nav { display: none; } }

.ev-presets-or { text-align: center; position: relative; margin: 18px 0 0; color: var(--ev-muted); font-size: 13px; }
.ev-presets-or::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--ev-line); }
.ev-presets-or span { position: relative; background: var(--theme-body-bg, #fff); padding: 0 14px; }

/* ---- adet kontrolleri (#6) ---- */
.ev-qty { display: flex; align-items: center; justify-content: center; gap: 0; margin-top: 2px; }
.ev-qty[hidden] { display: none; }
.ev-qty-dec, .ev-qty-inc {
    width: 32px; height: 32px; border: 1px solid var(--ev-line); background: #fff; color: var(--ev-ink);
    font-size: 18px; line-height: 1; cursor: pointer; display: grid; place-items: center;
}
.ev-qty-dec { border-radius: 8px 0 0 8px; }
.ev-qty-inc { border-radius: 0 8px 8px 0; }
.ev-qty-dec:hover, .ev-qty-inc:hover { border-color: var(--ev-accent); color: var(--ev-accent); }
.ev-qty-input {
    width: 42px; height: 32px; border: 1px solid var(--ev-line); border-left: 0; border-right: 0;
    text-align: center; font-weight: 700; font-size: 14px; color: var(--ev-ink); background: #fff; outline: none;
}

/* ---- stok yok (#7) ---- */
.ev-oos-badge {
    position: absolute; top: 8px; right: 8px; z-index: 3; background: #6b7280; color: #fff;
    font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px;
}
.ev-product.is-oos { opacity: .72; }
.ev-product.is-oos .ev-product-media { filter: grayscale(.35); }
.ev-product.is-oos .ev-select-btn { background: #f0f1f3; color: #9aa0a6; border-color: var(--ev-line); cursor: not-allowed; }

/* ---- özet: adet rozeti + bilgi notu (#6/#12) ---- */
.ev-si-qty { font-size: 11px; font-weight: 700; color: var(--ev-accent); margin-left: 2px; }
.ev-summary-note { margin: 10px 0 0; font-size: 11.5px; color: var(--ev-muted); text-align: center; line-height: 1.4; }

/* ---- "kaldığın yerden devam et" bildirimi (#3) ---- */
.ev-restore {
    display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412;
    border-radius: 12px; padding: 12px 16px; margin: 0 0 20px; font-size: 14px; font-weight: 600;
}
.ev-restore-clear {
    border: 1px solid #fdba74; background: #fff; color: #9a3412; border-radius: 8px;
    padding: 7px 14px; font-weight: 700; font-size: 13px; cursor: pointer;
}
.ev-restore-clear:hover { background: #fff1e2; }

/* ============================================================
   2026-06-11 — Backlog turu B (#9 kişiselleştirme, #10 özetten çıkar, #11 paylaş)
   ============================================================ */

/* #10 özet satırı: kaldır butonu + tıklanabilir (değiştir) */
.ev-summary-item.is-filled { cursor: pointer; border-radius: 8px; padding: 4px; margin: -4px; transition: background .12s ease; }
.ev-summary-item.is-filled:hover { background: #f7f8fa; }
.ev-si-remove {
    flex-shrink: 0; width: 22px; height: 22px; border: none; border-radius: 50%;
    background: #f0f1f3; color: #6b7280; font-size: 16px; line-height: 1; cursor: pointer;
    display: grid; place-items: center; transition: all .15s ease;
}
.ev-si-remove:hover { background: var(--ev-accent); color: #fff; }

/* #9 kişiselleştirme */
.ev-person { margin: 14px 0 4px; border: 1px solid var(--ev-line); border-radius: 10px; overflow: hidden; }
.ev-person-toggle {
    width: 100%; display: flex; align-items: center; gap: 8px; padding: 11px 12px; background: #fafbfc;
    border: none; cursor: pointer; font-weight: 600; font-size: 13px; color: var(--ev-ink); text-align: start;
}
.ev-person-toggle > span { flex: 1; }
.ev-person-caret { transition: transform .2s ease; color: var(--ev-muted); }
.ev-person.is-open .ev-person-caret { transform: rotate(180deg); }
.ev-person-body { padding: 4px 12px 12px; display: flex; flex-direction: column; gap: 10px; }
.ev-person-body[hidden] { display: none; }
.ev-person-field { display: flex; flex-direction: column; gap: 4px; }
.ev-person-field > span { font-size: 12px; color: var(--ev-muted); font-weight: 600; }
.ev-person-field input, .ev-person-field textarea {
    width: 100%; border: 1px solid var(--ev-line); border-radius: 8px; padding: 9px 11px;
    font-size: 13.5px; outline: none; background: #fff; resize: vertical; box-sizing: border-box;
}
.ev-person-field input:focus, .ev-person-field textarea:focus {
    border-color: var(--ev-accent); box-shadow: 0 0 0 3px rgba(215, 27, 12, .08);
}

/* #11 paylaş butonu (ikincil) */
.ev-share-package {
    width: 100%; margin-top: 10px; border: 1px solid var(--ev-line); background: #fff;
    color: var(--ev-ink); border-radius: 10px; padding: 11px; font-weight: 600; font-size: 13.5px;
    cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    transition: border-color .15s ease, color .15s ease;
}
.ev-share-package:hover { border-color: var(--ev-accent); color: var(--ev-accent); }
