﻿/* ========================================
   rytill — GLOBAL STYLES
   Palette: Navy #0C1B33 / Accent #F5A300
   ======================================== */

:root {
    /* Accent */
    --accent:        #F5A300;
    --accent-dark:   #D98F00;
    --accent-bg:     rgba(245,163,0,0.08);

    /* Brand surfaces */
    --navy:          #0C1B33;
    --navy-mid:      #0f2040;

    /* Text */
    --text:          #1A1A1A;
    --text-muted:    #6B6B6B;

    /* Borders & backgrounds */
    --border:        #E8EEF7;
    --bg-subtle:     #F7F9FC;
    --white:         #FFFFFF;

    /* Aliases kept for legacy compatibility */
    --orange:        var(--accent);
    --orange-dark:   var(--accent-dark);
    --orange-light:  rgba(245,163,0,0.08);
    --black:         var(--text);
    --gray-mid:      var(--text-muted);
    --gray-light:    var(--bg-subtle);

    /* Tokens */
    --font:          'Inter', system-ui, -apple-system, sans-serif;
    --radius:        8px;
    --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
    --shadow-md:     0 8px 24px rgba(0,0,0,0.10);
    --transition:    0.22s ease;
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Sayfalar kendi hero padding'lerini yönetir */
main[role="main"] { padding-top: 0; }

/* ── Standartlar Marquee (tüm katalog sayfalarında ortak) ── */
.site-marquee {
    background: var(--navy);
    overflow: hidden;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.site-marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: siteMarq 38s linear infinite;
}
@keyframes siteMarq {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.site-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 32px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,.07);
}
.site-marquee-item i {
    color: var(--accent);
    font-size: .6rem;
    opacity: .85;
}
/* Topbar (36px) + header (~66px) = ~102px toplam offset — hero sayfaları kendi padding'ini yönetir */

/* ── Focus ── */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* ========================================
   HEADER / NAVBAR  — YENİ TASARIM
   ======================================== */

/* ══ ÜST BAR (1. kademe) ══ */
.sh-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    height: 36px;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.07);
    display: flex; align-items: center;
    transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .3s;
}
.sh-topbar--hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
.sh-topbar-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    width: 100%;
}
.sh-topbar-left {
    display: flex; align-items: center; gap: 20px;
}
.sh-topbar-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,.5); font-size: .7rem;
    font-weight: 500; text-decoration: none;
    transition: color .2s;
}
.sh-topbar-link:hover { color: rgba(255,255,255,.9); }
.sh-topbar-link i { font-size: .65rem; color: var(--accent); }
.sh-topbar-right {
    display: flex; align-items: center; gap: 12px;
}
.sh-topbar-social {
    color: rgba(255,255,255,.35); font-size: .75rem;
    text-decoration: none; transition: color .2s;
    display: flex; align-items: center;
}
.sh-topbar-social:hover { color: var(--accent); }
.sh-topbar-div {
    width: 1px; height: 14px;
    background: rgba(255,255,255,.12); flex-shrink: 0;
}
.sh-lang-btn--sm {
    display: inline-flex; align-items: center; gap: 5px;
    background: transparent; border: none; cursor: pointer;
    padding: 3px 6px; border-radius: 5px;
    transition: background .2s;
    color: rgba(255,255,255,.6);
}
.sh-lang-btn--sm:hover { background: rgba(255,255,255,.08); }
.sh-lang-code-sm {
    font-size: .65rem; font-weight: 700; letter-spacing: .06em;
    color: rgba(255,255,255,.7);
}
.sh-lang-drop--top {
    top: calc(100% + 6px) !important;
    right: 0 !important; left: auto !important;
}
@media (max-width: 991px) {
    .sh-topbar { display: none; }
    /* Mobilde topbar yok → header en tepede sabit */
    .site-header { top: 0 !important; }
}

/* ══ ANA HEADER (2. kademe) ══ */
.site-header {
    position: fixed;
    top: 36px; left: 0; right: 0;
    z-index: 1000;
    background: rgba(8, 14, 28, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        top 0.35s cubic-bezier(.4,0,.2,1),
        transform 0.4s cubic-bezier(.4,0,.2,1),
        opacity 0.4s ease;
}
/* Topbar gizlenince header yukarı çıkar */
.site-header.topbar-gone { top: 0; }

.site-header.header-hidden {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
}

/* ── Üst çizgi — kaldırıldı ── */
.sh-accent { display: none; }

/* ── Navbar / Header iç düzeni ── */
.sh-nav { padding: 0; }

/* 3 sütun grid: Logo | Arama (orta) | Nav+CTA */
.sh-hd-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    height: 64px;
}
@media (max-width: 991px) {
    .sh-hd-wrap {
        /* Mobilde: sadece logo + sağ butonlar (arama ortası gizli) */
        grid-template-columns: auto auto;
        justify-content: space-between;
        gap: 0;
    }
}
.sh-hd-right {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}
.sh-nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0; padding: 0;
}

/* ── Logo bloğu ── */
.sh-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    flex-shrink: 0;
}
.sh-logo {
    height: 40px;
    width: auto;
    border-radius: 6px;
    transition: opacity .2s;
}
.sh-brand:hover .sh-logo { opacity: .85; }
.sh-brand-sep {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,.18);
    flex-shrink: 0;
}
.sh-brand-tag {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    line-height: 1.3;
    white-space: nowrap;
}

/* ── Nav linkleri (merkez) ── */
.sh-nav-list { gap: 2px; transition: opacity .2s; }

.sh-navlink {
    display: inline-block;
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255,255,255,.75) !important;
    text-decoration: none;
    padding: .42rem .9rem !important;
    border-radius: 7px;
    transition: color .2s, background .2s;
    position: relative;
}
.sh-navlink::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: .9rem; right: .9rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .22s;
    border-radius: 2px;
}
.sh-navlink:hover,
.sh-navlink:focus {
    color: #fff !important;
    background: rgba(255,255,255,.07);
}
.sh-navlink:hover::after { transform: scaleX(1); }

/* Dropdown toggle ok */
.sh-navlink.dropdown-toggle::after {
    position: static;
    width: auto; height: auto;
    background: transparent;
    transform: none;
    border: none;
    display: inline-block;
    margin-left: 4px;
    border-top: .32em solid rgba(255,255,255,.55);
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    vertical-align: middle;
}

/* ══ MEGA MENU PANELİ ══ */
.sh-mega-panel {
    position: absolute; left: 0; right: 0; top: 100%;
    background: rgba(6,12,26,.97);
    backdrop-filter: blur(16px);
    border-top: 2px solid var(--accent);
    border-bottom: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 24px 60px rgba(4,9,26,.55);
    z-index: 999;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s, transform .22s, visibility .22s;
}
.sh-mega-panel.is-open {
    opacity: 1; visibility: visible; pointer-events: all;
    transform: translateY(0);
}
.sh-mega-panel .container { padding-top: 20px; padding-bottom: 20px; }

/* Kategoriler yatay grid */
.sh-mega-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.sh-mega-card {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 10px;
    text-decoration: none; color: rgba(255,255,255,.75);
    border: 1px solid rgba(255,255,255,.08);
    transition: background .18s, color .18s, border-color .18s;
    white-space: nowrap; flex-shrink: 0;
}
.sh-mega-card:hover {
    background: rgba(255,255,255,.07);
    border-color: var(--accent);
    color: #fff;
}
.sh-mega-ico {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; flex-shrink: 0; overflow: hidden;
}
.sh-mega-ico--img { background: transparent !important; padding: 0; display: block; }
.sh-mega-ico--img img { width: 32px; height: 32px; object-fit: cover; display: block; border-radius: 8px; }
.sh-mega-name { font-size: .84rem; font-weight: 600; }
.sh-mega-arrow {
    font-size: .7rem; opacity: 0; margin-left: 2px;
    transition: opacity .15s, transform .15s;
}
.sh-mega-card:hover .sh-mega-arrow { opacity: 1; transform: translateX(3px); }

/* Alt çizgi: Tüm ürünler linki */
.sh-mega-foot {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex; align-items: center;
}
.sh-mega-all {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent); font-size: .8rem; font-weight: 700;
    text-decoration: none; letter-spacing: .03em;
    transition: gap .2s;
}
.sh-mega-all:hover { gap: 12px; color: var(--accent); }
.sh-mega-all .bi-arrow-right { font-size: .75rem; }

/* Nav trigger chevron */
.sh-nav-chevron {
    font-size: .55rem; opacity: .55;
    transition: transform .22s, opacity .22s;
    margin-left: 3px;
}
.sh-mega-trigger.is-active .sh-nav-chevron {
    transform: rotate(180deg); opacity: 1;
}
.sh-mega-trigger.is-active {
    color: var(--accent) !important;
    background: rgba(245,163,0,.08);
}

/* ── Dil seçici ── */
.sh-lang-wrap {
    position: relative;
}
.sh-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    padding: 5px 9px;
    color: rgba(255,255,255,.82);
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .15s;
    font-family: inherit;
}
.sh-lang-btn:hover,
.sh-lang-wrap.sh-open .sh-lang-btn {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.28);
    color: #fff;
    transform: translateY(-1px);
}
/* flag-icons buton bayrağı */
.sh-flag-ico {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,.35);
    flex-shrink: 0;
}
/* flag-icons dropdown seçenek bayrağı */
.sh-opt-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
    flex-shrink: 0;
}
.sh-code { display: none; }
.sh-chevron {
    font-size: .55rem;
    opacity: .55;
    transition: transform .22s;
}
.sh-lang-wrap.sh-open .sh-chevron { transform: rotate(180deg); }

.sh-lang-drop {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 6px;
    min-width: 150px;
    box-shadow: 0 16px 48px rgba(4,9,26,.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 200;
}
.sh-lang-wrap.sh-open .sh-lang-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sh-lang-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    cursor: pointer;
    transition: background .18s, color .18s;
}
.sh-lang-opt:hover { background: rgba(255,255,255,.08); color: #fff; }
.sh-lang-opt.sh-lang-active { color: var(--accent); }
.sh-lang-opt.sh-lang-active:hover { background: var(--accent-bg); }

/* ══ ARAMA ÇUBUĞU (desktop, orta) ══ */
.sh-search-center {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}
.sh-search-bar {
    display: flex; align-items: center;
    background: rgba(255,255,255,.07);
    border: 1.5px solid rgba(255,255,255,.14);
    border-radius: 10px; overflow: hidden;
    transition: border-color .2s, background .2s;
    height: 40px;
}
.sh-search-bar:focus-within {
    border-color: var(--accent);
    background: rgba(255,255,255,.1);
}
.sh-search-bar-ico {
    padding: 0 10px 0 14px;
    color: rgba(255,255,255,.35);
    font-size: .9rem; flex-shrink: 0;
}
.sh-search-bar-input {
    flex: 1; background: transparent; border: none; outline: none;
    color: #fff; font-size: .88rem; padding: 0; font-family: inherit;
    min-width: 0;
}
.sh-search-bar-input::placeholder { color: rgba(255,255,255,.28); }
.sh-search-bar-btn {
    background: var(--accent); border: none; cursor: pointer;
    padding: 0 16px; align-self: stretch; color: var(--navy);
    font-size: .78rem; font-weight: 700; font-family: inherit;
    letter-spacing: .04em; white-space: nowrap;
    transition: background .2s; flex-shrink: 0;
    display: flex; align-items: center;
}
.sh-search-bar-btn:hover { background: var(--accent-dark); }

/* ══ ARAMA SONUÇLARI DROP ══ */
.sh-search-drop {
    position: absolute; left: 0; right: 0; top: calc(100% + 4px);
    background: #fff;
    border-radius: 0 0 12px 12px;
    max-height: 0; overflow: hidden;
    visibility: hidden;
    transition: max-height .26s cubic-bezier(.4,0,.2,1), visibility .26s;
    z-index: 200;
}
.sh-search-drop.is-open {
    max-height: 380px; overflow-y: auto;
    visibility: visible;
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    box-shadow: 0 12px 32px rgba(12,27,51,.13);
}
.sh-search-drop-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}
.sh-drop-card {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 10px; border-radius: 8px;
    text-decoration: none; color: var(--navy);
    border: 1.5px solid var(--border);
    transition: border-color .15s, background .15s;
    background: #fff;
}
.sh-drop-card:hover { border-color: var(--accent); color: var(--navy); background: #FFFDF5; }
.sh-drop-thumb {
    width: 50px; height: 50px; border-radius: 7px;
    object-fit: cover; flex-shrink: 0; background: var(--bg-subtle);
}
.sh-drop-thumb--ph {
    display: flex; align-items: center; justify-content: center;
    color: rgba(12,27,51,.2); font-size: 1rem; background: var(--bg-subtle);
}
.sh-drop-info { flex: 1; min-width: 0; }
.sh-drop-badges { display: flex; align-items: center; gap: 5px; margin-bottom: 2px; flex-wrap: wrap; }
.sh-drop-cat {
    font-size: .58rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--accent);
    background: rgba(245,163,0,.1); border-radius: 3px; padding: 1px 5px;
}
.sh-drop-brand { font-size: .58rem; font-weight: 600; color: rgba(12,27,51,.38); text-transform: uppercase; }
.sh-drop-name {
    font-size: .82rem; font-weight: 700; color: var(--navy);
    line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sh-drop-model { font-size: .7rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sh-drop-arrow { font-size: .7rem; color: rgba(12,27,51,.18); flex-shrink: 0; transition: color .15s, transform .15s; }
.sh-drop-card:hover .sh-drop-arrow { color: var(--accent); transform: translate(2px,-2px); }
.sh-drop-empty {
    grid-column: 1/-1; text-align: center; padding: 16px;
    color: var(--text-muted); font-size: .82rem;
    display: flex; align-items: center; justify-content: center; gap: 7px;
}

/* ══ MOBİL SEARCH TRIGGER ══ */
.sh-mob-search-trigger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.14);
    border-radius: 8px; color: rgba(255,255,255,.7);
    font-size: .9rem; cursor: pointer;
    transition: background .2s, color .2s;
}
.sh-mob-search-trigger:hover { background: rgba(255,255,255,.16); color: #fff; }

/* ══ MOBİL COLLAPSE MENÜ ══ */
.sh-mob-collapse {
    background: rgba(6,12,26,.97);
    border-top: 1px solid rgba(255,255,255,.07);
}
.sh-mob-inner {
    padding: 16px 0 20px;
    max-width: 720px; margin: 0 auto;
    padding-left: 1rem; padding-right: 1rem;
    display: flex; flex-direction: column; gap: 16px;
}
.sh-mob-nav-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 2px;
}
.sh-mob-navlink {
    display: block; width: 100%; text-align: left;
    padding: 11px 14px; border-radius: 8px;
    font-size: .92rem; font-weight: 600;
    color: rgba(255,255,255,.78); text-decoration: none;
    background: none; border: none; cursor: pointer;
    font-family: inherit; transition: background .15s, color .15s;
}
.sh-mob-navlink:hover { background: rgba(255,255,255,.07); color: #fff; }
.sh-mob-dd-btn { display: flex; align-items: center; justify-content: space-between; }
.sh-mob-chevron { font-size: .6rem; opacity: .5; transition: transform .2s; }
.sh-mob-dd-wrap.is-open .sh-mob-chevron { transform: rotate(180deg); }
.sh-mob-dd-list {
    list-style: none; margin: 0; padding: 0 0 0 14px;
    max-height: 0; overflow: hidden;
    transition: max-height .25s;
}
.sh-mob-dd-wrap.is-open .sh-mob-dd-list { max-height: 400px; }
.sh-mob-dd-item {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 12px; border-radius: 7px;
    font-size: .84rem; color: rgba(255,255,255,.6);
    text-decoration: none; transition: background .15s, color .15s;
}
.sh-mob-dd-item:hover { background: rgba(255,255,255,.06); color: #fff; }
.sh-mob-dd-ico { font-size: .8rem; color: var(--accent); flex-shrink: 0; }
.sh-mob-dd-img { width: 24px; height: 24px; object-fit: cover; flex-shrink: 0; border-radius: 6px; overflow: hidden; }
.sh-mob-dd-all { color: var(--accent) !important; font-weight: 700; }

/* Mobil arama formu */
/* Mobil arama panel — header'ın hemen altında slide-down */
.sh-mob-search-panel {
    position: absolute; left: 0; right: 0; top: 100%;
    background: rgba(6,12,26,.97);
    padding: 12px 16px;
    display: flex; flex-direction: column; gap: 10px;
    max-height: 0; overflow: hidden; pointer-events: none;
    visibility: hidden;
    transition: max-height .28s cubic-bezier(.4,0,.2,1), visibility .28s;
    z-index: 997;
}
.sh-mob-search-panel.is-open {
    max-height: 500px; pointer-events: all;
    visibility: visible;
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 2px solid var(--accent);
}
.sh-mob-search-trigger.is-active {
    background: rgba(245,163,0,.15) !important;
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}
.sh-mob-search-form {
    display: flex; align-items: center;
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.14);
    border-radius: 10px; overflow: hidden;
}
.sh-mob-search-form:focus-within { border-color: var(--accent); }
.sh-mob-search-ico { padding: 0 10px 0 14px; color: rgba(255,255,255,.35); font-size: .88rem; flex-shrink: 0; }
.sh-mob-search-input {
    flex: 1; background: transparent; border: none; outline: none;
    color: #fff; font-size: .88rem; padding: 11px 0; font-family: inherit;
}
.sh-mob-search-input::placeholder { color: rgba(255,255,255,.25); }
.sh-mob-search-go {
    background: var(--accent); border: none; cursor: pointer;
    padding: 0 14px; align-self: stretch;
    color: var(--navy); font-size: .9rem;
    display: flex; align-items: center; transition: background .2s;
}
.sh-mob-suggest { display: flex; flex-direction: column; gap: 6px; }
.sh-mob-suggest .sh-drop-card {
    background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); color: #fff;
}
.sh-mob-suggest .sh-drop-name { color: #fff; }
.sh-mob-suggest .sh-drop-card:hover { border-color: var(--accent); }

/* Dil + CTA alt satır */
.sh-mob-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sh-lang-label { font-size: .78rem; color: rgba(255,255,255,.7); }
.sh-cta-btn--full { flex: 1; justify-content: center; text-align: center; }

/* ── CTA butonu ── */
.sh-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--accent);
    color: var(--navy) !important;
    font-weight: 700;
    font-size: .85rem;
    padding: .48rem 1.15rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.sh-cta-btn:hover {
    background: var(--accent-dark);
    color: var(--navy) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(245,163,0,.35);
}

/* ── Hamburger ── */
.sh-toggler {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: 8px 9px;
    cursor: pointer;
    transition: background .2s;
}
.sh-toggler:hover { background: rgba(255,255,255,.12); }
.sh-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,.82);
    border-radius: 2px;
    transition: .22s;
}

/* ── Scroll sonrası — biraz daha opak ── */
.site-header.scrolled {
    background: rgba(8, 14, 28, 0.95);
    box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 32px rgba(0,0,0,.25);
}

/* ── Şeffaf mod — artık kullanılmıyor ama sınıf varsa devir ── */
.site-header.header-transparent {
    background: rgba(8, 14, 28, 0.55);
}
.site-header.header-transparent.scrolled {
    background: rgba(8, 14, 28, 0.95);
}

/* ── Geriye dönük uyum ── */
.site-header.dark-page.scrolled {
    background: rgba(8, 14, 28, 0.95);
    box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 32px rgba(0,0,0,.25);
}

/* ── Anasayfa — en tepede şeffaf header ── */
.site-header.header-home-top {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}
.sh-topbar.topbar-home-top {
    background: transparent !important;
    border-bottom-color: transparent !important;
}

/* Legacy — başka view'larda nav-link hâlâ kullanılıyorsa */
.site-header .nav-link,
.site-header .navbar-nav .nav-link {
    color: rgba(255,255,255,.75) !important;
    font-weight: 600;
    font-size: .88rem;
    border-radius: 7px;
    padding: .42rem .9rem !important;
    transition: color .2s, background .2s;
}
.site-header .nav-link:hover,
.site-header .navbar-nav .nav-link:hover {
    background: rgba(255,255,255,.07);
    color: #fff !important;
}

/* Navbar brand legacy */
.site-header .navbar-brand { color: #fff !important; }
.navbar-toggler:focus { box-shadow: none; outline: none; }

/* Eski btn-primary-rytill (footer, vb.) */
.btn-primary-rytill {
    display: inline-block;
    background: var(--accent);
    color: var(--navy) !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    border: 2px solid var(--accent);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary-rytill:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 4px 20px rgba(245,163,0,.4);
    transform: translateY(-1px);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin-top: auto;
}

.footer-top {
    padding: 64px 0 48px;
}

.footer-logo {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 300px;
}

/* Social */
.social-links { display: flex; gap: 10px; }

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text);
}

/* Footer headings */
.footer-heading {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

/* Footer nav links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

/* Footer contact list */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.65);
}

.footer-contact i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
    font-size: 0.825rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-link {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom-link:hover { color: var(--accent); }

/* ========================================
   SPLASH — PREMIUM
   ======================================== */

#pageTransition {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--navy);
    pointer-events: all;
    overflow: hidden;
}

/* ── Arkaplan: nokta grid + merkez parıltı ── */
.spl-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(ellipse 65% 60% at 50% 50%, rgba(245,163,0,0.07) 0%, transparent 65%),
        radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
}
.spl-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(245,163,0,0.04) 100%);
    pointer-events: none;
}

/* ── Merkez gövde ── */
.spl-body {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    pointer-events: none;
}

/* ── Logo + Halka ── */
.spl-logo-wrap {
    position: relative;
    width: 112px; height: 112px;
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s;
}
#pageTransition.spl-active  .spl-logo-wrap { opacity: 1; transform: scale(1) translateY(0); }
#pageTransition.spl-entering .spl-logo-wrap { opacity: 1; transform: scale(1) translateY(0); transition: none; }


.spl-img {
    width: 100%; height: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(245,163,0,0.22);
}

/* ── Ayraç çizgisi ── */
.spl-sep {
    width: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,163,0,0.75), transparent);
    margin: 24px 0 20px;
    transition: width 0.5s cubic-bezier(0.4,0,0.2,1) 0.9s;
}
#pageTransition.spl-active  .spl-sep { width: 54px; }
#pageTransition.spl-entering .spl-sep { width: 54px; transition: none; }

/* ── SAFETY harfleri ── */
.spl-safety {
    display: flex; align-items: center; gap: 2px;
}
.spl-safety span {
    font-family: var(--font);
    font-size: 0.72rem; font-weight: 900;
    letter-spacing: 0.32em;
    color: var(--accent);
    opacity: 0;
    transform: translateY(8px);
}
.spl-safety span:nth-child(1) { transition: opacity .3s ease 1.1s,  transform .3s cubic-bezier(.22,1,.36,1) 1.1s; }
.spl-safety span:nth-child(2) { transition: opacity .3s ease 1.18s, transform .3s cubic-bezier(.22,1,.36,1) 1.18s; }
.spl-safety span:nth-child(3) { transition: opacity .3s ease 1.26s, transform .3s cubic-bezier(.22,1,.36,1) 1.26s; }
.spl-safety span:nth-child(4) { transition: opacity .3s ease 1.34s, transform .3s cubic-bezier(.22,1,.36,1) 1.34s; }
.spl-safety span:nth-child(5) { transition: opacity .3s ease 1.42s, transform .3s cubic-bezier(.22,1,.36,1) 1.42s; }
.spl-safety span:nth-child(6) { transition: opacity .3s ease 1.50s, transform .3s cubic-bezier(.22,1,.36,1) 1.50s; }
#pageTransition.spl-active   .spl-safety span { opacity: 1; transform: translateY(0); }
#pageTransition.spl-entering .spl-safety span { opacity: 1; transform: translateY(0); transition: none; }

/* ── Alt progress çizgisi ── */
.spl-progress-bar {
    position: absolute; bottom: 0; left: 0;
    height: 2px; width: 0;
    background: linear-gradient(90deg, transparent, rgba(245,163,0,0.9), rgba(245,163,0,0.4));
    transition: width 2.2s linear 0.2s;
}
#pageTransition.spl-active   .spl-progress-bar { width: 100%; }
#pageTransition.spl-entering .spl-progress-bar { width: 100%; transition: none; }

/* ── Çıkış: perde yukarı çekilir ── */
#pageTransition.spl-leaving {
    animation: splWipeUp 0.75s cubic-bezier(0.76,0,0.24,1) forwards;
    pointer-events: none;
}
@keyframes splWipeUp {
    from { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    to   { clip-path: polygon(0 0, 100% 0, 100% 0,   0 0);    }
}

/* ── Sayfa geçişi: perde yukarıdan iner ── */
#pageTransition.spl-entering {
    animation: splWipeDown 0.65s cubic-bezier(0.76,0,0.24,1) forwards;
}
@keyframes splWipeDown {
    from { clip-path: polygon(0 0, 100% 0, 100% 0,    0 0);    }
    to   { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.sr-hidden {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.sr-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   PREMIUM HEADER UPGRADES
   ======================================== */

/* Nav link — smooth underline */
.site-header .nav-link {
    position: relative;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text) !important;
    padding: 0.5rem 0.9rem !important;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.01em;
}
.site-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.9rem;
    right: 0.9rem;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.site-header .nav-link:hover::after { transform: scaleX(1); }
.site-header .nav-link:hover { background: var(--accent-bg); color: var(--accent-dark) !important; }

/* Dropdown toggle ok animasyonu */
.site-header .dropdown-toggle::after {
    transition: transform 0.25s ease;
    vertical-align: 0.2em;
}
.site-header .dropdown-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }
.site-header .dropdown-toggle[aria-expanded="true"] { color: var(--accent) !important; }

/* ========================================
   PRODUCTS DROPDOWN
   ======================================== */
.products-dropdown {
    min-width: 280px;
    background: var(--navy-mid);\r\n    border: 1px solid rgba(255,255,255,.1);\r\n    border-radius: 14px;\r\n    box-shadow: 0 20px 56px rgba(12,27,51,.55);
    padding: 8px;
    margin-top: 10px !important;
    animation: dropdownIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@@keyframes dropdownIn {
    from { opacity: 0; transform: translateY(-10px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.products-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,.78);\r\n    transition: background var(--transition), color var(--transition);\r\n}\r\n\r\n.products-dropdown .dropdown-item:hover {
    background: rgba(255,255,255,.08);\r\n    color: #fff;
}

.dd-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.products-dropdown .dropdown-divider {
    margin: 6px 8px;
    border-color: rgba(255,255,255,.08);\r\n}\r\n\r\n.dd-all {
    font-weight: 700 !important;
    color: var(--accent) !important;
    justify-content: center;
}

.dd-all:hover {
    background: var(--accent-bg) !important;\r\n    color: var(--accent) !important;\r\n}

/* Dropdown toggle arrow */
.site-header .dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: middle;
}

/* ========================================
   UTILITIES
   ======================================== */
.text-orange { color: var(--accent) !important; }
.bg-orange   { background-color: var(--accent) !important; }

/* ========================================
   İÇ SAYFA — ORTAK HERO
   ======================================== */
.inner-hero {
    background: var(--navy);
    padding: 116px 0 60px;   /* 100px fixed header + 16px visual gap */
    position: relative;
    overflow: hidden;
}
@media (max-width: 991px) {
    .inner-hero { padding-top: 96px; }
}
.inner-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(245,163,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.inner-hero-inner {
    position: relative;
    z-index: 1;
}
.inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.inner-breadcrumb a {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.inner-breadcrumb a:hover { color: var(--accent); }
.inner-breadcrumb span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
}
.inner-breadcrumb .bc-current {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}
.inner-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--white);
    margin: 0 0 12px;
}
.inner-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    max-width: 520px;
    line-height: 1.7;
    margin: 0;
}
.inner-hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.inner-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-bottom: 16px;
}
.inner-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 9px 18px;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.inner-back-btn:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.06);
}

/* ── İç sayfa içerik padding ── */
.inner-content { padding: 56px 0 80px; }

/* ── Ortak scroll reveal ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

