/* ============================================================
   1- BUNDLE FULLPAGE CSS
   Hedef: catalog/view/theme/so-emarket/css/bundle_fullpage.css
   ============================================================
   BUNDLE FULL PAGE - PRODUCTION CSS v1.0
   Konsept 2 - Vertical Builder Full Page
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
    --bg: #f6f7f9;
    --card: #ffffff;
    --text: #1c1e26;
    --text-dim: #6b7085;
    --text-muted: #9ca0b3;
    --green: #16a34a;
    --green-light: #dcfce7;
    --green-dark: #15803d;
    --green-glow: rgba(22, 163, 74, 0.12);
    --red: #dc2626;
    --red-light: #fef2f2;
    --orange: #ea580c;
    --blue: #2563eb;
    --purple: #7c3aed;
    --purple-light: #ede9fe;
    --cyan: #0891b2;
    --cyan-light: #e0f7fa;
    --border: #e8eaef;
    --border-hover: #d1d5e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-green: 0 4px 20px rgba(22, 163, 74, 0.2);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --font: 'Outfit', sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); font-family: var(--font); color: var(--text); -webkit-font-smoothing: antialiased; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.bp-breadcrumb { padding: 14px 0; font-size: 12px; color: var(--text-muted); }
.bp-breadcrumb a { color: var(--text-dim); text-decoration: none; }
.bp-breadcrumb a:hover { color: var(--green); }
.bp-breadcrumb span { margin: 0 6px; }

/* ============================================================
   CONTAINER
   ============================================================ */
.bp-container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   ★ FLASH SALE BANNER
   ============================================================ */
.bp-flash-banner {
    background: linear-gradient(90deg, #ff416c, #ff4b2b, #ff416c, #ff4b2b);
    background-size: 300% 100%;
    animation: bp-gradient-move 3s ease infinite;
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 65, 108, 0.35);
    position: relative;
    overflow: hidden;
}
.bp-flash-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: bp-shine 2s ease-in-out infinite;
}
.bp-flash-banner .flash-icon { font-size: 24px; animation: bp-bounce 0.6s ease-in-out infinite alternate; position: relative; z-index: 1; }
.bp-flash-banner .flash-text { font-size: 17px; letter-spacing: 2px; text-transform: uppercase; position: relative; z-index: 1; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.bp-flash-banner .flash-highlight { background: #fff; color: #ff416c; padding: 6px 16px; border-radius: 25px; font-weight: 800; font-size: 13px; position: relative; z-index: 1; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.bp-flash-banner .sparkle { position: absolute; width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: bp-sparkle 2s ease-in-out infinite; }
.bp-flash-banner .sparkle:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; }
.bp-flash-banner .sparkle:nth-child(2) { top: 70%; left: 15%; animation-delay: 0.4s; }
.bp-flash-banner .sparkle:nth-child(3) { top: 25%; right: 10%; animation-delay: 0.8s; }
.bp-flash-banner .sparkle:nth-child(4) { top: 65%; right: 20%; animation-delay: 1.2s; }

@keyframes bp-gradient-move { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes bp-shine { 0% { transform: translateX(-100%) rotate(45deg); } 100% { transform: translateX(100%) rotate(45deg); } }
@keyframes bp-bounce { 0% { transform: translateY(0) rotate(-5deg); } 100% { transform: translateY(-4px) rotate(5deg); } }
@keyframes bp-sparkle { 0%, 100% { opacity: 0; transform: scale(0); } 50% { opacity: 1; transform: scale(1); } }

/* ============================================================
   HERO SECTION
   ============================================================ */
.bp-hero {
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}
.bp-hero-inner {
    display: grid;
    grid-template-columns: 520px 1fr;
    min-height: 480px;
}
.bp-hero-image {
    background: #f8f9fb;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-right: 1px solid var(--border);
    flex-direction: column;
    overflow: hidden;
}
.bp-hero-image .main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bp-hero-image .placeholder-visual {
    width: 280px; height: 220px;
    background: linear-gradient(135deg, rgba(22,163,74,0.06), rgba(22,163,74,0.02));
    border: 2px dashed rgba(22,163,74,0.15);
    border-radius: var(--radius-md);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.bp-hero-image .placeholder-visual i { font-size: 48px; color: rgba(22,163,74,0.2); }
.bp-hero-image .placeholder-visual span { font-size: 13px; color: var(--text-muted); font-weight: 500; }

.bp-hero-thumbs { display: flex; gap: 8px; position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 2; }
.bp-hero-thumbs .thumb {
    width: 70px; height: 70px; border: 2px solid var(--border); border-radius: 8px;
    overflow: hidden; cursor: pointer; transition: all 0.2s; background: #fff;
    display: flex; align-items: center; justify-content: center;
}
.bp-hero-thumbs .thumb.active, .bp-hero-thumbs .thumb:hover { border-color: var(--green); }
.bp-hero-thumbs .thumb i { font-size: 18px; color: #ccc; }

.bp-hero-info { padding: 28px 32px; display: flex; flex-direction: column; }

/* Badges */
.bp-badges { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.bp-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 13px; border-radius: 7px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.2px; text-transform: uppercase;
}
.bp-badge-bundle { background: var(--green); color: #fff; }
.bp-badge-discount { background: var(--red-light); color: var(--red); border: 1px solid rgba(220,38,38,0.15); }
.bp-badge-stock { background: var(--green-light); color: var(--green-dark); }

.bp-hero-info h1 { font-size: 24px; font-weight: 800; line-height: 1.25; margin-bottom: 8px; letter-spacing: -0.3px; }
.bp-hero-info .bp-short-desc { color: var(--text-dim); font-size: 13px; line-height: 1.65; margin-bottom: 16px; flex: 1; }

/* ★ İndirim Badge (mor) */
.bp-discount-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff; padding: 10px 20px; border-radius: 50px;
    font-weight: 700; font-size: 14px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
    animation: bp-pulse-badge 2s ease-in-out infinite;
    position: relative; overflow: hidden; margin-bottom: 14px;
}
.bp-discount-badge::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: bp-shine 3s ease-in-out infinite;
}
.bp-discount-badge i { font-size: 18px; animation: bp-wiggle 1s ease-in-out infinite; position: relative; z-index: 1; }
.bp-discount-badge .discount-text { position: relative; z-index: 1; }
.bp-discount-badge .discount-percent {
    background: #fff; color: #764ba2; padding: 4px 12px; border-radius: 20px;
    font-size: 12px; font-weight: 800; position: relative; z-index: 1;
}

@keyframes bp-pulse-badge { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
@keyframes bp-wiggle { 0%, 100% { transform: rotate(-10deg); } 50% { transform: rotate(10deg); } }

/* Price Box */
.bp-price-box {
    background: linear-gradient(135deg, var(--green-light) 0%, rgba(220,252,231,0.4) 100%);
    border: 1px solid rgba(22,163,74,0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.bp-price-main { font-size: 30px; font-weight: 900; color: var(--green); letter-spacing: -0.5px; line-height: 1; }
.bp-price-old { font-size: 15px; color: var(--text-muted); text-decoration: line-through; font-weight: 500; }
.bp-price-save {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--red); color: #fff; padding: 4px 10px; border-radius: 6px;
    font-size: 12px; font-weight: 700;
}

.bp-meta { display: flex; gap: 20px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-dim); }
.bp-meta-item { display: flex; align-items: center; gap: 6px; }
.bp-meta-item i { color: var(--text-muted); font-size: 13px; }

/* ============================================================
   ★ PROGRESS BAR (Eşik İndirimi)
   ============================================================ */
.bp-progress-section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
}
.bp-progress-head {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px;
}
.bp-progress-title {
    font-size: 14px; font-weight: 700; color: var(--text);
    display: flex; align-items: center; gap: 8px;
}
.bp-progress-title i { color: #f59e0b; }
.bp-progress-count { font-size: 13px; color: var(--text-dim); font-weight: 600; }
.bp-progress-count .count-current { color: var(--green); font-weight: 800; font-size: 15px; font-family: var(--mono); }

.bp-progress-track {
    position: relative; height: 10px; background: #edf0f4; border-radius: 10px;
    overflow: hidden; margin-bottom: 10px;
}
.bp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), #10b981);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}
.bp-progress-fill::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: bp-shimmer 2s ease-in-out infinite;
}
@keyframes bp-shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(200%); } }

.bp-milestones { display: flex; justify-content: space-between; gap: 4px; }
.bp-milestone {
    display: flex; flex-direction: column; align-items: center;
    font-size: 10px; color: var(--text-muted); transition: all 0.3s;
}
.bp-milestone-dot {
    width: 10px; height: 10px; border-radius: 50%; background: #ddd;
    margin-bottom: 4px; transition: all 0.3s; border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.bp-milestone.reached .bp-milestone-dot { background: var(--green); box-shadow: 0 0 0 3px var(--green-glow); }
.bp-milestone.reached { color: var(--green); font-weight: 700; }

.bp-progress-hint {
    text-align: center; margin-top: 8px; font-size: 12px; color: var(--orange); font-weight: 600;
}
.bp-progress-hint i { margin-right: 4px; }

/* ============================================================
   ★ AKSESUAR REHBERİ
   ============================================================ */
.bp-accessory-guide {
    background: var(--card);
    border: 2px solid var(--cyan);
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(8, 145, 178, 0.1);
}
.bp-accessory-header {
    background: linear-gradient(135deg, var(--cyan) 0%, #0e7490 100%);
    color: #fff; padding: 14px 20px;
    display: flex; align-items: center; gap: 12px;
    cursor: pointer; user-select: none;
}
.bp-accessory-header .guide-icon { font-size: 22px; }
.bp-accessory-header .guide-title { flex: 1; font-weight: 700; font-size: 14px; }
.bp-accessory-header .guide-cam-count {
    background: rgba(255,255,255,0.2); padding: 3px 12px; border-radius: 15px;
    font-size: 12px; font-weight: 600;
}
.bp-accessory-header .guide-chevron { font-size: 13px; transition: transform 0.3s; }

.bp-accessory-body { padding: 18px 20px; }

.bp-acc-camera-row {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 12px 14px; background: #f8f9fa; border-radius: 10px;
    margin-bottom: 10px; border-left: 4px solid var(--cyan);
}
.bp-acc-camera-name { font-weight: 700; font-size: 13px; color: var(--text); display: flex; align-items: center; gap: 6px; }
.bp-acc-camera-name .cam-icon { color: var(--cyan); }
.bp-acc-qty-badge {
    display: inline-flex; align-items: center; gap: 3px;
    background: var(--cyan); color: #fff; font-size: 10px; font-weight: 700;
    padding: 1px 7px; border-radius: 10px;
}

.bp-acc-needs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.bp-acc-chip {
    display: inline-flex; align-items: center; gap: 5px;
    background: #fff; border: 1px solid #dee2e6; border-radius: 20px;
    padding: 5px 12px; font-size: 12px; font-weight: 600; color: #495057;
}
.bp-acc-chip i { font-size: 11px; color: var(--cyan); }
.bp-acc-chip .chip-qty {
    background: #e9ecef; color: #495057; font-size: 10px; font-weight: 800;
    padding: 1px 6px; border-radius: 8px;
}

/* Alt seçenekler */
.bp-acc-alt-section { margin-top: 10px; padding-top: 10px; border-top: 1px dashed #dee2e6; }
.bp-acc-alt-label { font-size: 11px; color: #6c757d; font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 5px; }
.bp-acc-alt-label i { color: #f59e0b; }
.bp-acc-alt-option {
    display: flex; align-items: center; gap: 8px; padding: 8px 12px;
    background: #fff; border: 2px solid #e9ecef; border-radius: 8px;
    cursor: pointer; transition: all 0.2s; font-size: 12px; margin-bottom: 6px;
}
.bp-acc-alt-option:hover { border-color: var(--cyan); background: var(--cyan-light); }
.bp-acc-alt-option.active { border-color: var(--cyan); background: var(--cyan-light); }

/* Toplam aksesuar özeti */
.bp-acc-total {
    margin-top: 14px; padding: 12px 16px;
    background: linear-gradient(135deg, var(--cyan-light), #cffafe);
    border-radius: 10px; border: 1px solid #a5f3fc;
}
.bp-acc-total-title { font-size: 13px; font-weight: 700; color: #155e75; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.bp-acc-total-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.bp-acc-total-chip {
    display: inline-flex; align-items: center; gap: 5px;
    background: #fff; border: 1px solid var(--cyan); border-radius: 20px;
    padding: 6px 14px; font-size: 13px; font-weight: 700; color: #155e75;
}
.bp-acc-total-chip .total-qty {
    background: var(--cyan); color: #fff; font-size: 11px; font-weight: 800;
    padding: 2px 8px; border-radius: 10px;
}

/* ============================================================
   BUILDER HEADER
   ============================================================ */
.bp-builder { margin-bottom: 16px; }
.bp-builder-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; padding: 0 4px;
}
.bp-builder-header h2 {
    font-size: 20px; font-weight: 800; display: flex; align-items: center; gap: 10px;
}
.bp-builder-header h2 .icon-wrap {
    width: 36px; height: 36px; background: var(--green); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: #fff;
    font-size: 16px; box-shadow: var(--shadow-green);
}

/* Mini Progress (üst bar) */
.bp-mini-progress {
    display: flex; align-items: center; gap: 10px;
    background: var(--card); padding: 8px 16px; border-radius: 30px;
    border: 1px solid var(--border); font-size: 12px; font-weight: 600; color: var(--text-dim);
}
.bp-mini-progress .bar { width: 80px; height: 6px; background: #eee; border-radius: 6px; overflow: hidden; }
.bp-mini-progress .bar-fill { height: 100%; background: var(--green); border-radius: 6px; transition: width 0.5s ease; }
.bp-mini-progress .count { color: var(--green); font-weight: 700; font-family: var(--mono); }

/* ============================================================
   STEP CARD
   ============================================================ */
.bp-step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.bp-step:hover { box-shadow: var(--shadow-md); }
.bp-step.active { border-color: rgba(22, 163, 74, 0.3); box-shadow: 0 0 0 3px var(--green-glow), var(--shadow-md); }
.bp-step.completed .bp-step-num { background: var(--green); color: #fff; }

/* Step Header */
.bp-step-head {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 22px; cursor: pointer; transition: background 0.15s; user-select: none;
}
.bp-step-head:hover { background: rgba(0,0,0,0.015); }

.bp-step-num {
    width: 42px; height: 42px; border-radius: 12px; background: #edf0f4;
    color: var(--text-muted); display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 15px; flex-shrink: 0; transition: all 0.3s; font-family: var(--mono);
}
.bp-step.active .bp-step-num { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }

.bp-step-title-area { flex: 1; min-width: 0; }
.bp-step-title-area h3 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.bp-step-subtitle { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.bp-step.completed .bp-step-subtitle { color: var(--green); }

.bp-step-actions { display: flex; align-items: center; gap: 8px; }

/* Selection type badge */
.bp-sel-type-badge {
    font-size: 10px; padding: 3px 8px; border-radius: 5px;
    font-weight: 700; white-space: nowrap;
}
.bp-sel-type-badge.radio { background: var(--cyan-light); color: var(--cyan); }
.bp-sel-type-badge.checkbox { background: var(--green-light); color: var(--green); }

/* Clear button */
.bp-btn-clear {
    display: none; align-items: center; gap: 4px;
    padding: 4px 10px; font-size: 11px; font-weight: 600;
    color: var(--red); background: #fff; border: 1px solid var(--red);
    border-radius: 6px; cursor: pointer; transition: all 0.2s;
}
.bp-btn-clear:hover { background: var(--red); color: #fff; }
.bp-btn-clear.visible { display: inline-flex; }

.bp-step-chevron {
    width: 28px; height: 28px; border-radius: 8px; background: rgba(0,0,0,0.03);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 12px; transition: all 0.35s; flex-shrink: 0;
}
.bp-step.open .bp-step-chevron { transform: rotate(180deg); background: var(--green-light); color: var(--green); }

/* ★ Selection Summary (accordion kapalıyken) */
.bp-sel-summary {
    display: none; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 10px; margin: 0 22px 14px; font-size: 13px;
    border: 1px solid #a5d6a7;
    animation: bp-summary-in 0.3s ease;
}
@keyframes bp-summary-in { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
.bp-step.collapsed.has-selection .bp-sel-summary { display: flex; }

.bp-sel-summary .sel-icon {
    flex-shrink: 0; width: 28px; height: 28px;
    background: var(--green); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.bp-sel-summary .sel-items { flex: 1; display: flex; flex-wrap: wrap; gap: 4px; }
.bp-sel-summary .sel-chip {
    display: inline-flex; align-items: center; gap: 4px;
    background: #fff; padding: 3px 10px; border-radius: 12px;
    font-size: 11px; font-weight: 600; border: 1px solid #c8e6c9;
}
.bp-sel-summary .sel-chip .sq { background: var(--green); color: #fff; font-size: 9px; font-weight: 800; padding: 1px 5px; border-radius: 8px; }
.bp-sel-summary .sel-chip .sp { color: var(--green); font-weight: 700; font-size: 10px; font-family: var(--mono); }
.bp-sel-summary .sel-edit {
    flex-shrink: 0; display: flex; align-items: center; gap: 4px;
    color: var(--cyan); font-size: 11px; font-weight: 700;
    cursor: pointer; padding: 4px 10px; border-radius: 15px;
    border: 1px solid var(--cyan); background: #fff; transition: all 0.2s;
}
.bp-sel-summary .sel-edit:hover { background: var(--cyan); color: #fff; }

/* Step Body */
.bp-step-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
    padding: 0 22px;
}
.bp-step.open .bp-step-body { max-height: 800px; padding: 0 22px 22px; }
.bp-step.open .bp-step-body::before { content: ''; display: block; height: 1px; background: var(--border); margin-bottom: 18px; }

/* ============================================================
   OPTION CARDS
   ============================================================ */
.bp-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 10px;
}

.bp-opt {
    border: 2px solid var(--border); border-radius: var(--radius-md);
    padding: 14px 12px 12px; text-align: center; cursor: pointer;
    transition: all 0.25s; position: relative; background: var(--card);
}
.bp-opt:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bp-opt.selected { border-color: var(--green); background: linear-gradient(170deg, var(--green-light) 0%, #fff 60%); box-shadow: 0 0 0 3px var(--green-glow); }
.bp-opt.has-discount { border-color: #fbbf24; }
.bp-opt.has-discount:hover, .bp-opt.has-discount.selected { border-color: var(--green); }

/* Check mark */
.bp-opt-check {
    position: absolute; top: 8px; right: 8px;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--green); color: #fff; font-size: 10px;
    display: none; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(22,163,74,0.3);
}
.bp-opt.selected .bp-opt-check { display: flex; animation: bp-popIn 0.3s cubic-bezier(0.68,-0.55,0.27,1.55); }
@keyframes bp-popIn { 0%{transform:scale(0)} 100%{transform:scale(1)} }

/* ★ Eye icon (ürün inceleme) */
.bp-opt-eye {
    position: absolute; top: 6px; left: 6px;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    cursor: pointer; transition: all 0.25s; z-index: 2;
}
.bp-opt-eye i {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(8,145,178,0.1); border: 1.5px solid #0891b2;
    color: #0891b2; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
}
.bp-opt-eye span {
    font-size: 9px; font-weight: 700; color: #0891b2;
    text-transform: uppercase; letter-spacing: 0.3px;
}
.bp-opt-eye:hover i { background: #0891b2; color: #fff; transform: scale(1.1); box-shadow: 0 3px 10px rgba(8,145,178,0.35); }
.bp-opt-eye:hover span { color: #065a6e; }

/* ★ Ribbon badges (Popüler / Önerilen) */
.bp-opt-ribbon {
    position: absolute; top: -2px; right: -2px; z-index: 2;
    font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 3px 10px 3px 12px; border-radius: 0 var(--radius-md) 0 10px; color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 4px;
}
.bp-opt-ribbon.popular { background: linear-gradient(135deg, #ff6b35, #f7c948); }
.bp-opt-ribbon.recommended { background: linear-gradient(135deg, #667eea, #764ba2); }
.bp-opt-ribbon.both { background: linear-gradient(135deg, #ff6b35, #764ba2); }

/* Thumbnail */
.bp-opt-img {
    width: 80px; height: 65px; border-radius: 8px; margin: 0 auto 10px;
    overflow: hidden; background: #f5f6f8;
    display: flex; align-items: center; justify-content: center;
}
.bp-opt-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bp-opt-img i { font-size: 24px; color: #d0d3dc; }

/* Name with ★ Tooltip */
.bp-opt-name {
    font-size: 11px; font-weight: 600; color: var(--text);
    margin-bottom: 6px; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; min-height: 29px;
}
.bp-opt-tooltip {
    position: relative; display: inline-block; cursor: help;
}
.bp-opt-tooltip .tip-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 14px; height: 14px; border-radius: 50%;
    background: #e0e0e0; color: #666; font-size: 9px; font-weight: 700;
    margin-left: 3px; vertical-align: middle; transition: all 0.2s;
}
.bp-opt-tooltip:hover .tip-icon { background: var(--green); color: #fff; }
.bp-opt-tooltip .tip-content {
    position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) scale(0.9);
    background: #333; color: #fff; font-size: 11px; font-weight: 400; line-height: 1.4;
    padding: 8px 12px; border-radius: 6px; width: 190px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25); opacity: 0; visibility: hidden;
    transition: all 0.25s; z-index: 100; pointer-events: none; text-align: left;
}
.bp-opt-tooltip .tip-content::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: #333; }
.bp-opt-tooltip:hover .tip-content { opacity: 1; visibility: visible; transform: translateX(-50%) scale(1); }

/* Prices */
.bp-opt-old-price { font-size: 11px; color: var(--text-muted); text-decoration: line-through; }
.bp-opt-price { font-size: 14px; font-weight: 800; color: var(--green); font-family: var(--mono); letter-spacing: -0.3px; }
.bp-opt-discount-badge {
    display: inline-block; background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff; font-size: 9px; font-weight: 700; padding: 2px 7px;
    border-radius: 5px; margin-top: 4px;
    animation: bp-pulse-badge 2s ease-in-out infinite;
}

/* Quantity Control */
.bp-opt-qty {
    display: flex; align-items: center; justify-content: center;
    margin-top: 10px; padding-top: 8px; border-top: 1px dashed var(--border);
}
.bp-qty-wrap {
    display: flex; align-items: center;
    border: 2px solid var(--border); border-radius: 10px; overflow: hidden;
    background: #fff;
}
.bp-qty-wrap button {
    width: 38px; height: 36px; border: none; background: #f5f5f5;
    color: #333; font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s; font-family: var(--mono);
    font-weight: 700; padding: 0; margin: 0; line-height: 1;
}
.bp-qty-wrap button:hover { background: var(--green-light); color: var(--green); }
.bp-qty-wrap input {
    width: 48px; height: 36px; border: none;
    border-left: 1px solid var(--border); border-right: 1px solid var(--border);
    text-align: center; font-size: 15px; font-weight: 700;
    font-family: var(--mono); color: var(--text); background: #fff;
    -moz-appearance: textfield; padding: 0; margin: 0;
}
.bp-qty-wrap input::-webkit-outer-spin-button,
.bp-qty-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ============================================================
   ★ SEÇİM ÖZETİ (Chips)
   ============================================================ */
.bp-summary-section {
    background: linear-gradient(135deg, var(--green-light) 0%, rgba(220,252,231,0.3) 100%);
    border: 1px solid rgba(22,163,74,0.12);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    margin-bottom: 14px;
}
.bp-summary-section h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.bp-summary-section h4 i { color: var(--green); }
.bp-summary-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.bp-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; background: #fff;
    border: 1px solid rgba(22,163,74,0.12); border-radius: var(--radius-sm);
    font-size: 12px; font-weight: 600;
}
.bp-chip .chip-qty { background: var(--green); color: #fff; padding: 1px 6px; border-radius: 4px; font-size: 10px; font-weight: 700; font-family: var(--mono); }
.bp-chip .chip-price { color: var(--green); font-weight: 700; font-family: var(--mono); }

/* ============================================================
   ★ FİYAT ÖZETİ (Detaylı)
   ============================================================ */
.bp-price-summary {
    background: var(--card);
    border: 2px solid var(--green);
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.bp-price-summary-title {
    padding: 14px 22px;
    font-size: 15px; font-weight: 700;
    border-bottom: 1px dashed var(--border);
    display: flex; align-items: center; gap: 8px;
}
.bp-price-summary-title i { color: var(--green); }

.bp-ps-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 22px; border-bottom: 1px dashed #f0f0f0;
}
.bp-ps-row:last-child { border-bottom: none; }
.bp-ps-label { font-size: 13px; color: var(--text-dim); }
.bp-ps-value { font-size: 14px; font-weight: 600; color: var(--text); font-family: var(--mono); }

/* Karşılaştırma satırı */
.bp-ps-compare {
    background: linear-gradient(135deg, #fff3cd, #ffeeba);
    position: relative;
}
.bp-ps-compare .bp-ps-label { color: #856404 !important; font-weight: 600; }
.bp-ps-compare .bp-ps-value { color: #856404 !important; text-decoration: line-through; }
.bp-ps-compare .vs-tag {
    position: absolute; right: 22px; top: -8px;
    background: #fbbf24; color: #856404; font-size: 9px; font-weight: 800;
    padding: 2px 8px; border-radius: 10px; text-transform: uppercase;
}

/* Eşik indirimi satırı */
.bp-ps-threshold {
    background: linear-gradient(135deg, var(--purple-light), #ddd6fe);
}
.bp-ps-threshold .bp-ps-label { color: var(--purple) !important; font-weight: 600; }
.bp-ps-threshold .bp-ps-value { color: var(--purple) !important; font-weight: 700 !important; }

/* Tasarruf satırı */
.bp-ps-savings {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    animation: bp-highlight-savings 2s ease-in-out infinite;
}
@keyframes bp-highlight-savings { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.bp-ps-savings .bp-ps-label { color: #166534 !important; font-weight: 600; }
.bp-ps-savings .bp-ps-value { color: var(--green) !important; font-weight: 800 !important; font-size: 15px !important; }
.bp-ps-savings .savings-icon { animation: bp-wiggle 1s ease-in-out infinite; margin-right: 4px; }

/* Toplam satırı */
.bp-ps-total {
    background: linear-gradient(135deg, var(--green), #10b981);
    padding: 16px 22px !important;
}
.bp-ps-total .bp-ps-label, .bp-ps-total .bp-ps-value { color: #fff !important; font-size: 17px !important; }

.bp-ps-kdv {
    text-align: right; padding: 8px 22px 12px; background: #f8f9fa;
    font-size: 11px; color: #999; font-style: italic;
}

/* ============================================================
   TABS
   ============================================================ */
.bp-tabs {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; margin-bottom: 100px; box-shadow: var(--shadow-sm);
}
.bp-tabs-nav {
    display: flex; border-bottom: 1px solid var(--border); padding: 0 8px; overflow-x: auto;
}
.bp-tab-btn {
    padding: 14px 22px; border: none; background: transparent;
    font-family: var(--font); font-size: 13px; font-weight: 600;
    color: var(--text-dim); cursor: pointer; position: relative; white-space: nowrap; transition: color 0.2s;
}
.bp-tab-btn:hover { color: var(--text); }
.bp-tab-btn.active { color: var(--green); }
.bp-tab-btn.active::after { content: ''; position: absolute; bottom: -1px; left: 12px; right: 12px; height: 2px; background: var(--green); border-radius: 2px; }
.bp-tab-content { padding: 24px; display: none; }
.bp-tab-content.active { display: block; }
.bp-tab-content p { font-size: 14px; color: var(--text-dim); line-height: 1.75; }

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.bp-sticky {
    position: fixed; bottom: -100px; left: 0; right: 0;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
    border-top: 1px solid var(--border); padding: 12px 0; z-index: 9990;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.06);
    transition: bottom 0.4s cubic-bezier(0.4,0,0.2,1);
}
.bp-sticky.visible { bottom: 0; }
.bp-sticky-inner {
    max-width: 1400px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 20px;
}
.bp-sticky-product { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.bp-sticky-product .mini-thumb { width: 44px; height: 44px; border-radius: 10px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bp-sticky-product .mini-thumb i { font-size: 18px; color: #ccc; }
.bp-sticky-product .mini-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.bp-sticky-savings {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--red-light); color: var(--red);
    padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 700;
    font-family: var(--mono); white-space: nowrap;
}
.bp-sticky-price-area { text-align: right; flex-shrink: 0; }
.bp-sticky-price-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; letter-spacing: 0.4px; }
.bp-sticky-price-row { display: flex; align-items: baseline; gap: 8px; justify-content: flex-end; }
.bp-sticky-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.bp-sticky-total { font-size: 24px; font-weight: 900; color: var(--green); font-family: var(--mono); letter-spacing: -0.5px; line-height: 1; }
.bp-sticky-cart {
    padding: 14px 32px; background: var(--green); color: #fff; border: none;
    border-radius: 13px; font-size: 15px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; gap: 10px; font-family: var(--font);
    transition: all 0.25s; white-space: nowrap; flex-shrink: 0;
}
.bp-sticky-cart:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-green); }

/* ============================================================
   ★ TOAST BİLDİRİMLERİ
   ============================================================ */
/* ★ HAVALE İNDİRİM BOX */
#bp-bundle-page .bp-havale-box {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 1px solid #a5d6a7; border-radius: 10px;
    padding: 14px 20px; margin-top: 16px; font-size: 14px;
}
#bp-bundle-page .bp-havale-box i { font-size: 20px; color: #2e7d32; }
#bp-bundle-page .bp-havale-box strong { color: #1b5e20; }
#bp-bundle-page .bp-havale-box .bp-havale-price { font-weight: 700; color: #2e7d32; font-size: 16px; }
#bp-bundle-page .bp-havale-box small { color: #555; flex-basis: 100%; margin-top: 4px; }

/* ★ ÜRÜN SEÇENEKLERİ */
#bp-bundle-page .bp-options-section {
    background: #fff; border-radius: 14px; padding: 24px; margin-top: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06); border: 1px solid #e8e8e8;
}
#bp-bundle-page .bp-options-section h4 { font-size: 16px; font-weight: 700; margin: 0 0 16px; color: #333; }
#bp-bundle-page .bp-options-section .form-group { margin-bottom: 16px; }
#bp-bundle-page .bp-options-section .form-control { border-radius: 8px; border: 1.5px solid #ddd; padding: 10px 14px; font-size: 14px; height: auto; }
#bp-bundle-page .bp-options-section .form-control:focus { border-color: var(--primary, #ff6600); box-shadow: 0 0 0 3px rgba(255,102,0,.12); }
#bp-bundle-page .bp-options-section .control-label { font-weight: 600; margin-bottom: 6px; display: block; color: #444; font-size: 14px; }
#bp-bundle-page .bp-options-section .radio,
#bp-bundle-page .bp-options-section .checkbox { margin: 6px 0; padding: 8px 12px; border-radius: 8px; transition: background .2s; }
#bp-bundle-page .bp-options-section .radio:hover,
#bp-bundle-page .bp-options-section .checkbox:hover { background: #f5f5f5; }

/* ★ SEPET SECTION */
#bp-bundle-page .bp-cart-section {
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%) !important;
    border: 2px solid #ff6600 !important;
    border-radius: 16px !important;
    padding: 24px !important;
    margin-top: 24px !important;
    box-shadow: 0 4px 20px rgba(255,102,0,.1) !important;
}
#bp-bundle-page .bp-cart-inner {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

/* Quantity */
#bp-bundle-page .bp-quantity-box {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
#bp-bundle-page .bp-quantity-box label {
    font-weight: 700 !important;
    color: #333 !important;
    white-space: nowrap !important;
    font-size: 15px !important;
    margin-bottom: 0 !important;
}
#bp-bundle-page .bp-quantity-control {
    display: flex !important;
    align-items: center !important;
    border: 2px solid #ddd !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #fff !important;
}
#bp-bundle-page .bp-qty-btn {
    width: 42px !important; height: 42px !important;
    border: none !important; background: #f5f5f5 !important;
    cursor: pointer !important;
    font-size: 14px !important; color: #333 !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    transition: all .2s !important;
    padding: 0 !important; margin: 0 !important;
    line-height: 1 !important;
}
#bp-bundle-page .bp-qty-btn:hover { background: #ff6600 !important; color: #fff !important; }
#bp-bundle-page .bp-qty-input {
    width: 60px !important; height: 42px !important;
    border: none !important; border-left: 1px solid #eee !important; border-right: 1px solid #eee !important;
    text-align: center !important;
    font-size: 16px !important; font-weight: 700 !important; color: #333 !important;
    -moz-appearance: textfield !important;
    padding: 0 !important; margin: 0 !important;
    background: #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
#bp-bundle-page .bp-qty-input::-webkit-outer-spin-button,
#bp-bundle-page .bp-qty-input::-webkit-inner-spin-button { -webkit-appearance: none !important; margin: 0 !important; }

/* Cart Buttons */
#bp-bundle-page .bp-cart-buttons {
    display: flex !important;
    gap: 12px !important;
    flex: 1 !important;
    min-width: 280px !important;
}
#bp-bundle-page .bp-btn {
    flex: 1 !important;
    padding: 14px 24px !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all .3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-height: 52px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.2 !important;
}
#bp-bundle-page .bp-btn-cart {
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255,102,0,.3) !important;
}
#bp-bundle-page .bp-btn-cart:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255,102,0,.4) !important;
}
#bp-bundle-page .bp-btn-checkout {
    background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(33,150,243,.3) !important;
}
#bp-bundle-page .bp-btn-checkout:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(33,150,243,.4) !important;
}
#bp-bundle-page .bp-btn:disabled { opacity: .6 !important; cursor: not-allowed !important; transform: none !important; }

/* Extra Links */
#bp-bundle-page .bp-extra-links { display: flex; gap: 16px; flex-basis: 100%; margin-top: 8px; }
#bp-bundle-page .bp-extra-link { color: #666; font-size: 13px; text-decoration: none; transition: color .2s; }
#bp-bundle-page .bp-extra-link:hover { color: #ff6600; }
#bp-bundle-page .bp-extra-link i { margin-right: 4px; }

/* ★ YORUM YAZMA FORMU (tab içi) */
#bp-bundle-page .bp-star-rating { display: inline-flex; gap: 4px; font-size: 24px; direction: ltr; }
#bp-bundle-page .bp-star-label { cursor: pointer; color: #ddd; transition: all .2s; }
#bp-bundle-page .bp-star-label.active,
#bp-bundle-page .bp-star-label.hovered { color: #ffc107 !important; }

/* Responsive cart section */
@media (max-width: 768px) {
    #bp-bundle-page .bp-cart-inner { flex-direction: column !important; align-items: stretch !important; }
    #bp-bundle-page .bp-cart-buttons { min-width: auto !important; flex-direction: column !important; }
    #bp-bundle-page .bp-quantity-box { justify-content: center !important; }
    #bp-bundle-page .bp-extra-links { justify-content: center !important; }
    #bp-bundle-page .bp-havale-box { justify-content: center !important; text-align: center !important; }
}

/* ★ TASARRUF MOTİVATÖR BAR */
.bp-savings-bar {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
    border: 2px solid #86efac; border-radius: 16px;
    padding: 20px 24px; margin-top: 16px;
    animation: savingsSlideIn 0.4s ease;
}
@keyframes savingsSlideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.bp-savings-header {
    display: flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 700; color: #166534; margin-bottom: 14px;
}
.bp-savings-header i { font-size: 20px; color: #22c55e; }

.bp-savings-compare {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    justify-content: center;
}
.bp-savings-col { text-align: center; flex: 1; min-width: 120px; }
.bp-savings-col-label { font-size: 11px; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.bp-savings-old .bp-savings-col-price { font-size: 18px; font-weight: 700; color: #dc2626; text-decoration: line-through; }
.bp-savings-new .bp-savings-col-price { font-size: 22px; font-weight: 800; color: #16a34a; }
.bp-savings-arrow { color: #9ca3af; font-size: 18px; }

.bp-savings-badge-wrap { display: flex; align-items: center; }
.bp-savings-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff;
    border-radius: 14px; padding: 10px 18px;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    box-shadow: 0 4px 15px rgba(34,197,94,0.35);
    animation: savingsPulse 2s ease-in-out infinite;
    min-width: 100px;
}
@keyframes savingsPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }
.bp-savings-badge i { font-size: 14px; }
.bp-savings-badge span { font-size: 18px; font-weight: 800; }
.bp-savings-badge small { font-size: 9px; font-weight: 700; letter-spacing: 1px; opacity: 0.9; }

.bp-savings-progress-wrap {
    display: flex; align-items: center; gap: 10px; margin-top: 14px;
}
.bp-savings-progress {
    flex: 1; height: 8px; background: #e5e7eb; border-radius: 4px; overflow: hidden;
}
.bp-savings-progress-fill {
    height: 100%; background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 4px; transition: width 0.6s ease;
}
.bp-savings-pct { font-size: 12px; font-weight: 700; color: #16a34a; white-space: nowrap; }

/* ★ UYUMLULUK UYARISI */
.bp-compat-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b; border-radius: 14px;
    padding: 16px 20px; margin-top: 12px;
    display: flex; align-items: flex-start; gap: 12px;
    animation: compatShake 0.5s ease;
    position: relative;
}
@keyframes compatShake {
    0%, 100% { transform: translateX(0); }
    15%, 45%, 75% { transform: translateX(-4px); }
    30%, 60% { transform: translateX(4px); }
}
.bp-compat-icon { font-size: 24px; color: #d97706; flex-shrink: 0; margin-top: 2px; }
.bp-compat-content { flex: 1; }
.bp-compat-content strong { color: #92400e; font-size: 14px; display: block; margin-bottom: 4px; }
.bp-compat-content p { color: #78350f; font-size: 13px; line-height: 1.5; margin: 0; }
.bp-compat-close {
    background: none; border: none; color: #92400e; font-size: 16px;
    cursor: pointer; padding: 4px; opacity: 0.6; transition: opacity 0.2s;
    position: absolute; top: 8px; right: 10px;
}
.bp-compat-close:hover { opacity: 1; }

@media (max-width: 768px) {
    .bp-savings-compare { flex-direction: column; gap: 8px; }
    .bp-savings-arrow { transform: rotate(90deg); }
    .bp-compat-warning { flex-direction: column; text-align: center; }
}

/* ★ KEYWORD BADGES (2MP, 4MP, SESLİ, RENKLİ etc.) */
.bp-keyword-badges {
    display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; justify-content: center;
}
.bp-kw-badge {
    display: inline-flex; align-items: center;
    padding: 3px 8px; border-radius: 6px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.3px;
    color: #fff; white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}
.bp-kw-badge:hover { transform: translateY(-1px) scale(1.05); box-shadow: 0 3px 8px rgba(0,0,0,0.2); }

/* MP badges - each has unique gradient */
.bp-kw-2mp { background: linear-gradient(135deg, #667eea, #764ba2); }
.bp-kw-4mp { background: linear-gradient(135deg, #f7971e, #ffd200); color: #333; }
.bp-kw-5mp { background: linear-gradient(135deg, #f093fb, #f5576c); }
.bp-kw-6mp { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.bp-kw-8mp { background: linear-gradient(135deg, #43e97b, #38f9d7); color: #1a5e30; }
.bp-kw-12mp { background: linear-gradient(135deg, #fa709a, #fee140); color: #5e1a30; }

/* Feature badges */
.bp-kw-renkli { background: linear-gradient(135deg, #ff6b6b, #ffd93d, #6bcb77, #4d96ff); background-size: 200% 200%; animation: rainbowShift 3s ease infinite; }
.bp-kw-sesli { background: linear-gradient(135deg, #0093E9, #80D0C7); }
.bp-kw-starlight { background: linear-gradient(135deg, #2d1b69, #5b247a, #1de9b6); animation: shimmer 2s infinite; }
.bp-kw-kanal { background: linear-gradient(135deg, #536976, #292E49); }

/* Hero page badges (bigger) */
.bp-hero-badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 12px; }
.bp-kw-hero { font-size: 12px; padding: 4px 12px; border-radius: 8px; }

@keyframes rainbowShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes shimmer { 0%, 100% { opacity: 1; } 50% { opacity: 0.85; box-shadow: 0 0 12px rgba(29,233,182,0.4); } }

.bp-toast-container {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    z-index: 99999; display: flex; flex-direction: column; align-items: center; gap: 8px;
    pointer-events: none;
}
.bp-toast {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 50px;
    font-size: 14px; font-weight: 700; color: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 0 2px rgba(255,255,255,0.2);
    pointer-events: auto; white-space: nowrap;
    animation: bp-toast-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    background: linear-gradient(135deg, #333, #555);
}
.bp-toast.success { background: linear-gradient(135deg, #16a34a, #22c55e); box-shadow: 0 8px 30px rgba(22,163,74,0.5), 0 0 0 2px rgba(255,255,255,0.2); }
.bp-toast.savings { background: linear-gradient(135deg, var(--green), #10b981); }
.bp-toast.threshold { background: linear-gradient(135deg, var(--purple), #a855f7); }
.bp-toast.warning { background: linear-gradient(135deg, var(--red), #ef4444); }
.bp-toast.error { background: linear-gradient(135deg, #dc2626, #ef4444); box-shadow: 0 8px 30px rgba(220,38,38,0.5), 0 0 0 2px rgba(255,255,255,0.2); }
.bp-toast.total { background: linear-gradient(135deg, #667eea, #764ba2); }
.bp-toast .toast-icon { font-size: 20px; }
.bp-toast .toast-text { display: flex; flex-direction: column; line-height: 1.3; }
.bp-toast .toast-title { font-size: 12px; font-weight: 600; opacity: 0.9; }
.bp-toast .toast-amount { font-size: 16px; font-weight: 800; }
@keyframes bp-toast-in { 0%{opacity:0;transform:translateY(-20px) scale(0.9)} 100%{opacity:1;transform:translateY(0) scale(1)} }

/* ============================================================
   ★ ÜRÜN İNCELEME MODALI
   ============================================================ */
.bp-modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
    z-index: 100000; align-items: center; justify-content: center; padding: 20px;
}
.bp-modal-overlay.show { display: flex; }
.bp-modal {
    background: var(--card); border-radius: var(--radius-lg);
    width: 100%; max-width: 750px; max-height: 80vh; overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
    animation: bp-modalUp 0.3s ease;
}
@keyframes bp-modalUp { from{transform:translateY(20px);opacity:0} to{transform:translateY(0);opacity:1} }

.bp-modal-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px; border-bottom: 1px solid var(--border);
    position: sticky; top: 0; background: var(--card); z-index: 2;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.bp-modal-head h4 { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.bp-modal-close {
    width: 34px; height: 34px; border-radius: 10px; border: 1px solid var(--border);
    background: transparent; color: var(--text-dim); font-size: 14px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.bp-modal-close:hover { background: var(--red); color: #fff; border-color: var(--red); transform: rotate(90deg); }
.bp-modal-body { padding: 24px; }
.bp-modal-grid { display: grid; grid-template-columns: 280px 1fr; gap: 24px; }
.bp-modal-img-area { }
.bp-modal-main-img {
    width: 100%; aspect-ratio: 1; border-radius: 12px; overflow: hidden;
    border: 1px solid var(--border); background: #f8f9fa; cursor: zoom-in;
}
.bp-modal-main-img img { width: 100%; height: 100%; object-fit: contain; }
.bp-modal-thumbs { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.bp-modal-thumb {
    width: 50px; height: 50px; border-radius: 6px; border: 2px solid var(--border);
    object-fit: cover; cursor: pointer; transition: all 0.2s;
}
.bp-modal-thumb:hover, .bp-modal-thumb.active { border-color: var(--cyan); }

.bp-modal-info { display: flex; flex-direction: column; gap: 12px; }
.bp-modal-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.bp-modal-badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; color: #fff;
}
.bp-modal-badge.popular { background: linear-gradient(135deg, #ff6b35, #f7c948); }
.bp-modal-badge.recommended { background: linear-gradient(135deg, #667eea, #764ba2); }
.bp-modal-badge.discount { background: linear-gradient(135deg, #ff416c, #ff4b2b); }

.bp-modal-name { font-size: 18px; font-weight: 700; line-height: 1.35; }
.bp-modal-desc { font-size: 13px; color: var(--text-dim); line-height: 1.5; }

.bp-modal-price-block {
    background: linear-gradient(135deg, var(--green-light), rgba(220,252,231,0.5));
    border: 1px solid rgba(22,163,74,0.15); border-radius: 10px; padding: 12px 16px;
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.bp-modal-old-price { font-size: 14px; color: #999; text-decoration: line-through; }
.bp-modal-cur-price { font-size: 22px; font-weight: 800; color: var(--green); }
.bp-modal-disc-badge {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px;
}

.bp-modal-specs { }
.bp-modal-specs h6 { font-size: 13px; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.bp-modal-specs h6 i { color: var(--cyan); }
.bp-modal-spec-row { display: flex; padding: 6px 10px; font-size: 12px; border-bottom: 1px solid #f0f0f0; }
.bp-modal-spec-row:nth-child(even) { background: #f8f9fa; }
.bp-modal-spec-label { flex: 0 0 40%; font-weight: 600; color: #555; }
.bp-modal-spec-value { flex: 1; color: #333; }

.bp-modal-actions {
    display: flex; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border);
}
.bp-modal-btn-detail {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 18px; border-radius: 10px; font-size: 13px; font-weight: 600;
    text-decoration: none; background: #fff; border: 2px solid var(--cyan); color: var(--cyan);
    transition: all 0.2s;
}
.bp-modal-btn-detail:hover { background: var(--cyan); color: #fff; }
.bp-modal-btn-select {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 18px; border-radius: 10px; font-size: 13px; font-weight: 700;
    border: none; cursor: pointer; background: linear-gradient(135deg, var(--green), #10b981);
    color: #fff; box-shadow: 0 3px 12px rgba(22,163,74,0.3); transition: all 0.2s;
}
.bp-modal-btn-select:hover { transform: translateY(-1px); box-shadow: 0 5px 18px rgba(22,163,74,0.4); }

/* ============================================================
   ★ CONFETTİ CANVAS
   ============================================================ */
.bp-confetti-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 999999; }

/* ============================================================
   ★ SHAKE ANİMASYONU (validasyon)
   ============================================================ */
@keyframes bp-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}
.bp-shake { animation: bp-shake 0.6s ease-in-out; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .bp-hero-inner { grid-template-columns: 1fr; }
    .bp-hero-image { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
    .bp-sticky-product { display: none; }
    .bp-modal-grid { grid-template-columns: 1fr; }
    .bp-flash-banner { flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 640px) {
    .bp-options { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .bp-hero-info { padding: 20px; }
    .bp-hero-info h1 { font-size: 20px; }
    .bp-price-main { font-size: 24px; }
    .bp-sticky-total { font-size: 20px; }
    .bp-sticky-cart { padding: 12px 20px; font-size: 14px; }
    .bp-sticky-savings { display: none; }
    .bp-flash-banner .flash-text { font-size: 14px; }
    .bp-acc-camera-row { flex-direction: column; }
    .bp-sel-summary { flex-wrap: wrap; }
}