/* ================================================================
   AVESTA TRAVEL — Boat Detail Page CSS
   Prefix: .bd- / .page-boat-detail
================================================================ */

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.bd-hero {
    position: relative;
    min-height: 78vh;
    padding-top: 84px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.bd-hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.03);
    animation: bd-zoom 20s ease-in-out infinite alternate;
}
@keyframes bd-zoom {
    from { transform: scale(1.03) translateY(0); }
    to   { transform: scale(1.08) translateY(-1%); }
}
.bd-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(2,10,28,.45) 0%,
        rgba(2,10,28,.35) 30%,
        rgba(2,10,28,.55) 60%,
        rgba(2,10,28,.90) 100%
    );
}
.bd-hero-content {
    position: relative; z-index: 3;
    width: 100%;
    padding: 48px 0 52px;
}
.bd-breadcrumb {
    display: flex; align-items: center; gap: 6px;
    font-size: .74rem; color: rgba(255,255,255,.55);
    margin-bottom: 22px; flex-wrap: wrap;
}
.bd-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .18s; }
.bd-breadcrumb a:hover { color: #7dd3fc; }
.bd-breadcrumb-sep { color: rgba(255,255,255,.25); }
.bd-breadcrumb-cur { color: rgba(255,255,255,.75); }
.bd-hero-badges {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 18px; flex-wrap: wrap;
}
.bd-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 999px;
    font-size: .69rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.bd-badge--type {
    background: rgba(14,127,168,.25);
    border: 1px solid rgba(56,189,248,.35);
    color: #7dd3fc;
    backdrop-filter: blur(6px);
}
.bd-badge--featured {
    background: rgba(245,158,11,.22);
    border: 1px solid rgba(245,158,11,.4);
    color: #fcd34d;
}
.bd-hero-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800; line-height: 1.08;
    color: #fff; margin-bottom: 18px;
    letter-spacing: -.015em;
    text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.bd-hero-meta {
    display: flex; align-items: center; gap: 20px;
    flex-wrap: wrap;
}
.bd-hero-meta-item {
    display: flex; align-items: center; gap: 7px;
    font-size: .84rem; color: rgba(255,255,255,.72); font-weight: 500;
}
.bd-hero-meta-item svg { color: #38bdf8; flex-shrink: 0; }
.bd-hero-price-pill {
    margin-left: auto;
    background: rgba(14,127,168,.28);
    border: 1px solid rgba(14,127,168,.5);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 12px 20px;
    display: flex; flex-direction: column; align-items: flex-end;
}
.bd-hero-price-from { font-size: .68rem; color: rgba(255,255,255,.55); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.bd-hero-price-amount { font-size: 1.55rem; font-weight: 800; color: #fff; line-height: 1.1; }
.bd-hero-price-sub { font-size: .72rem; color: rgba(255,255,255,.5); }

/* Galeri thumbnail bar */
.bd-gallery-bar {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
    display: flex; gap: 6px; padding: 0 0 18px;
    overflow-x: auto; scrollbar-width: none;
}
.bd-gallery-bar::-webkit-scrollbar { display: none; }
.bd-gallery-bar-inner {
    display: flex; gap: 6px;
    margin: 0 auto; padding: 0;
}
.bd-gallery-thumb {
    width: 72px; height: 52px; border-radius: 8px;
    overflow: hidden; flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.0);
    cursor: pointer; transition: border-color .18s, transform .18s;
}
.bd-gallery-thumb:hover,
.bd-gallery-thumb.active { border-color: #38bdf8; transform: translateY(-3px); }
.bd-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bd-gallery-more {
    width: 72px; height: 52px; border-radius: 8px;
    background: rgba(2,10,28,.55);
    border: 2px solid rgba(255,255,255,.2);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0; color: #fff;
    font-size: .7rem; font-weight: 700; gap: 3px;
    backdrop-filter: blur(4px);
}

/* ══════════════════════════════════════════════════════
   LAYOUT — 2 kolon
══════════════════════════════════════════════════════ */
.bd-layout {
    padding: 60px 0 80px;
    background: #f8fafc;
}
.bd-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 36px;
    align-items: start;
}
.bd-main {}
.bd-sidebar { position: sticky; top: 100px; }

/* ══════════════════════════════════════════════════════
   QUICK STATS BAR
══════════════════════════════════════════════════════ */
.bd-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
    padding: 20px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 16px rgba(11,20,38,.06);
}
.bd-stat-card {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 14px 8px; border-radius: 12px;
    background: #f8fafc; border: 1px solid #e8f4fa;
    transition: background .2s, border-color .2s;
}
.bd-stat-card:hover { background: #e0f2fe; border-color: #b3e0f2; }
.bd-stat-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: #e0f2fe; color: #0e7fa8;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px; flex-shrink: 0;
}
.bd-stat-value { font-size: 1.05rem; font-weight: 800; color: #0b1426; line-height: 1.1; margin-bottom: 3px; }
.bd-stat-label { font-size: .68rem; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: .05em; }

/* ══════════════════════════════════════════════════════
   SECTIONS (main col)
══════════════════════════════════════════════════════ */
.bd-section {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 16px rgba(11,20,38,.06);
    padding: 28px;
    margin-bottom: 20px;
}
.bd-section:last-child { margin-bottom: 0; }
.bd-section-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 22px; padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}
.bd-section-icon {
    width: 38px; height: 38px; border-radius: 11px;
    background: #e0f2fe; color: #0e7fa8;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bd-section-title { font-size: 1rem; font-weight: 800; color: #0b1426; margin: 0; }
.bd-section-subtitle { font-size: .74rem; color: #94a3b8; margin: 2px 0 0; }

/* Açıklama */
.bd-description {
    font-size: .93rem; color: #475569; line-height: 1.85;
}
.bd-description p { margin-bottom: 14px; }
.bd-description p:last-child { margin-bottom: 0; }

/* ── Quill HTML çıktısı için stiller ── */
.bd-description h1,
.bd-description h2 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.2rem; font-weight: 700; color: #0b1426;
    margin: 1.5em 0 .5em; padding-bottom: .35em;
    border-bottom: 2px solid #e8f4fa;
    line-height: 1.25;
}
.bd-description h3 {
    font-size: 1rem; font-weight: 700; color: #0b1426;
    margin: 1.2em 0 .4em;
}
.bd-description h4 {
    font-size: .92rem; font-weight: 700; color: #334155;
    margin: 1em 0 .35em;
}
.bd-description ul,
.bd-description ol {
    padding-left: 1.5em; margin: 0 0 14px;
}
.bd-description li { margin-bottom: .4em; line-height: 1.7; }
.bd-description ul li { list-style-type: disc; }
.bd-description ol li { list-style-type: decimal; }
.bd-description blockquote {
    border-left: 4px solid #0e7fa8;
    margin: 1.1em 0; padding: .75em 1.1em;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 0 10px 10px 0;
    color: #334155; font-style: italic;
}
.bd-description blockquote p { margin: 0; }
.bd-description strong { color: #0b1426; font-weight: 700; }
.bd-description em     { font-style: italic; color: #334155; }
.bd-description a      { color: #0e7fa8; text-decoration: underline; text-decoration-color: rgba(14,127,168,.3); }
.bd-description a:hover{ color: #0a6085; text-decoration-color: #0a6085; }
/* Quill hizalama sınıfları */
.bd-description .ql-align-center  { text-align: center; }
.bd-description .ql-align-right   { text-align: right; }
.bd-description .ql-align-justify { text-align: justify; }
.bd-description .ql-indent-1      { padding-left: 3em; }
.bd-description .ql-indent-2      { padding-left: 6em; }

/* ──── Program / Takvim ──── */
.bd-program { }
.bd-program-item {
    display: flex; gap: 16px;
    padding: 16px 0; border-bottom: 1px solid #f1f5f9;
}
.bd-program-item:last-child { border-bottom: none; padding-bottom: 0; }
.bd-program-num {
    width: 34px; height: 34px; border-radius: 50%;
    background: #0e7fa8; color: #fff;
    font-size: .78rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bd-program-body { flex: 1; }
.bd-program-body p { font-size: .88rem; color: #475569; line-height: 1.7; margin: 0; }

/* ──── Dahil / Hariç ──── */
.bd-incexc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bd-incexc-col {}
.bd-incexc-head {
    display: flex; align-items: center; gap: 8px;
    font-size: .76rem; font-weight: 800; letter-spacing: .06em;
    text-transform: uppercase; margin-bottom: 14px;
}
.bd-incexc-head--inc { color: #059669; }
.bd-incexc-head--exc { color: #dc2626; }
.bd-incexc-head-dot { width: 10px; height: 10px; border-radius: 50%; }
.bd-incexc-head--inc .bd-incexc-head-dot { background: #059669; }
.bd-incexc-head--exc .bd-incexc-head-dot { background: #dc2626; }
.bd-incexc-item {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: .85rem; color: #475569; padding: 6px 0;
    border-bottom: 1px solid #f8fafc;
}
.bd-incexc-item:last-child { border-bottom: none; }
.bd-incexc-check {
    width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
    display: flex; align-items: center; justify-content: center;
}
.bd-incexc-check--inc { background: #d1fae5; color: #059669; }
.bd-incexc-check--exc { background: #fee2e2; color: #dc2626; }

/* ──── Özellikler ──── */
.bd-features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.bd-feature-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; border-radius: 12px;
    background: #f8fafc; border: 1px solid #e8f4fa;
    transition: background .18s, border-color .18s;
}
.bd-feature-item:hover { background: #e0f2fe; border-color: #b3e0f2; }
.bd-feature-icon {
    width: 34px; height: 34px; border-radius: 9px;
    background: #e0f2fe; color: #0e7fa8;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bd-feature-name { font-size: .82rem; font-weight: 700; color: #334155; }

/* ──── Destinasyonlar ──── */
.bd-dests-list { display: flex; flex-wrap: wrap; gap: 10px; }
.bd-dest-tag {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 14px; border-radius: 999px;
    background: #f0f9ff; border: 1px solid #b3e0f2;
    font-size: .8rem; font-weight: 700; color: #0e7fa8;
    text-decoration: none; transition: background .18s, border-color .18s, transform .14s;
}
.bd-dest-tag:hover { background: #e0f2fe; border-color: #0e7fa8; transform: translateY(-1px); }
.bd-dest-tag img {
    width: 22px; height: 22px; border-radius: 6px; object-fit: cover; flex-shrink: 0;
}

/* ──── Limanlar ──── */
.bd-ports-list { display: flex; flex-direction: column; gap: 10px; }
.bd-port-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: 12px;
    background: #f8fafc; border: 1px solid #e8f4fa;
}
.bd-port-icon { color: #0e7fa8; flex-shrink: 0; }
.bd-port-name { font-size: .86rem; font-weight: 700; color: #334155; }

/* ── Zaman Çizelgesi ── */
.bd-timeline { position: relative; padding-left: 32px; }
.bd-timeline::before {
    content: '';
    position: absolute; left: 9px; top: 8px; bottom: 8px;
    width: 2px; background: #e0f2fe; border-radius: 2px;
}
.bd-timeline-item {
    position: relative; margin-bottom: 20px;
}
.bd-timeline-item:last-child { margin-bottom: 0; }
.bd-timeline-dot {
    position: absolute; left: -24px; top: 4px;
    width: 14px; height: 14px; border-radius: 50%;
    background: #0e7fa8; border: 3px solid #fff;
    box-shadow: 0 0 0 2px #b3e0f2;
}
.bd-timeline-time { font-size: .72rem; font-weight: 700; color: #0e7fa8; margin-bottom: 2px; }
.bd-timeline-text { font-size: .88rem; color: #475569; line-height: 1.55; }

/* ══════════════════════════════════════════════════════
   SIDEBAR — Rezervasyon Kartı
══════════════════════════════════════════════════════ */
.bd-booking-card {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #d4e8f5;
    box-shadow: 0 8px 40px rgba(11,20,38,.12), 0 2px 8px rgba(11,20,38,.06);
    overflow: hidden;
    margin-bottom: 16px;
}
.bd-booking-header {
    background: linear-gradient(135deg, #0e7fa8 0%, #0a6b8e 100%);
    padding: 20px 22px;
    display: flex; align-items: center; justify-content: space-between;
}
.bd-booking-header-title { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.75); letter-spacing: .05em; text-transform: uppercase; }
.bd-booking-price { font-size: 1.55rem; font-weight: 900; color: #fff; line-height: 1; }
.bd-booking-price-unit { font-size: .72rem; color: rgba(255,255,255,.65); font-weight: 500; }
.bd-booking-body { padding: 20px 22px; }
.bd-form-group { margin-bottom: 14px; }
.bd-form-label {
    display: block; font-size: .72rem; font-weight: 700;
    color: #64748b; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px;
}
.bd-form-input {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid #e2e8f0; border-radius: 10px;
    font-size: .88rem; color: #1e293b; font-family: inherit;
    outline: none; transition: border-color .2s, box-shadow .2s;
    background: #fff;
}
.bd-form-input:focus {
    border-color: #0e7fa8;
    box-shadow: 0 0 0 3px rgba(14,127,168,.12);
}
.bd-guest-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0; border-bottom: 1px solid #f1f5f9;
}
.bd-guest-row:last-child { border-bottom: none; }
.bd-guest-label { font-size: .84rem; font-weight: 600; color: #334155; }
.bd-guest-desc { font-size: .72rem; color: #94a3b8; }
.bd-counter {
    display: flex; align-items: center; gap: 10px;
}
.bd-counter-btn {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1.5px solid #e2e8f0; background: #fff;
    font-size: 1rem; font-weight: 700; color: #374151; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .15s;
}
.bd-counter-btn:hover:not(:disabled) { background: #0e7fa8; color: #fff; border-color: #0e7fa8; }
.bd-counter-btn:disabled { opacity: .3; cursor: not-allowed; }
.bd-counter-val { font-size: .9rem; font-weight: 700; color: #1e293b; min-width: 18px; text-align: center; }
.bd-price-summary {
    background: #f8fafc; border-radius: 12px; padding: 14px;
    margin: 16px 0; border: 1px solid #e8f4fa;
}
.bd-price-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .83rem; padding: 4px 0; color: #64748b;
}
.bd-price-row-total {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 1rem; font-weight: 800; color: #0b1426;
    padding-top: 10px; margin-top: 8px; border-top: 1.5px solid #e2e8f0;
}
.bd-btn-book {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 15px;
    background: linear-gradient(135deg, #0e7fa8, #0a6b8e);
    color: #fff; border: none; border-radius: 12px;
    font-size: .95rem; font-weight: 800; cursor: pointer;
    font-family: inherit; letter-spacing: .02em;
    transition: opacity .2s, transform .14s;
    box-shadow: 0 6px 20px rgba(14,127,168,.35);
    text-decoration: none;
}
.bd-btn-book:hover { opacity: .9; transform: translateY(-1px); }
.bd-btn-book-note {
    text-align: center; font-size: .74rem; color: #94a3b8; margin-top: 8px;
}

/* Sidebar — İletişim Kartı */
.bd-contact-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 16px;
}
.bd-contact-header {
    background: linear-gradient(135deg, #051828 0%, #0a2438 100%);
    padding: 16px 18px;
}
.bd-contact-header-title { font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; }
.bd-contact-header-sub { font-size: .84rem; font-weight: 700; color: #fff; margin-top: 2px; }
.bd-contact-body { padding: 14px 16px; }
.bd-contact-btn {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px; border-radius: 11px;
    text-decoration: none; width: 100%; margin-bottom: 8px;
    transition: transform .18s, box-shadow .18s;
    border: 1px solid transparent;
}
.bd-contact-btn:last-child { margin-bottom: 0; }
.bd-contact-btn--phone { background: #f0f9ff; border-color: #b3e0f2; }
.bd-contact-btn--phone:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(14,127,168,.12); }
.bd-contact-btn--wa { background: rgba(37,211,102,.08); border-color: rgba(37,211,102,.3); }
.bd-contact-btn--wa:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,.12); }
.bd-contact-btn-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bd-contact-btn--phone .bd-contact-btn-icon { background: #0e7fa8; color: #fff; }
.bd-contact-btn--wa .bd-contact-btn-icon { background: #25d366; color: #fff; }
.bd-contact-btn-label { font-size: .7rem; color: #64748b; font-weight: 600; }
.bd-contact-btn-val { font-size: .88rem; font-weight: 700; color: #0b1426; }

/* Sidebar — Güven Kartı */
.bd-trust-card {
    background: #fff; border-radius: 18px;
    border: 1px solid #e2e8f0; padding: 18px 16px;
}
.bd-trust-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 0; border-bottom: 1px solid #f1f5f9;
    font-size: .82rem; color: #475569; font-weight: 500;
}
.bd-trust-item:last-child { border-bottom: none; }
.bd-trust-item svg { color: #0e7fa8; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   CTA SECTION (alt)
══════════════════════════════════════════════════════ */
.bd-cta {
    padding: 64px 0;
    background: linear-gradient(135deg, #051828 0%, #061e38 100%);
    position: relative; overflow: hidden;
}
.bd-cta::before {
    content: '';
    position: absolute; top: -40%; right: -10%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(14,127,168,.12) 0%, transparent 65%);
    pointer-events: none;
}
.bd-cta-grid {
    display: grid; grid-template-columns: 1fr auto;
    gap: 48px; align-items: center;
}
.bd-cta-eyebrow {
    display: flex; align-items: center; gap: 8px;
    font-size: .73rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px;
}
.bd-cta-pulse { width: 8px; height: 8px; border-radius: 50%; background: #10b981; animation: bd-pulse 2s infinite; }
@keyframes bd-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(16,185,129,.4)} 50%{box-shadow:0 0 0 8px rgba(16,185,129,0)} }
.bd-cta-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 800;
    color: #fff; line-height: 1.15; margin-bottom: 12px;
}
.bd-cta-title em { font-style: italic; color: #38bdf8; }
.bd-cta-sub { font-size: .92rem; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 460px; }
.bd-cta-actions {
    display: flex; flex-direction: column; gap: 12px; min-width: 260px;
}
.bd-cta-btn {
    display: flex; align-items: center; gap: 14px;
    padding: 15px 20px; border-radius: 14px;
    text-decoration: none; transition: transform .2s, box-shadow .2s;
    border: 1px solid transparent;
}
.bd-cta-btn--phone { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); }
.bd-cta-btn--phone:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.bd-cta-btn--wa { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.28); }
.bd-cta-btn--wa:hover { background: rgba(37,211,102,.2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.15); }
.bd-cta-btn-icon {
    width: 42px; height: 42px; border-radius: 11px;
    background: rgba(255,255,255,.1); color: #fff;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bd-cta-btn-text-top { font-size: .7rem; color: rgba(255,255,255,.55); font-weight: 600; }
.bd-cta-btn-text-bot { font-size: .92rem; font-weight: 700; color: #fff; }

/* ══════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════ */
.bd-lightbox {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(0,0,0,.92); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .25s, visibility .25s;
}
.bd-lightbox.open { opacity: 1; visibility: visible; }
.bd-lightbox-img-wrap {
    position: relative; max-width: 90vw; max-height: 88vh;
    display: flex; align-items: center; justify-content: center;
}
.bd-lightbox-img {
    max-width: 90vw; max-height: 82vh;
    border-radius: 12px; object-fit: contain;
    box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.bd-lightbox-close {
    position: absolute; top: -42px; right: 0;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.15); border: none;
    color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .18s;
}
.bd-lightbox-close:hover { background: rgba(255,255,255,.28); }
.bd-lightbox-prev,
.bd-lightbox-next {
    position: fixed; top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,.12); border: none;
    color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .18s, transform .18s;
}
.bd-lightbox-prev:hover,
.bd-lightbox-next:hover { background: rgba(255,255,255,.24); }
.bd-lightbox-prev { left: 20px; }
.bd-lightbox-next { right: 20px; }
.bd-lightbox-counter {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .bd-grid { grid-template-columns: 1fr 320px; }
    .bd-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .bd-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .bd-grid { grid-template-columns: 1fr; }
    .bd-sidebar { position: static; }
    .bd-cta-grid { grid-template-columns: 1fr; gap: 32px; }
    .bd-cta-actions { flex-direction: row; flex-wrap: wrap; }
    .bd-cta-btn { flex: 1 1 220px; }
    .bd-incexc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .bd-hero { min-height: 60vh; }
    .bd-hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .bd-hero-meta { flex-wrap: wrap; gap: 12px; }
    .bd-hero-price-pill { margin-left: 0; align-items: flex-start; }
    .bd-stats-bar { grid-template-columns: repeat(2, 1fr); padding: 12px; gap: 8px; }
    .bd-stat-card { padding: 10px 6px; }
    .bd-features-grid { grid-template-columns: 1fr 1fr; }
    .bd-section { padding: 18px; }
    .bd-gallery-thumb { width: 58px; height: 42px; }
    .bd-layout { padding: 32px 0 48px; }
    .bd-cta-actions { flex-direction: column; }
}
@media (max-width: 480px) {
    .bd-stats-bar { grid-template-columns: 1fr 1fr; }
    .bd-features-grid { grid-template-columns: 1fr; }
}
