*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --red:        #DC2626;
    --red-dark:   #B91C1C;
    --black:      #080808;
    --carbon:     #111111;
    --steel:      #181818;
    --iron:       #232323;
    --muted:      #8C8C8C;
    --silver:     #A3A3A3;
    --light:      #D4D4D4;
    --white:      #F5F5F5;
    --pure:       #FFFFFF;
}

/* ─── TEMA (LIGHT / DARK) DEĞİŞKENLERİ ───
   :root içindeki değerler LIGHT (aydınlık) temayı temsil eder ve SİTENİN
   VARSAYILANIDIR. <html data-theme="dark"> attribute'u eklendiğinde
   (bkz. header.php'deki FOUC script'i ve assets/js/app.js) alttaki blok
   bu değişkenleri DARK değerlerle ezer. Tüm site bu semantik değişkenler
   üzerinden renklendirilir; --red / --red-dark marka rengi olduğu için
   her iki temada da aynı kalır. */
:root {
    --bg-color:            #FFFFFF;
    --bg-color-alt:         #F3F4F6;
    --card-bg:              #FFFFFF;
    --card-bg-hover:        #F3F4F6;
    --input-bg:             #FFFFFF;
    --text-color:           #16181C;
    --text-muted:           #5B5F66;
    --text-subtle:          #7A7F87;
    --border-color:         rgba(0, 0, 0, 0.08);
    --border-color-strong:  rgba(0, 0, 0, 0.14);
    --overlay-soft:         rgba(0, 0, 0, 0.035);
    --overlay-strong:       rgba(0, 0, 0, 0.5);
    --nav-bg:               rgba(255, 255, 255, 0.92);
    --nav-bg-scrolled:      rgba(255, 255, 255, 0.98);
    --accent:               var(--red);

    color-scheme: light;
}

[data-theme="dark"] {
    --bg-color:            var(--black);
    --bg-color-alt:         var(--carbon);
    --card-bg:              var(--steel);
    --card-bg-hover:        var(--iron);
    --input-bg:             var(--iron);
    --text-color:           var(--white);
    --text-muted:           var(--muted);
    --text-subtle:          var(--silver);
    --border-color:         rgba(255, 255, 255, 0.08);
    --border-color-strong:  rgba(255, 255, 255, 0.14);
    --overlay-soft:         rgba(255, 255, 255, 0.035);
    --overlay-strong:       rgba(255, 255, 255, 0.5);
    --nav-bg:               rgba(8, 8, 8, 0.94);
    --nav-bg-scrolled:      rgba(8, 8, 8, 0.99);
    --accent:               var(--red);

    color-scheme: dark;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg-color); color: var(--text-color); overflow-x: hidden; margin: 0; padding: 0; transition: background-color 0.25s ease, color 0.25s ease; }

body, .elementor-page, .elementor-section-wrap { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; }
.site-content, .ast-container, #page { max-width: 100% !important; margin: 0 !important; padding: 0 !important; }

/* ─── NAVİGASYON - MASAÜSTÜ ─── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: var(--nav-bg); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); padding: 0 2rem; transition: background 0.3s; }
nav.is-scrolled { background: var(--nav-bg-scrolled); }
.nav-inner { max-width: 1200px; width: 100%; margin: 0 auto; height: 68px; display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; }
.logo { display: flex; align-items: center; text-decoration: none; white-space: nowrap; flex-shrink: 0; z-index: 400; }
.logo img.nav-logo-img { display: block; height: 34px; width: auto; max-width: none; }
.logo img.nav-logo-img--light { display: block; }
.logo img.nav-logo-img--dark { display: none; }
[data-theme="dark"] .logo img.nav-logo-img--light { display: none; }
[data-theme="dark"] .logo img.nav-logo-img--dark { display: block; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; margin: 0; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-color); }
.nav-right { display: flex; align-items: center; gap: 1rem; z-index: 400; }
.hamburger { display: none !important; cursor: pointer; flex-direction: column; gap: 6px; width: 26px; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--text-color); transition: 0.3s ease; }

/* ─── TEMA DEĞİŞTİRME BUTONU (Güneş / Ay) ─── */
.theme-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--border-color-strong);
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.theme-toggle:hover { border-color: var(--red); color: var(--red); }
.theme-toggle:active { transform: scale(0.92); }
.theme-toggle-icon {
    position: absolute;
    transition: opacity 0.25s ease, transform 0.35s ease;
}
.theme-toggle-icon--sun  { opacity: 1; transform: rotate(0deg) scale(1); }
.theme-toggle-icon--moon { opacity: 0; transform: rotate(-90deg) scale(0.5); }

/* [data-theme="dark"] iken ikonlar yer değiştirir: ay görünür, güneş gizlenir */
[data-theme="dark"] .theme-toggle-icon--sun  { opacity: 0; transform: rotate(90deg) scale(0.5); }
[data-theme="dark"] .theme-toggle-icon--moon { opacity: 1; transform: rotate(0deg) scale(1); }

/* ─── NAVİGASYON - MOBİL (768px ve altı) ─── */
@media screen and (max-width: 768px) {
    nav { padding: 0 1rem; }

    .logo {
        flex-shrink: 1;
        min-width: 0;
    }

    .logo img.nav-logo-img { height: 26px; }

    .nav-inner { gap: 0.75rem; min-width: 0; }

    .nav-right {
        gap: 0.85rem;
        flex-shrink: 0;
        margin-left: auto;
    }

    /* Tema butonu hamburgerdan hemen önce; hamburger en sağda */
    .theme-toggle { order: 2; width: 32px; height: 32px; }
    .hamburger   { order: 3; width: 22px; gap: 5px; }
    .theme-toggle svg { width: 16px; height: 16px; }

    .hamburger { display: flex !important; }

    ul.nav-links {
        position: absolute !important; top: 68px !important; left: 0 !important; width: 100% !important;
        background: var(--nav-bg-scrolled) !important; backdrop-filter: blur(12px) !important;
        flex-direction: column !important; padding: 2rem 0 !important; gap: 1.5rem !important;
        opacity: 0; visibility: hidden; transform: translateY(-20px);
        transition: all 0.3s ease !important; border-bottom: 1px solid var(--border-color) !important;
        margin: 0 !important;
    }

    ul.nav-links.mobile-active { opacity: 1 !important; visibility: visible !important; transform: translateY(0) !important; }

    .hamburger.toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.toggle span:nth-child(2) { opacity: 0; }
    .hamburger.toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media screen and (max-width: 380px) {
    .logo img.nav-logo-img { height: 22px; }
    .nav-right { gap: 0.65rem; }
    .theme-toggle { width: 30px; height: 30px; }
}

/* ─── HERO ─── */
.hero { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; padding-top: 68px; background: var(--bg-color); width: 100%; }
.stripe { position: absolute; top: 0; right: 0; bottom: 0; width: 48%; pointer-events: none; z-index: 0; }
.stripe::before { content: ''; position: absolute; inset: 0; background: var(--red); clip-path: polygon(22% 0%, 100% 0%, 100% 100%, 0% 100%); opacity: 0.07; }
.stripe::after { content: ''; position: absolute; top: 0; bottom: 0; left: calc(22% - 3px); width: 3px; background: var(--red); opacity: 0.7; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: skewX(-0.5deg); }
.hero-content { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; width: 100%; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 1.75rem; }
.eyebrow::before { content: ''; display: block; width: 2rem; height: 2px; background: var(--red); }
.hero-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(4rem, 12vw, 9rem); font-weight: 900; line-height: 0.88; text-transform: uppercase; letter-spacing: -0.01em; color: var(--text-color); margin-bottom: 2rem; }
.hero-title .r { color: var(--red); }

/* ─── HERO LOGO (PNG) ───
   Logo asla orijinalinden büyük gösterilmez (pikselleşmeyi önler).
   Retina için hero-logo@2x.png yüklenirse srcset ile otomatik devreye girer. */
.hero-logo {
    display: block;
    width: fit-content;
    max-width: min(520px, 100%);
    margin: 0 0 2rem;
}
.hero-logo img {
    width: auto;
    max-width: 100%;
    height: auto;
}
/* NOT: ".hero-logo img" (etiket+sınıf) özgüllüğü tek başına ".hero-logo-img--dark"
   sınıfından (sadece sınıf) yüksek olduğu için, gizleme kuralı da "img" ile
   birleştirilip aynı/daha yüksek özgüllüğe getiriliyor - aksi halde
   "display: block" üstte kalıp gizlemeyi eziyordu (light modda iki logo
   birden görünmesinin sebebi buydu). */
.hero-logo img.hero-logo-img--light { display: block; }
.hero-logo img.hero-logo-img--dark { display: none; }
[data-theme="dark"] .hero-logo img.hero-logo-img--light { display: none; }
[data-theme="dark"] .hero-logo img.hero-logo-img--dark { display: block; }
.hero-sub { max-width: 500px; font-size: 1.05rem; font-weight: 400; line-height: 1.75; color: var(--text-muted); margin-bottom: 2.75rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-red { background: var(--red); color: var(--pure) !important; padding: 0.9rem 2.2rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.6rem; border-radius: 3px; }
.btn-red:hover { background: var(--red-dark); }
.btn-icon { flex-shrink: 0; }
.btn-ghost { background: transparent; color: var(--text-muted); padding: 0.9rem 2.2rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--border-color-strong); display: inline-block; border-radius: 3px; }
.btn-ghost:hover { border-color: var(--overlay-strong); color: var(--text-color); }

/* ─── GENEL BÖLÜM / KONTEYNER STİLLERİ ─── */
.section { padding: 6rem 2rem; width: 100%; }
.container { max-width: 1200px; margin: 0 auto; }
.sec-label { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.sec-label::before { content: ''; display: block; width: 1.5rem; height: 2px; background: var(--red); }
.sec-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 800; text-transform: uppercase; line-height: 1; color: var(--text-color); margin-bottom: 1rem; }
.sec-sub { font-size: 0.95rem; font-weight: 400; line-height: 1.75; color: var(--text-muted); max-width: 460px; }

/* ─── HİZMETLER ─── */
.services-section { background: var(--bg-color-alt); }
.services-header { margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-color); }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.svc { background: var(--card-bg); padding: 2.25rem 2rem; position: relative; overflow: hidden; transition: background 0.25s; display: flex; flex-direction: column; align-items: flex-start; }
.svc::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.svc:hover { background: var(--card-bg-hover); }
.svc:hover::after { transform: scaleX(1); }
.svc-icon { margin-bottom: 1.2rem; display: flex; color: var(--red); }
.svc-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; text-transform: uppercase; color: var(--text-color); margin-bottom: 0.75rem; }
.svc-desc { font-size: 0.9rem; font-weight: 400; line-height: 1.7; color: var(--text-muted); }

/* ─── KONUM / GOOGLE MAPS ─── */
.location-section { background: var(--bg-color); }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 2.5rem;
    align-items: stretch;
}
.location-info { display: flex; flex-direction: column; justify-content: center; }
.location-info .sec-sub { max-width: 100%; margin-bottom: 1.75rem; }

.location-details {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.location-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-muted);
}
.location-details svg {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--red);
}
.location-details a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.location-details a:hover { color: var(--red); }

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.location-map {
    position: relative;
    min-height: 380px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    background: var(--card-bg);
}
.location-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    z-index: 1;
    pointer-events: none;
}
.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}

@media (max-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .location-map {
        min-height: 320px;
        order: -1;
    }
    .location-map iframe {
        min-height: 320px;
    }
}

@media (max-width: 600px) {
    .location-actions {
        flex-direction: column;
    }
    .location-actions .btn-red,
    .location-actions .btn-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ─── FOOTER ─── */
footer { background: var(--bg-color-alt); border-top: 1px solid var(--border-color); width: 100%; }

.foot-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}

.foot-col { min-width: 0; }

.foot-logo {
    display: flex;
    align-items: center;
    margin-bottom: 0.85rem;
}
.foot-logo img.foot-logo-img { display: block; height: 40px; width: auto; max-width: none; }
.foot-logo img.foot-logo-img--light { display: block; }
.foot-logo img.foot-logo-img--dark { display: none; }
[data-theme="dark"] .foot-logo img.foot-logo-img--light { display: none; }
[data-theme="dark"] .foot-logo img.foot-logo-img--dark { display: block; }

.foot-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    max-width: 280px;
}

.foot-social { display: flex; gap: 0.6rem; }
.foot-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color-strong);
    color: var(--text-color);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.foot-social-link:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(220, 38, 38, 0.06);
}

.foot-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-color);
    margin-bottom: 1.1rem;
}

.foot-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.foot-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.foot-links a:hover { color: var(--red); }

.foot-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.foot-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}
.foot-contact-list svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--red);
}
.foot-contact-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.foot-contact-list a:hover { color: var(--red); }

.foot-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.25rem 2rem;
    text-align: center;
}
.foot-copy { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

.foot-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
    font-size: 0.78rem;
}
.foot-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.foot-legal-links a:hover { color: var(--red); text-decoration: underline; }
.foot-legal-links span { color: var(--border-color-strong); }

.foot-company-info {
    font-size: 0.74rem;
    color: var(--text-muted);
    opacity: 0.8;
    margin: 0 0 0.4rem;
}

@media (max-width: 1024px) {
    .foot-main { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .foot-tagline { max-width: none; }
}

@media (max-width: 600px) {
    .foot-main {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.25rem 2rem;
        gap: 1.75rem;
    }
    .foot-logo img.foot-logo-img { height: 34px; }
    .foot-bottom { padding: 1.25rem 1.25rem; }
    .foot-legal-links { gap: 0.35rem 0.5rem; font-size: 0.74rem; }
}

/* ─── SABİT SAYFA ŞABLONU (page.php) ─── */
.bks-page-wrapper {
    min-height: 80vh;
    background: var(--bg-color);
    padding: 110px 2rem 4rem;
    width: 100%;
}
.bks-page-content { color: var(--text-muted); line-height: 1.8; }
.bks-page-title {
    color: var(--text-color);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border-bottom: none;
    padding-bottom: 0;
    line-height: 1;
}

/* ─── İLETİŞİM SAYFASI ─── */
.bks-contact-page .container { max-width: 1200px; margin: 0 auto; }
.bks-contact-header { margin-bottom: 2.5rem; }
.bks-contact-header .sec-sub { max-width: 560px; margin-bottom: 0; }
.bks-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 2.5rem;
    align-items: stretch;
}
.bks-contact-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.bks-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.bks-contact-item:hover {
    background: var(--card-bg-hover);
    border-color: var(--border-color-strong);
}
.bks-contact-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 6px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
}
.bks-contact-item__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}
.bks-contact-item__label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.bks-contact-item__body a,
.bks-contact-item__body > span:last-child {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-color);
    text-decoration: none;
}
.bks-contact-item__body a:hover { color: var(--red); }
.bks-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}
.bks-contact-map {
    position: relative;
    min-height: 420px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-color-alt);
}
.bks-contact-map::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(220, 38, 38, 0.12);
    z-index: 1;
}
.bks-contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}
@media (max-width: 900px) {
    .bks-contact-grid { grid-template-columns: 1fr; }
    .bks-contact-map { min-height: 320px; }
    .bks-contact-map iframe { min-height: 320px; }
    .bks-contact-actions .btn-red,
    .bks-contact-actions .btn-ghost { flex: 1 1 100%; text-align: center; justify-content: center; }
}
@media (max-width: 600px) {
    .bks-page-wrapper { padding: 100px 1.25rem 3rem; }
}

/* ─── YASAL SAYFALAR (Mesafeli Satış Sözleşmesi, KVKK vb.) ─── */
.bks-legal-page { max-width: 860px; margin: 0 auto; padding-top: 2rem; padding-bottom: 4rem; }
.bks-legal-page .bks-page-title {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color-strong);
    padding-bottom: 1rem;
}
.bks-legal-body h2 {
    color: var(--text-color);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 2rem 0 0.75rem;
}
.bks-legal-body h2:first-of-type { margin-top: 1.25rem; }
.bks-legal-body p { margin: 0 0 1rem; }
.bks-legal-body em { color: var(--text-color); opacity: 0.85; }
.bks-legal-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}
.bks-legal-list li { padding: 0.25rem 0; }
.bks-legal-list li strong { color: var(--text-color); }
.bks-legal-body ul.bks-legal-list li::marker { content: ''; }
.bks-legal-body a { color: var(--red); text-decoration: underline; }

/* ─── BLOCKSY SARMALAYICI ELEMANLARIN ARKA PLANINI TEMAYA BAĞLAMA ─── */
body, html, #page, #main, .site-main, .site-content, [data-prefix="site_wrap"], .ct-container {
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
}

/* ─── FLOATING WHATSAPP BUTONU ─── */
.bks-wa-float {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 999;
}

.bks-wa-float__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: bks-wa-pulse 2.5s ease-in-out infinite;
}

.bks-wa-float__btn:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
    animation: none;
}

.bks-wa-float__btn:active { transform: scale(0.96); }

@keyframes bks-wa-pulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45); }
    50%      { box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45), 0 0 0 10px rgba(37, 211, 102, 0.15); }
}

@media (max-width: 768px) {
    .bks-wa-float {
        left: 1rem;
        bottom: 1rem;
    }
    .bks-wa-float__btn {
        width: 54px;
        height: 54px;
    }
    .bks-wa-float__btn svg {
        width: 26px;
        height: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bks-wa-float__btn {
        animation: none;
    }
}
