:root {
    --pillbar-top: 16px;
    --pillbar-surface: rgba(255, 255, 255, 0.78);
    --pillbar-border: rgba(255, 255, 255, 0.7);
    --pillbar-shadow: 0 14px 38px rgba(24, 32, 28, 0.16);
}

body.page-inner {
    padding-top: 96px;
}

/* İç sayfalarda pill bar'ın oturduğu üst şerit, flush hero kullanmayan
   sayfalarda (Renkler, ürün detay, arama...) çıplak beyaz kalıyordu.
   Buraya pill ile aynı dili konuşan yumuşak, sıcak bir başlık zemini
   koyuyoruz. body/html'nin arka planı yok (şeffaf) olduğu için bu katman
   sayfa içeriğinin ve flush hero'ların ARDINDA kalır: hero'lu sayfalarda
   görünmez (hero -96px ile üstü örter), yalnızca hero'suz sayfalarda
   beyazın yerini alır. Tonu değiştirmek için tek satır: aşağıdaki renk. */
body.page-inner::before {
    content: "";
    position: fixed;
    inset: 0 0 auto 0;
    height: 124px;          /* pill alt kenarını (≈88px) rahat kapsar */
    z-index: -1;            /* içerik ve flush hero'ların ardında kalır */
    pointer-events: none;
    background: linear-gradient(180deg,
        #eef0f3 0%, #eef0f3 72%, rgba(238, 240, 243, 0) 100%);
}

.floating-pillbar {
    position: fixed !important;
    top: var(--pillbar-top) !important;
    right: 18px;
    left: 18px;
    width: auto !important;
    padding: 0 !important;
    background: transparent !important;
    z-index: 1050;
}

.pillbar-surface {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    border: 1px solid var(--pillbar-border);
    border-radius: 999px;
    box-shadow: var(--pillbar-shadow);
}

/* Blur'u ayrı katmana aldık: .pillbar-surface artık "backdrop root" değil,
   böylece içindeki açılır paneller de sayfayı blur'layabiliyor. */
.pillbar-surface::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: var(--pillbar-surface);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
}

.pillbar-layout {
    display: grid;
    grid-template-columns: minmax(130px, 0.75fr) minmax(0, 3.5fr) auto;
    align-items: center;
    min-height: 72px;
    padding: 0 12px 0 24px;
}

.pillbar-brand,
.pillbar-navigation,
.pillbar-actions {
    min-width: 0;
}

.floating-pillbar .header-logo img {
    display: block;
    width: auto;
    max-width: 142px;
    height: 42px;
    object-fit: contain;
    transform: translateY(2px);
}

.pillbar-brand,
.pillbar-actions,
.floating-pillbar .header-menu,
.floating-pillbar .header-menu > .nav-menu {
    display: flex;
    align-items: center;
    min-height: 72px;
}

.pillbar-brand {
    justify-content: flex-start;
}

.pillbar-actions {
    justify-content: flex-end;
}

.floating-pillbar .header-menu {
    width: 100%;
    justify-content: center;
}

.floating-pillbar .header-menu > .nav-menu {
    width: 100%;
    justify-content: center;
    margin: 0;
    padding: 0;
}

/* İç sayfalarda pill bar, sabit bir şerit yerine içeriğinin gerçek
   genişliğini izler. Arama alanı açıldıkça yüzey de birlikte genişler. */
body.page-inner .pillbar-surface {
    width: max-content;
    max-width: min(1500px, 100%);
}

body.page-inner .pillbar-layout {
    grid-template-columns: auto minmax(0, max-content) auto;
}

body.page-inner .floating-pillbar .header-menu {
    width: auto;
}

body.page-inner .floating-pillbar .header-menu > .nav-menu {
    width: max-content;
    max-width: 100%;
}

.floating-pillbar .header-menu > .nav-menu > li {
    display: flex;
    align-items: center;
    height: 72px;
    padding: 0 clamp(8px, 0.9vw, 15px);
}

.floating-pillbar .header-menu > .nav-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
}

/* Üst seviye menü öğelerindeki aşağı ok göstergesi kaldırıldı */
.floating-pillbar .header-menu ul li.menu-item-has-children > a::after {
    content: none;
    margin-left: 0;
}

.floating-pillbar .header-menu .sub-menu,
.floating-pillbar .header-menu .mega-sub-menu {
    top: calc(100% + 10px);
    border: 1px solid var(--pillbar-border);
    border-top: 0;
    border-radius: 16px;
    background: var(--pillbar-surface);
    box-shadow: var(--pillbar-shadow);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
}

.floating-pillbar .header-menu ul li:hover > .sub-menu,
.floating-pillbar .header-menu ul li:hover > .mega-sub-menu {
    top: calc(100% + 2px);
}

/* Dil vb. açılır menüler de pill bar yüzeyiyle aynı */
.floating-pillbar .header-meta .dropdown-menu {
    border: 1px solid var(--pillbar-border);
    border-radius: 14px;
    background: var(--pillbar-surface);
    box-shadow: var(--pillbar-shadow);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
}

.floating-pillbar .header-meta {
    gap: 4px;
    justify-content: flex-end;
}

.floating-pillbar .header-meta > * {
    margin-left: 0;
}

.floating-pillbar .header-meta .action {
    display: grid;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    place-items: center;
    transition: background-color 180ms ease, color 180ms ease;
}

.floating-pillbar .header-meta .action:hover {
    color: #f2a100;
    background: rgba(242, 161, 0, 0.12);
}

/* Dil seçiminde hover yalnız ikon çizgisine uygulanır; zemin renksiz kalır. */
.floating-pillbar .header-meta .dropdown > .action:hover,
.floating-pillbar .header-meta .dropdown > .action:focus-visible,
.floating-pillbar-mobile .header-meta .dropdown > .action:hover,
.floating-pillbar-mobile .header-meta .dropdown > .action:focus-visible {
    color: #f2a100;
    background: transparent;
}

.floating-pillbar .header-meta .action i {
    line-height: 1;
}

/* Pill bar — hover ile genişleyen arama (in-flow: açılınca nav daralır, üste binmez) */
.floating-pillbar .pill-search {
    display: flex;
    align-items: center;
    height: 40px;
    margin-right: 6px;
}

.floating-pillbar .pill-search-form {
    display: flex;
    align-items: center;
    height: 40px;
    border-radius: 999px;
    transition: background-color 260ms ease, box-shadow 260ms ease, padding 260ms ease;
}

.floating-pillbar .pill-search:hover .pill-search-form,
.floating-pillbar .pill-search:focus-within .pill-search-form {
    padding-left: 4px;
    background: var(--pillbar-surface);
    box-shadow: var(--pillbar-shadow);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
}

.floating-pillbar .pill-search-btn {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: color 180ms ease;
}

.floating-pillbar .pill-search-btn:hover {
    color: #f2a100;
}

.floating-pillbar .pill-search-btn i {
    line-height: 1;
    font-size: 24px;
}

.floating-pillbar .pill-search-input {
    width: 0;
    min-width: 0;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 13px;
    color: #1b1b1b;
    opacity: 0;
    outline: none;
    transition: width 300ms cubic-bezier(.22, 1, .36, 1), opacity 220ms ease, padding 300ms ease;
}

.floating-pillbar .pill-search:hover .pill-search-input,
.floating-pillbar .pill-search:focus-within .pill-search-input {
    width: 170px;
    padding-right: 12px;
    opacity: 1;
}

/* Tarayıcı otomatik doldurma (autofill) mavi/lila zemin basıyordu; cam pill
   üzerinde şeffaf kalsın diye nötrle (uzun transition hilesi). */
.floating-pillbar .pill-search-input:-webkit-autofill,
.floating-pillbar .pill-search-input:-webkit-autofill:hover,
.floating-pillbar .pill-search-input:-webkit-autofill:focus,
.floating-pillbar .pill-search-input:autofill {
    -webkit-text-fill-color: #1b1b1b;
    caret-color: #1b1b1b;
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    box-shadow: 0 0 0 1000px transparent inset;
    transition: background-color 600000s 0s, color 600000s 0s;
}

.floating-pillbar .offer-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 17px;
    border-radius: 999px;
    white-space: nowrap;
}

.floating-pillbar .dropdown-search {
    margin-top: 12px !important;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(24, 32, 28, 0.16);
}

/* Sabit sosyal bağlantılar: ikincil, sessiz bir cam yüzey. */
.sticky-icon {
    top: 50%;
    right: 18px;
    z-index: 1030;
    width: auto;
    gap: 8px;
    align-items: flex-end;
    transform: translateY(-50%);
}

.sticky-icon a {
    display: grid;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    color: #fff;
    background: rgba(24, 24, 24, .64);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    place-items: center;
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    backdrop-filter: blur(12px) saturate(130%);
    transform: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .25s cubic-bezier(.2, .8, .2, 1);
}

.sticky-icon a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .34);
    background: rgba(242, 161, 0, .9);
    transform: translateX(-3px);
}

.sticky-icon a i,
.sticky-icon a:hover i {
    width: auto;
    height: auto;
    margin: 0;
    color: currentColor;
    background: transparent;
    font-size: 16px;
    line-height: 1;
    transform: none;
}

.sticky-icon .sticky-whatsapp {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-width: 38px;
    padding: 0;
    margin-top: 3px;
    overflow: visible;
    color: #fff;
    border-color: rgba(31, 168, 85, .46);
    background: linear-gradient(135deg, #22b65d, #168946);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    font-family: "Manrope", "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1;
}

.sticky-icon .sticky-whatsapp:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .34);
    background: #168946;
    box-shadow: 0 8px 18px rgba(31, 168, 85, .24);
}

.sticky-whatsapp::after {
    position: absolute;
    inset: -1px;
    z-index: 1;
    pointer-events: none;
    border: 1px solid rgba(31, 168, 85, .5);
    border-radius: inherit;
    content: "";
    opacity: 0;
    animation: whatsapp-ring 7s ease-out infinite;
}

.sticky-whatsapp svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    animation: whatsapp-nudge 7s ease-in-out infinite;
    transform-origin: 50% 70%;
}

@keyframes whatsapp-nudge {
    0%, 72%, 100% { transform: rotate(0) scale(1); }
    75% { transform: rotate(-8deg) scale(1.06); }
    78% { transform: rotate(8deg) scale(1.06); }
    81% { transform: rotate(-5deg) scale(1.03); }
    84% { transform: rotate(0) scale(1); }
}

@keyframes whatsapp-ring {
    0%, 70%, 100% { opacity: 0; transform: scale(1); }
    74% { opacity: .55; }
    86% { opacity: 0; transform: scale(1.18); }
}

/* ==========================================================================
   WHATSAPP CTA STANDARDI  (global — bu dosya HER frontend sayfasında yüklenir)
   Tüm "Teklif Al / WhatsApp" butonları aynı WhatsApp yeşili olsun diye TEK
   kaynak. landing.css yalnız 5 sayfada yüklendiğinden yeşil kuralı burada
   tutuyoruz; böylece tabletop / cnc / lab / gext / aksesuar / wc gibi kendi
   accent rengini (amber, hatta wc'de mavi) kullanan sayfalarda da geçerli olur.
   İşaret: buton içindeki .fa-whatsapp ikonu (yalnız teklif/WhatsApp CTA'larında
   bulunur). Özgüllük 0,2,0 (hover 0,3,0) → bespoke .X-btn (0,1,0) kurallarını
   yükleme sırasından bağımsız yener.
   ========================================================================== */
:root { --wa-green: #25d366; --wa-green-d: #1ebe5b; }

.lp-btn:has(.fa-whatsapp) {
    background: var(--wa-green);
    border-color: var(--wa-green);
    color: #fff;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.26);
}

.lp-btn:has(.fa-whatsapp):hover {
    background: var(--wa-green-d);
    border-color: var(--wa-green-d);
    color: #fff;
    box-shadow: 0 20px 38px rgba(37, 211, 102, 0.34);
    transform: translateY(-2px);
}

/* ==========================================================================
   SOL BÖLÜM NAVİGASYONU (scroll-spy) — "Cam panel stepper"  [GLOBAL]
   Buzlu cam dikey panel · numaralı daireler · etiketler kapalı (hover'da açılır).
   Dikey hat AKTİF daireye kadar segment segment dolar; geçilen daireler dolu
   amber, sıradakiler boş çerçeve. Numara CSS counter ile gelir → markup gerekmez.
   Sürücüler: landing.js (server markup: anasayfa/kategori/application) VEYA
   section-spy.js (bespoke çözüm sayfaları: otomatik kurulur). Bu dosya her
   frontend sayfasında yüklendiği için stil tek kaynaktan gelir.
   ========================================================================== */
:root { --lp-accent: #f2a100; --lp-accent-dark: #cf8800; }

.lp-spy {
    /* tek yerden ayar */
    --spy-node: 34px;
    --spy-gap: 16px;
    --spy-pad: 16px;
    --spy-halo: rgba(242, 161, 0, 0.26);

    position: fixed;
    left: clamp(14px, 2vw, 40px);
    top: 50%;
    z-index: 40;
    transform: translateY(-50%);
    -webkit-user-select: none;
    user-select: none;
    padding: var(--spy-pad);
    border-radius: 20px;
    background: rgba(22, 18, 12, 0.62);
    -webkit-backdrop-filter: blur(16px) saturate(125%);
    backdrop-filter: blur(16px) saturate(125%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 26px 64px -22px rgba(0, 0, 0, 0.62),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    /* çok bölümlü sayfalarda panel ekranı aşarsa içeride kaysın */
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
}
.lp-spy::-webkit-scrollbar { width: 0; height: 0; }

.lp-spy-track {
    position: absolute;
    left: calc(var(--spy-pad) + var(--spy-node) / 2);
    top: calc(var(--spy-pad) + var(--spy-node) / 2);
    bottom: calc(var(--spy-pad) + var(--spy-node) / 2);
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.16);
    border-radius: 2px;
    overflow: hidden;
}

.lp-spy-progress {
    position: absolute;
    inset: 0;
    transform: scaleY(0);
    transform-origin: top center;
    background: linear-gradient(180deg, var(--lp-accent), var(--lp-accent-dark));
    border-radius: inherit;
    /* kaydırmaya bağlı SÜREKLI dolgu: kademeli değil, scroll ile akıcı ilerler */
    transition: transform .12s linear;
}

.lp-spy-list {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spy-gap);
    counter-reset: spy;
}

.lp-spy-item { counter-increment: spy; }

.lp-spy-item a {
    display: flex;
    align-items: center;
    gap: 0;
    height: var(--spy-node);
    text-decoration: none;
    cursor: pointer;
}

/* numaralı daire — numara CSS counter'dan gelir */
.lp-spy-dot {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: var(--spy-node);
    height: var(--spy-node);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), background-color .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.lp-spy-dot::before { content: counter(spy, decimal-leading-zero); }

/* aktif daire çevresinde yayılan halka (nabız) */
.lp-spy-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid var(--lp-accent);
    opacity: 0;
    transform: scale(.6);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
}

/* eski markup'taki numara span'i (varsa) artık dairenin içinde → gizle */
.lp-spy-num { display: none; }

.lp-spy-label {
    display: inline-flex;
    align-items: center;
    max-width: 0;
    margin-left: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
    line-height: 1;
    transition: max-width .45s cubic-bezier(.16, 1, .3, 1), margin-left .45s cubic-bezier(.16, 1, .3, 1), opacity .3s ease, color .3s ease;
}

/* KAPALI mod varsayılan: yalnız numaralı daireler. Üstüne gelince (veya klavye
   ile odaklanınca) etiketler açılır → panel genişler. */
.lp-spy:hover .lp-spy-label,
.lp-spy:focus-within .lp-spy-label {
    max-width: 260px;
    margin-left: 13px;
    opacity: 1;
}

/* hover geri bildirimi */
.lp-spy-item a:hover .lp-spy-dot { border-color: var(--lp-accent); color: #fff; }
.lp-spy-item a:hover .lp-spy-label { color: #fff; }

/* GEÇİLEN — tamamlanmış, dolu amber daire */
.lp-spy-item.is-done .lp-spy-dot {
    background: var(--lp-accent);
    border-color: var(--lp-accent);
    color: #1b1b1b;
}
.lp-spy-item.is-done .lp-spy-label { color: rgba(255, 255, 255, 0.88); }

/* AKTİF — dolu amber + halka + hafif büyüme + parlak etiket */
.lp-spy-item.is-active .lp-spy-dot {
    background: var(--lp-accent);
    border-color: var(--lp-accent);
    color: #1b1b1b;
    transform: scale(1.08);
    box-shadow: 0 0 0 4px var(--spy-halo);
}
.lp-spy-item.is-active .lp-spy-dot::after { opacity: .6; transform: scale(1); }
.lp-spy-item.is-active .lp-spy-label { color: #fff; font-weight: 700; }

@media (prefers-reduced-motion: no-preference) {
    .lp-spy-item.is-active .lp-spy-dot::after {
        animation: lp-spy-pulse 2.2s ease-out infinite;
    }
}

@keyframes lp-spy-pulse {
    0%   { opacity: .55; transform: scale(.75); }
    70%  { opacity: 0;   transform: scale(1.6); }
    100% { opacity: 0;   transform: scale(1.6); }
}

/* kısa ekranlarda panel sığsın */
@media (max-height: 560px) {
    .lp-spy { --spy-node: 28px; --spy-gap: 10px; --spy-pad: 12px; }
    .lp-spy-label { font-size: 12px; }
    .lp-spy-dot { font-size: 11px; }
}

/* yalnız geniş ekranda (içerikle çakışmasın) */
@media (max-width: 1199px) {
    .lp-spy { display: none; }
}

/* ==========================================================================
   MOBİL bölüm göstergesi (≤991px): pill bar ALTINDA yatay çizgi + noktalar +
   ilerleme dolgusu. Aynı .lp-spy markup'ı ve landing.js mantığı; numara YOK.
   Aktif bölümün adı çubuğun altında ortalı belirir, kaydırdıkça değişir.
   (Bu blok, yukarıdaki display:none'ı geçersiz kılmak için ONDAN SONRA gelir.)
   ========================================================================== */
@media (max-width: 991px) {
    /* Kutu/pill YOK — yalnız ince çizgi + noktalar (içeriğin üstünde yüzer). */
    .page-home .lp-spy {
        display: block;
        position: fixed;
        top: 80px;          /* mobil pill bar'ın hemen altı */
        left: 16px;
        right: 16px;
        bottom: auto;
        transform: none;
        width: auto;
        max-width: none;
        height: 28px;
        max-height: none;
        overflow: visible;
        z-index: 1040;      /* pill bar (1050) altında, içeriğin üstünde */
        padding: 0 20px;
        border: 0;
        border-radius: 0;
        background: none;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        box-shadow: none;
    }

    /* yatay ray + ilerleme (dikey scaleY yerine scaleX); arka plan olmadığından
       çizgi biraz daha belirgin + hafif gölge ile her zeminde okunur. */
    .page-home .lp-spy-track {
        left: 20px;
        right: 20px;
        top: 50%;
        bottom: auto;
        width: auto;
        height: 2px;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.32);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    }

    .page-home .lp-spy-progress {
        transform-origin: left center;
        transform: scaleX(var(--spy-fill, 0)) !important;
        background: linear-gradient(90deg, var(--lp-accent), var(--lp-accent-dark));
    }

    .page-home .lp-spy-list {
        height: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    .page-home .lp-spy-item a {
        height: 100%;
        padding: 0;
    }

    /* numara YOK — yalnız küçük nokta (arka plansız okunur kalsın diye gölge) */
    .page-home .lp-spy-dot {
        width: 10px;
        height: 10px;
        border-width: 1.5px;
        font-size: 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
    }

    .page-home .lp-spy-dot::before { content: none; }
    .page-home .lp-spy-dot::after { inset: -3px; }
    .page-home .lp-spy-item.is-active .lp-spy-dot { transform: scale(1.18); }

    /* aktif bölümün adı: çubuğun ALTINDA ortalı; yalnız aktif görünür */
    .page-home .lp-spy-label {
        position: absolute;
        top: calc(100% + 6px);
        left: 50%;
        max-width: calc(100vw - 48px);
        margin: 0;
        overflow: visible;
        opacity: 0;
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        color: #fff;
        white-space: nowrap;
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
        transform: translate(-50%, -3px);
        transition: opacity .3s ease, transform .3s ease;
        pointer-events: none;
    }

    /* dokunmatikte hover/focus tüm etiketleri AÇMASIN (üst üste binmesin) */
    .page-home .lp-spy:hover .lp-spy-label,
    .page-home .lp-spy:focus-within .lp-spy-label {
        max-width: calc(100vw - 48px);
        margin: 0;
        opacity: 0;
    }

    .page-home .lp-spy-item.is-active .lp-spy-label {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-spy-dot,
    .lp-spy-dot::after,
    .lp-spy-label,
    .lp-spy-progress { transition: none; }
    .lp-spy-dot::after { animation: none; }
}

.lp-spy-item a:focus-visible {
    outline: 2px solid var(--lp-accent);
    outline-offset: 3px;
    border-radius: 6px;
}

.header-mobile {
    position: fixed !important;
    top: 0;
    z-index: 1050;
    background: transparent !important;
    pointer-events: none;
}

.floating-pillbar-mobile {
    margin: 12px;
    padding: 9px 0 !important;
    border: 1px solid var(--pillbar-border);
    border-radius: 999px;
    background: var(--pillbar-surface);
    box-shadow: var(--pillbar-shadow);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
    pointer-events: auto;
}

.floating-pillbar-mobile .container {
    padding-right: 18px;
    padding-left: 18px;
}

.floating-pillbar-mobile .header-logo img {
    width: auto;
    /* min(...,100%): dar telefonlarda orta sütundan taşıp hamburger/dil
       ikonuyla örtüşmesin (eski sabit 126px ≤375px'te sütunu aşıyordu). */
    max-width: min(126px, 100%);
    height: 38px;
    object-fit: contain;
    /* Logo görseli "GÜLMAR®" — ® sağ kenarda ek genişlik yaptığından kelimenin
       optik merkezi sola kayıyor; orta sütunda geometrik ortalı olsa da yazı
       ortada durmuyor görünüyordu. Görseli ~3px sağa alarak optik dengeliyoruz.
       (Logo simetrik bir wordmark'la değişirse bu 3px'i 0'a çek.) */
    transform: translate(3px, 2px);
}

.floating-pillbar-mobile .header-toggle,
.floating-pillbar-mobile .header-meta {
    min-height: 40px;
    display: flex;
    align-items: center;
}

.floating-pillbar-mobile .header-meta {
    justify-content: flex-end;
}

.floating-pillbar-mobile .header-meta .action {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
}

.header-mobile-bottom {
    display: none !important;
}

.canvas-search {
    padding: 0 20px 20px;
}

.canvas-search form {
    position: relative;
}

.canvas-search input {
    width: 100%;
    height: 48px;
    padding: 0 52px 0 16px;
    border: 1px solid #dedede;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
}

.canvas-search button {
    position: absolute;
    top: 4px;
    right: 4px;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: #f2a100;
    place-items: center;
}

.canvas-search button i {
    font-size: 22px;
    line-height: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .floating-pillbar {
        right: 12px;
        left: 12px;
    }

    body.page-inner .pillbar-surface {
        width: 100%;
    }

    .pillbar-layout {
        grid-template-columns: 112px minmax(0, 1fr) auto;
        padding-left: 18px;
    }

    .floating-pillbar .header-logo img {
        max-width: 112px;
        height: 36px;
    }

    .floating-pillbar .header-menu > .nav-menu > li {
        padding-right: 7px;
        padding-left: 7px;
    }

    .floating-pillbar .header-menu > .nav-menu > li > a {
        font-size: 11px;
    }

    .floating-pillbar .offer-btn a {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 991px) {
    body.page-inner {
        padding-top: 82px;
    }

    body.page-inner::before {
        height: 104px;
    }

    .sticky-icon {
        top: auto;
        right: 12px;
        bottom: 14px;
        display: flex;
        transform: none;
    }

    .sticky-icon a:not(.sticky-whatsapp) {
        display: none;
    }

    .sticky-icon .sticky-whatsapp {
        width: 42px;
        min-width: 42px;
        height: 42px;
    }

    /* WhatsApp butonu sağ-altta sabit (bottom:14px, 42px); yukarı çık butonu
       onunla çakışmasın diye sağda kalıp hemen üstüne istiflenir. */
    .back-to-top {
        right: 12px;
        bottom: 64px;
    }

}

@media (prefers-reduced-motion: reduce) {
    .sticky-whatsapp::after,
    .sticky-whatsapp svg {
        animation: none;
    }
}

@supports not ((-webkit-backdrop-filter: blur(18px)) or (backdrop-filter: blur(18px))) {
    .pillbar-surface::before,
    .floating-pillbar-mobile,
    .product-mega-panel,
    .floating-pillbar .header-menu .sub-menu,
    .floating-pillbar .header-menu .mega-sub-menu,
    .floating-pillbar .header-meta .dropdown-menu {
        background: rgba(255, 255, 255, 0.96);
    }
}
/* Product mega menu */
.product-mega-holder::after {
    position: fixed;
    top: calc(var(--pillbar-top) + 62px);
    left: 50%;
    width: min(1180px, calc(100vw - 48px));
    height: 28px;
    content: "";
    pointer-events: none;
    transform: translateX(-50%);
}

.product-mega-holder:hover::after,
.product-mega-holder:focus-within::after,
.product-mega-holder.is-open::after {
    pointer-events: auto;
}

.product-mega-panel {
    position: fixed;
    top: calc(var(--pillbar-top) + 76px);
    left: 50%;
    width: min(1180px, calc(100vw - 48px));
    max-height: calc(100vh - 118px);
    padding: 18px 24px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--pillbar-border);
    border-radius: 18px;
    background: var(--pillbar-surface);
    box-shadow: var(--pillbar-shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px) scale(.992);
    transform-origin: 50% 0;
    transition: opacity 120ms ease, transform 150ms cubic-bezier(.2, .8, .2, 1), visibility 0s linear 150ms;
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
}

.product-mega-holder.is-open > .product-mega-panel,
html:not(.hdr-menu-js) .product-mega-holder:hover > .product-mega-panel,
html:not(.hdr-menu-js) .product-mega-holder:focus-within > .product-mega-panel {
    opacity: 1;
    transition: opacity 130ms ease, transform 170ms cubic-bezier(.2, .8, .2, 1), visibility 0s linear 0s;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

/* Komşu menüye geçerken eski panel tek karede devreden çıkar. Böylece
   Renkler/CNC gibi aynı konumu kullanan paneller üst üste görünmez. */
.product-mega-holder.is-switching-out > .product-mega-panel {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate(-50%, 5px) scale(.995) !important;
    transition: none !important;
}

.product-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-mega-section {
    min-width: 0;
    padding-right: 22px;
    /* Bölüm aksan tonu — renk kodlu squircle ikon + sayaç. Gruplar = turuncu. */
    --sec-accent: #f05a22;
    --sec-soft: rgba(240, 90, 34, 0.12);
    --sec-ink: #c5430f;
}

.product-mega-section-applications {
    padding-right: 0;
    padding-left: 24px;
    /* Uygulama bölümü = teal aksan. */
    --sec-accent: #0ea5a0;
    --sec-soft: rgba(14, 165, 160, 0.14);
    --sec-ink: #0a7c78;
    /* Sert gri çizgi yerine üst/alta sönümlenen frosted hairline (2026). */
    border-left: 1px solid transparent;
    border-image: linear-gradient(180deg, transparent, rgba(20, 28, 24, 0.14) 18%, rgba(20, 28, 24, 0.14) 82%, transparent) 1;
}

.product-mega-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    margin: 0 0 6px;
    color: #44423f;                 /* nötr "kicker" mürekkebi; renk ikon + sayaçta */
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;      /* lang metni zaten büyük harf → tracking için güvenli */
}

/* Renk kodlu squircle ikon kabı — bölüm tonunda (var --sec-*). */
.product-mega-heading i {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--sec-soft, rgba(240, 90, 34, 0.12));
    color: var(--sec-accent, #f05a22);
    font-size: 15px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55),
                0 1px 2px rgba(20, 28, 24, 0.06);
}

/* Açılışta başlıkların hafif staggered girişi (JS .is-open ile tetiklenir). */
@media (prefers-reduced-motion: no-preference) {
    .product-mega-holder.is-open .product-mega-heading {
        animation: pm-head-in .45s cubic-bezier(.2, .8, .2, 1) backwards;
    }
    .product-mega-holder.is-open .product-mega-section-applications .product-mega-heading { animation-delay: .05s; }
    .product-mega-holder.is-open .product-mega-spotlight .product-mega-heading { animation-delay: .10s; }
}
@keyframes pm-head-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: none; }
}

.product-mega-list {
    display: grid;
}

.product-mega-group {
    position: relative;             /* sol dikey sekmenin (ÜRETİCİ/ANA BAYİİ) tutturma bağlamı */
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    min-height: 66px;
    padding: 8px 0;
    border-bottom: 1px solid #e4e4e4;
}

.product-mega-group:last-child {
    border-bottom: 0;
}

.product-mega-thumb {
    display: grid !important;
    width: 56px;
    height: 56px;
    overflow: hidden;
    border-radius: 7px;
    background: #f3f3f1;
    place-items: center;
    /* Tüm thumb kutuları (grup foto + uygulama ikonu) yükseltilmiş kart gibi
       havada süzülsün. overflow:hidden elemanın KENDİ dış gölgesini kırpmaz. */
    box-shadow:
        0 8px 16px -6px rgba(20, 28, 24, 0.30),
        0 3px 6px -2px rgba(20, 28, 24, 0.16);
    transition: box-shadow 220ms ease, transform 220ms ease;
}

.product-mega-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-mega-thumb-icon {
    background: #fff;
}

/* Hover'da kare biraz daha yükselip gölgesi büyür → "havada" hissi güçlenir.
   Tüm thumb kutularına (grup foto + uygulama ikonu) uygulanır. */
.product-mega-group:hover .product-mega-thumb {
    transform: translateY(-3px);
    box-shadow:
        0 16px 26px -8px rgba(20, 28, 24, 0.40),
        0 6px 12px -3px rgba(20, 28, 24, 0.22);
}

.product-mega-thumb-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    /* Uygulama ikonlarının altına yumuşak gölge — derinlik / yere oturma hissi.
       drop-shadow ikonun şeklini takip eder (kare kutu gölgesi değil). */
    filter: drop-shadow(0 3px 3px rgba(20, 28, 24, 0.30));
}

.product-mega-thumb i {
    color: #202020;
    font-size: 24px;
}

.product-mega-copy {
    min-width: 0;
}

.product-mega-title {
    display: inline-block !important;
    margin-bottom: 4px;
    color: #171717 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.product-mega-title:hover {
    color: #f05a22 !important;
}

.product-mega-title-brand {
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
}

.product-mega-title-brand img {
    width: auto;
    max-width: 76px;
    height: 21px;
    object-fit: contain;
}

.product-mega-gentas-mark {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    transform: translateY(3px);
}

.product-mega-title-brand .product-mega-gentas-mark img {
    width: 100px;
    max-width: 100px;
    height: auto;
}

.product-mega-gentas-mark sup {
    position: absolute;
    top: -8px;
    right: -8px;
    color: #242424;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

/* Mega-menü grup rozetleri — başlığın yanında, kayan metalik shimmer.
   ALTIN = Üretici (Gülmar üretimi) · GÜMÜŞ = Ana Bayii (Gentaş ürünleri).
   Teknik ana sayfadaki "Ana Bayii" rozetiyle aynı: background-size:200% +
   background-position animasyonu (göz yormayan çok yavaş geçiş). */
/* SOL DİKEY SEKME — kartın sol kenarından dışarı taşar; düz sağ kenar + derinlik
   gölgesiyle "kartın altından/arkasından çıkıyor" hissi. Yazı dik (writing-mode),
   akan gradient DİKEY süzülür. İngilizce uzun metin artık başlığı taşırmaz. */
.pm-maker-badge,
.pm-dealer-badge {
    position: absolute;
    top: 50%;
    left: 1px;
    transform: translate(-100%, -50%) rotate(180deg);  /* sol kenara bitişik + dikey ortalı + yazı tabanı SAĞA */
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;            /* dik yazı; 180° ile tabanı sağa, aşağıdan-yukarı okunur */
    text-orientation: mixed;
    padding: 8px 3px;
    border-radius: 0 7px 7px 0;           /* 180° sonrası: dış (sol) köşeler yuvarlak, kart kenarı düz */
    font-size: 8.5px !important;
    font-weight: 800 !important;
    letter-spacing: .03em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    background-size: 100% 260%;            /* dikey akış için */
    animation: pm-maker-sheen 4.5s ease-in-out infinite;
    box-shadow: 4px -3px 9px -3px rgba(20, 28, 24, .4);  /* 180° sonrası ≈ sol-alt derinlik */
}

/* ALTIN — Gülmar üretimi (mega_use_brand_logo). Dikey koyu→parlak→koyu bant. */
.pm-maker-badge {
    color: #3a2606 !important;
    /* background-image (kısayol DEĞİL): ortak bloktaki background-size'ı sıfırlamasın
       → background-position animasyonu çalışır (akan gradient). */
    background-image: linear-gradient(180deg,
        #7d5410 0%, #caa137 30%, #fff2c4 50%, #caa137 70%, #7d5410 100%);
    border: 1px solid rgba(154, 106, 18, .5);
    border-left: 0;                      /* 180° sonrası karta yapışan kenar (görsel sağ) çizgisiz */
}

/* GÜMÜŞ — Gentaş Ana Bayii (mega_use_gentas_logo). */
.pm-dealer-badge {
    color: #2b3138 !important;
    background-image: linear-gradient(180deg,
        #868d95 0%, #c4c9cf 30%, #ffffff 50%, #c4c9cf 70%, #868d95 100%);
    border: 1px solid rgba(120, 128, 138, .55);
    border-left: 0;
}

@keyframes pm-maker-sheen {
    0%   { background-position: 50% 0%; }
    50%  { background-position: 50% 100%; }
    100% { background-position: 50% 0%; }
}

/* Başlık hover'ı (turuncu) rozet metinlerini ezmesin */
.product-mega-title:hover .pm-maker-badge  { color: #3a2606 !important; }
.product-mega-title:hover .pm-dealer-badge { color: #2b3138 !important; }

@media (prefers-reduced-motion: reduce) {
    .pm-maker-badge,
    .pm-dealer-badge { animation: none; background-position: 50% 30%; }
}

.product-mega-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 7px;
}

.product-mega-tags a,
.product-mega-tags > span {
    display: inline-flex !important;
    align-items: center;
    min-height: 22px;
    padding: 2px 9px;
    border: 1px solid #d8dadd;
    border-radius: 5px;
    color: #303030 !important;
    background: #fff;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.product-mega-tags a:hover {
    border-color: rgba(240, 90, 34, 0.5);
    color: #d84812 !important;
    background: rgba(240, 90, 34, 0.06);
}

.product-mega-mobile details {
    width: 100%;
}

.product-mega-mobile summary {
    position: relative;
    padding: 15px 36px 15px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    list-style: none;
    cursor: pointer;
}

.product-mega-mobile summary::-webkit-details-marker {
    display: none;
}

.product-mega-mobile summary::after {
    position: absolute;
    top: 50%;
    right: 18px;
    content: "+";
    font-size: 20px;
    line-height: 1;
    transform: translateY(-50%);
}

.product-mega-mobile details[open] summary::after {
    content: "-";
}

.product-mega-mobile-panel {
    padding: 10px 14px 20px;
    background: #f7f7f5;
}

.product-mega-mobile-panel .product-mega-grid {
    grid-template-columns: 1fr;
}

.product-mega-mobile-panel .product-mega-section,
.product-mega-mobile-panel .product-mega-section-applications {
    padding: 0;
    border-left: 0;
}

.product-mega-mobile-panel .product-mega-section-applications {
    margin-top: 22px;
}

.product-mega-mobile-panel .product-mega-heading {
    font-size: 14px;
}

.product-mega-mobile-panel .product-mega-group {
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 84px;
    gap: 12px;
}

.product-mega-mobile-panel .product-mega-thumb {
    width: 62px;
    height: 62px;
}

.product-mega-mobile-panel .product-mega-thumb-icon img {
    width: 46px;
    height: 46px;
}

.product-mega-mobile-panel .product-mega-title {
    font-size: 13px !important;
}

.product-mega-mobile-panel .product-mega-tags a,
.product-mega-mobile-panel .product-mega-tags > span {
    padding: 3px 7px;
    font-size: 10px !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product-mega-panel {
        width: calc(100vw - 28px);
        padding: 20px;
    }

    .product-mega-section {
        padding-right: 20px;
    }

    .product-mega-section-applications {
        padding-right: 0;
        padding-left: 22px;
    }

    .product-mega-group {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 12px;
    }

    .product-mega-thumb {
        width: 68px;
        height: 68px;
    }

    .product-mega-tags a,
    .product-mega-tags > span {
        padding-right: 7px;
        padding-left: 7px;
        font-size: 10px !important;
    }
}

/* ==========================================================================
   Menü açılır panel (Renkler, CNC ...) — Ürünler mega-menü diline uyumlu
   ========================================================================== */
/* Panel konum/aç-kapa: .product-mega-panel base + header-pill.js (is-open).
   Burada yalnızca genişlik ve iç içerik override edilir (kırpılma olmaz). */
.nav-dd-panel {
    width: min(420px, calc(100vw - 48px));
    padding: 18px;
}

.nav-dd-heading {
    margin: 0 0 12px;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a8a8a !important;
}

.nav-dd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.nav-dd-item {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    background: #fff;
    color: #242424 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.nav-dd-item:hover {
    border-color: rgba(240, 90, 34, 0.5);
    color: #d84812 !important;
    background: rgba(240, 90, 34, 0.06);
}

.nav-dd-item small {
    flex: 0 0 auto;
    padding: 2px 8px;
    border-radius: 999px;
    background: #f1f1f1;
    color: #6b6b6b;
    font-size: 11px;
    font-weight: 600;
}

.nav-dd-item:hover small { background: rgba(240, 90, 34, 0.12); color: #d84812; }

/* Mobil (offcanvas) açılır panel */
.nav-dd-mobile-panel { padding: 8px 0 4px; }
.nav-dd-mobile-panel .nav-dd-heading { padding: 0 2px; }
.nav-dd-mobile-panel .nav-dd-grid { grid-template-columns: 1fr; gap: 6px; }

/* ==========================================================================
   Ürünler MEGA PANELİ 2.0 — üçüncü "Spotlight" sütunu + Liquid Glass yüzey
   + mikro-etkileşimler + renk kodlu ikonografi. (2026 UI/UX araştırmasına
   göre: 3 sütun ritmi, grup başlıkları, featured kart, hover vurgu, glass 2.0)
   ========================================================================== */
:root {
    --mega-w: min(1120px, calc(100vw - 40px));
    --mega-accent: #f05a22;
    --mega-accent-soft: rgba(240, 90, 34, 0.05);
}

/* Yalnızca Ürünler mega paneli genişler (Renkler/CNC nav-dd panelleri 420px kalır). */
.product-mega-holder:not(.nav-dd-holder)::after,
.product-mega-holder > .product-mega-panel:not(.nav-dd-panel) {
    width: var(--mega-w);
}

/* Liquid Glass 2.0: katmanlı kenarlık, iç parıltı, derin gölge, squircle köşe. */
.product-mega-panel {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: linear-gradient(177deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.74) 100%);
    box-shadow:
        0 30px 70px -24px rgba(20, 28, 24, 0.34),
        0 10px 26px -14px rgba(20, 28, 24, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    -webkit-backdrop-filter: blur(26px) saturate(165%);
    backdrop-filter: blur(26px) saturate(165%);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .product-mega-panel { background: rgba(255, 255, 255, 0.97); }
}

/* 2 sütun → 3 sütun (gruplar · uygulamalar · spotlight)
   Spotlight (3.) sütunu sağ kenarda; etiket/rozet metinleri tam sığsın diye
   biraz daha geniş. Panel sabit genişlikte → sütun sola doğru büyür, taşmaz. */
.product-mega-panel .product-mega-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.08fr) clamp(250px, 23%, 312px);
}

/* Başlık ve satırları aynı 12px iç boşlukta hizala (hover vurgusu için pay). */
.product-mega-section .product-mega-heading {
    padding-left: 12px;
}

/* Hover satır-vurgusu (background shading) + thumbnail zoom — progressive disclosure */
.product-mega-list .product-mega-group {
    padding: 8px 12px;
    border-radius: 14px;
    transition: background-color 180ms ease;
}

.product-mega-list .product-mega-group:hover {
    background: var(--mega-accent-soft);
}

.product-mega-thumb img {
    transition: transform 450ms cubic-bezier(.2, .8, .2, 1);
}

.product-mega-group:hover .product-mega-thumb img {
    transform: scale(1.06);
}

/* Renk kodlu uygulama ikonları (config sırasıyla döngüsel aksan tonları) */
.product-mega-thumb-c0 { background: rgba(240, 90, 34, 0.10); }
.product-mega-thumb-c1 { background: rgba(20, 160, 140, 0.12); }
.product-mega-thumb-c2 { background: rgba(90, 110, 220, 0.12); }
.product-mega-thumb-c3 { background: rgba(242, 161, 0, 0.14); }
.product-mega-thumb-c4 { background: rgba(40, 170, 90, 0.12); }

/* --- Spotlight sütunu --- */
.product-mega-spotlight {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    padding-left: 22px;
    /* Öne çıkanlar = amber aksan. */
    --sec-accent: #f2a100;
    --sec-soft: rgba(242, 161, 0, 0.16);
    --sec-ink: #b07400;
    border-left: 1px solid transparent;
    border-image: linear-gradient(180deg, transparent, rgba(20, 28, 24, 0.14) 18%, rgba(20, 28, 24, 0.14) 82%, transparent) 1;
}

.product-mega-heading-spot i {
    color: #f2a100;
}

/* Öne çıkan ürün kartları (görselli) */
.pm-feature-list {
    display: grid;
    gap: 8px;
}

.pm-feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
    transition: border-color 200ms ease, background-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.pm-feature-card:hover {
    border-color: rgba(240, 90, 34, 0.32);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -22px rgba(20, 28, 24, 0.5);
}

.pm-feature-thumb {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 12px;
    background: #f3f3f1;
    /* Öne çıkan ürün tile'ı da havada süzülen kart gibi (diğer thumb'larla uyumlu). */
    box-shadow:
        0 8px 16px -6px rgba(20, 28, 24, 0.30),
        0 3px 6px -2px rgba(20, 28, 24, 0.16);
    transition: box-shadow 220ms ease;
}

/* Kart hover'ında (kart zaten yükseliyor) tile gölgesi biraz güçlensin. */
.pm-feature-card:hover .pm-feature-thumb {
    box-shadow:
        0 14px 22px -8px rgba(20, 28, 24, 0.38),
        0 5px 10px -3px rgba(20, 28, 24, 0.20);
}

.pm-feature-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms cubic-bezier(.2, .8, .2, 1);
}

.pm-feature-card:hover .pm-feature-thumb img {
    transform: scale(1.06);
}

.pm-feature-thumb i {
    color: #9a9a9a;
    font-size: 20px;
}

.pm-feature-name {
    flex: 1 1 auto;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #1f1f1f;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.pm-feature-arrow {
    flex: 0 0 auto;
    color: #c4c4c4;
    font-size: 13px;
    transition: color 180ms ease, transform 180ms ease;
}

.pm-feature-card:hover .pm-feature-arrow {
    color: var(--mega-accent);
    transform: translateX(2px);
}

/* Güven / marka rozetleri */
.pm-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.pm-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border: 1px solid #e2e4e7;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: #3a3a3a;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

.pm-trust-badge i {
    color: #f2a100;
    font-size: 12px;
}

/* Eylem (CTA) kartı — ılık koyu dönüşüm bloğu; bento panelinin amber temasıyla uyumlu
   (eski parlak yeşil buton + soğuk lacivert kart marka diline oturmuyordu). */
.pm-cta-card {
    position: relative;
    overflow: hidden;
    margin-top: auto;
    padding: 16px;
    border-radius: 18px;
    background:
        radial-gradient(125% 100% at 100% 0%, rgba(242, 161, 0, 0.20), rgba(255, 255, 255, 0) 55%),
        linear-gradient(150deg, #20262f 0%, #2b3340 100%);
    border: 1px solid rgba(242, 161, 0, 0.18);
    color: #fff;
    box-shadow: 0 20px 42px -24px rgba(20, 28, 24, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pm-cta-title {
    margin: 0 0 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.pm-cta-lead {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.45;
}

.pm-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb71a 0%, #f2a100 45%, #cf8800 100%);
    color: #1b1b1b !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 26px -10px rgba(242, 161, 0, 0.6);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.pm-cta-btn:hover {
    color: #1b1b1b !important;
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px -10px rgba(242, 161, 0, 0.72);
}

.pm-cta-btn i {
    font-size: 12px;
    transition: transform 180ms ease;
}

.pm-cta-btn:hover i {
    transform: translateX(3px);
}

/* CTA kartı ikincil linkleri — ince, alttan çizgili; amber hover */
.pm-cta-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    margin-top: 12px;
}

.pm-cta-secondary a {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
    transition: color 160ms ease;
}

.pm-cta-secondary a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    opacity: 0.32;
    transition: opacity 160ms ease;
}

.pm-cta-secondary a:hover {
    color: #ffc24d;
}

.pm-cta-secondary a:hover::before {
    opacity: 0.9;
}

/* Tema ".header-menu ul li a" (color:#383838 + UPPERCASE + 14px, özgüllük 0,1,3)
   bu ikincil linklere sızıp KOYU kartta görünmez yapıyordu (buton'da !important
   reset vardı, burada yoktu). Yüksek özgüllük (0,2,1) + !important ile sabitle. */
.product-mega-spotlight .pm-cta-secondary a {
    display: inline !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.product-mega-spotlight .pm-cta-secondary a:hover {
    color: #ffc24d !important;
}

/* Tablet (992–1199): spotlight'ı iki sütunun altına tam genişlik bandına al */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product-mega-panel .product-mega-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .product-mega-spotlight {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 16px 22px;
        margin-top: 14px;
        padding-top: 16px;
        padding-left: 0;
        border-top: 1px solid #e1e1e1;
        border-left: 0;
    }

    .product-mega-spotlight .pm-spot-block { flex: 1 1 320px; }
    .product-mega-spotlight .pm-trust { flex: 1 1 100%; }
    .product-mega-spotlight .pm-cta-card { flex: 1 1 260px; margin-top: 0; }
    .pm-feature-list { grid-template-columns: 1fr 1fr; }
}

/* Mobil (offcanvas): spotlight tam genişlik, dikey yığın */
.product-mega-mobile-panel .product-mega-spotlight {
    margin-top: 22px;
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid #e1e1e1;
    border-left: 0;
}

.product-mega-mobile-panel .pm-feature-list {
    grid-template-columns: 1fr;
}

@media (prefers-reduced-motion: reduce) {
    .product-mega-thumb img,
    .pm-feature-thumb img,
    .pm-feature-card,
    .pm-feature-arrow,
    .pm-cta-btn,
    .pm-cta-btn i {
        transition: none !important;
    }

    .product-mega-group:hover .product-mega-thumb img,
    .pm-feature-card:hover,
    .pm-feature-card:hover .pm-feature-thumb img {
        transform: none !important;
    }
}

/* --------------------------------------------------------------------------
   Tema global menü-link kuralını sıfırla. style.css'teki
   `.header-menu ul li a { text-transform:uppercase; display:block;
   font:14px/500; color:#383838 }` mega panel içindeki spotlight linklerine de
   uyguluyordu → kartlar dikey yığılıyor, yazılar BÜYÜK/kayık çıkıyordu.
   (.product-mega-title / .product-mega-tags a da aynı kurala karşı override'lı.)
   -------------------------------------------------------------------------- */
.product-mega-spotlight .pm-feature-card {
    display: flex !important;
    color: inherit !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
}

.product-mega-spotlight .pm-feature-name {
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    white-space: normal !important;
}

.product-mega-spotlight .pm-cta-btn {
    display: inline-flex !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap;
}

/* ==========================================================================
   MEGA PANELİ 2.1 — Bento kart dili + canlılık + akıllı bilgi
   Hedef: sol sütundaki boşluğu kapat, satırları kartlara çevir, sayı rozeti
   ve grup açıklaması ekle, renk kodunu kart aksanına taşı, yüzeyi ısıt.
   ========================================================================== */

/* Yüzeyde ılık çift-radyal aydınlatma (cam korunur) */
.product-mega-holder > .product-mega-panel:not(.nav-dd-panel) {
    background:
        radial-gradient(120% 90% at 100% 0%, rgba(242, 161, 0, 0.08), rgba(255, 255, 255, 0) 42%),
        radial-gradient(120% 95% at 0% 100%, rgba(240, 90, 34, 0.06), rgba(255, 255, 255, 0) 40%),
        linear-gradient(177deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.76) 100%);
}

/* Sütunları eşit yükseklikte tut; sol sütunda "Tüm Ürünler" düğmesini dibe sabitle */
.product-mega-grid .product-mega-section {
    display: flex;
    flex-direction: column;
}

.product-mega-list {
    gap: 6px;
    align-content: start;
}

/* Başlık sayı rozeti (3 grup · 5 alan) */
.product-mega-heading .pm-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 20px;
    margin-left: auto;                 /* sayaç başlık satırının SAĞ kenarına */
    padding: 0 7px;
    border-radius: 999px;
    background: var(--sec-soft, rgba(240, 90, 34, 0.12));
    color: var(--sec-ink, #d84812);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

/* Satır → KART */
.product-mega-list .product-mega-group {
    gap: 13px;
    min-height: 0;
    padding: 10px 12px;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
    transition: border-color 200ms ease, background-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.product-mega-list .product-mega-group:last-child {
    margin-bottom: 0;
    border-bottom: 1px solid #ebebeb;
}

.product-mega-list .product-mega-group:hover {
    border-color: rgba(240, 90, 34, 0.32);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -22px rgba(20, 28, 24, 0.5);
}

/* Yalnız ÜRÜN GRUPLARI sütununda: kartlar, sol dikey sekme (en uzunu "AUTHORIZED
   DEALER") komşu karta taşmasın diye eşit yükseklikte. Uygulama/spotlight HARİÇ. */
.product-mega-section:not(.product-mega-section-applications) .product-mega-list .product-mega-group {
    min-height: 120px;
}

/* Tıklanabilir görsel (artık <a>) */
.product-mega-thumb {
    align-self: flex-start;
}

/* Grup açıklaması (icon + başlık + açıklama kalıbı) */
.product-mega-desc {
    margin: 2px 0 7px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #6c6c6c;
    font-size: 11.5px;
    line-height: 1.45;
}

/* Ürün grupları yalnızca 3 kart; sütun uygulamalar kadar uzasa da kartlar
   ÜSTTEN yığılır (artan boşluk alta iner) — başlığın hemen altından başlasın. */
.product-mega-section:not(.product-mega-section-applications) .product-mega-list {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Mobil (offcanvas) dikey akışta ortalamaya gerek yok — üstten yığ. */
.product-mega-mobile-panel .product-mega-section:not(.product-mega-section-applications) .product-mega-list {
    justify-content: flex-start;
}

@media (prefers-reduced-motion: reduce) {
    .product-mega-list .product-mega-group {
        transition: none !important;
    }

    .product-mega-list .product-mega-group:hover {
        transform: none !important;
    }
}

/* ==========================================================================
   PREMIUM MOBİL MENÜ (offcanvas) — koyu buzlu cam "app çekmecesi"
   Web'in açık nav'ından bilinçli olarak AYRI dil: sıcak-koyu yarı saydam
   panel + blur (.lp-spy / mega CTA kartıyla aynı rgba(22,18,12) ailesi),
   amber aktif vurgu, kademeli kayan giriş, akordeon alt menüler, altta
   sosyal + WhatsApp + dil. Scope: .offcanvas-premium → tema .canvas-* ve .offcanvas
   kurallarını özgüllükle ezer (header-pill.css style.min.css'ten SONRA yüklenir).
   ========================================================================== */
.offcanvas.offcanvas-premium {
    width: min(86vw, 380px);
    color: #fff;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    /* Renksiz şeffaf buzlu cam: arka plan blur'la görünür, sıcak/amber ton YOK.
       Nötr koyu veil yalnızca beyaz metin okunur kalsın diye (yarı saydam). */
    background: linear-gradient(180deg, rgba(20, 20, 22, 0.55) 0%, rgba(15, 15, 17, 0.62) 100%);
    -webkit-backdrop-filter: blur(28px) saturate(120%);
    backdrop-filter: blur(28px) saturate(120%);
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.5);
}

/* gövde: dikey akış → alt aksiyon bölgesi dibe iner, uzun içerikte kayar */
.offcanvas-premium .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

/* --- ÜST BAŞLIK: logo + yuvarlak kapat --- */
.offcanvas-premium .canvas-close-bar {
    height: auto;
    line-height: normal;
    padding: 18px 16px 14px 18px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-premium .canvas-brand img {
    display: block;
    width: auto;
    max-width: 150px;
    height: 34px;
    object-fit: contain;
    /* Koyu "GÜLMAR®" logosunu koyu panelde beyaza çevir (ayrı beyaz asset gerekmez). */
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.offcanvas-premium .canvas-close {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .25s cubic-bezier(.2, .8, .2, 1);
}

.offcanvas-premium .canvas-close:hover,
.offcanvas-premium .canvas-close:focus-visible {
    color: #ffce6b;
    background: rgba(242, 161, 0, 0.18);
    border-color: rgba(242, 161, 0, 0.5);
    transform: rotate(90deg);
}

.offcanvas-premium .canvas-close i { line-height: 1; }

/* --- ARAMA: koyu cam pill --- */
.offcanvas-premium .canvas-search { padding: 16px 16px 6px; }

.offcanvas-premium .canvas-search input {
    height: 46px;
    padding: 0 54px 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 14px;
}

.offcanvas-premium .canvas-search input::placeholder { color: rgba(255, 255, 255, 0.5); }

.offcanvas-premium .canvas-search button {
    top: 3px;
    right: 3px;
    border-radius: 50%;
    background: var(--lp-accent);
    color: #1b1b1b;
}

/* --- MENÜ SATIRLARI (link + akordeon başlığı ortak görünüm) --- */
.offcanvas-premium .canvas-menu { padding: 8px 10px 6px; }
.offcanvas-premium .canvas-menu nav,
.offcanvas-premium .canvas-menu ul { margin: 0; padding: 0; list-style: none; }
.offcanvas-premium .canvas-menu > nav > ul > li { position: relative; display: block; line-height: normal; }

/* satırlar arası ince ayraç */
.offcanvas-premium .canvas-menu > nav > ul > li + li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 14px;
    right: 14px;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.offcanvas-premium .canvas-menu > nav > ul > li > a,
.offcanvas-premium .canvas-menu summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 16px 14px;
    border: 0;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-transform: none;
    text-decoration: none;
    list-style: none;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, padding-left .25s cubic-bezier(.16, 1, .3, 1);
}

.offcanvas-premium .canvas-menu summary::-webkit-details-marker { display: none; }

/* sol amber aksan çubuğu (hover + açık akordeon) */
.offcanvas-premium .canvas-menu > nav > ul > li > a::before,
.offcanvas-premium .canvas-menu summary::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 50%;
    width: 3px;
    height: 22px;
    border-radius: 3px;
    background: var(--lp-accent);
    transform: translateY(-50%) scaleY(0);
    transform-origin: center;
    transition: transform .28s cubic-bezier(.16, 1, .3, 1);
}

.offcanvas-premium .canvas-menu > nav > ul > li > a:hover,
.offcanvas-premium .canvas-menu summary:hover,
.offcanvas-premium .canvas-menu details[open] > summary {
    color: #fff;
    padding-left: 18px;
    background: linear-gradient(90deg, rgba(242, 161, 0, 0.14), rgba(242, 161, 0, 0) 62%);
}

.offcanvas-premium .canvas-menu > nav > ul > li > a:hover::before,
.offcanvas-premium .canvas-menu summary:hover::before,
.offcanvas-premium .canvas-menu details[open] > summary::before {
    transform: translateY(-50%) scaleY(1);
}

/* gösterge SADECE akordeon satırlarında: ⌄ (açıkken döner). Düz linklerde
   (Renkler, CNC, Blog, Kurumsal, İletişim) açılır menü oku GÖSTERİLMEZ. */
.offcanvas-premium .canvas-menu summary::after {
    content: "\2304";
    position: static;
    right: auto;
    top: auto;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    line-height: 1;
    transform: none;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), color .2s ease;
}

.offcanvas-premium .canvas-menu details[open] > summary::after {
    color: var(--lp-accent);
    transform: rotate(180deg);
}

/* --- AÇILAN PANELLER (akordeon içeriği) — koyu menü içinde inset açık tepsi --- */
.offcanvas-premium .product-mega-mobile-panel {
    margin: 2px 4px 10px;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.offcanvas-premium .nav-dd-mobile-panel { padding: 4px 6px 10px; }
.offcanvas-premium .nav-dd-mobile-panel .nav-dd-heading { color: rgba(255, 255, 255, 0.55) !important; }

/* --- ALT AKSİYON BÖLGESİ: sosyal + dil + WhatsApp --- */
.offcanvas-premium .canvas-foot {
    margin-top: auto;
    padding: 16px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.offcanvas-premium .canvas-foot-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offcanvas-premium .canvas-social { display: flex; gap: 10px; }

.offcanvas-premium .canvas-social a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

/* İkon glifi daireyi düzgün doldursun, dikey ortada dursun (küçük/üst kaymış görünmesin) */
.offcanvas-premium .canvas-social a i { font-size: 18px; line-height: 1; }

.offcanvas-premium .canvas-social a:hover {
    color: #1b1b1b;
    background: var(--lp-accent);
    border-color: var(--lp-accent);
    transform: translateY(-2px);
}

/* Uygulama ikonları her marka KENDİ renginde; hover'da daire markanın rengiyle
   dolar, ikon beyazlar. (Yukarıdaki genel amber hover'ı markaya göre ezilir.) */
.offcanvas-premium .canvas-social .cs-ig { color: #e1306c; border-color: rgba(225, 48, 108, 0.45); }
.offcanvas-premium .canvas-social .cs-fb { color: #1877f2; border-color: rgba(24, 119, 242, 0.45); }
.offcanvas-premium .canvas-social .cs-in { color: #0a66c2; border-color: rgba(10, 102, 194, 0.45); }

.offcanvas-premium .canvas-social .cs-ig:hover {
    color: #fff;
    border-color: transparent;
    background: radial-gradient(circle at 32% 106%, #fec564 0%, #fd5949 38%, #d6249f 62%, #962fbf 100%);
}

.offcanvas-premium .canvas-social .cs-fb:hover {
    color: #fff;
    border-color: #1877f2;
    background: #1877f2;
}

.offcanvas-premium .canvas-social .cs-in:hover {
    color: #fff;
    border-color: #0a66c2;
    background: #0a66c2;
}

.offcanvas-premium .canvas-lang {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.offcanvas-premium .canvas-lang a {
    display: grid;
    place-items: center;
    min-width: 40px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.offcanvas-premium .canvas-lang a:hover { color: #fff; border-color: rgba(255, 255, 255, 0.3); }

.offcanvas-premium .canvas-lang a.is-active {
    color: #ffce6b;
    background: rgba(242, 161, 0, 0.16);
    border-color: rgba(242, 161, 0, 0.5);
}

.offcanvas-premium .canvas-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #1ebe5b);
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
    transition: filter .2s ease, transform .2s ease, box-shadow .2s ease;
}

.offcanvas-premium .canvas-wa:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.34);
}

.offcanvas-premium .canvas-wa i { font-size: 19px; line-height: 1; }

/* --- KADEMELİ GİRİŞ: panel açılınca (Bootstrap .show) içerik soldan kayar --- */
.offcanvas-premium .canvas-search,
.offcanvas-premium .canvas-menu > nav > ul > li,
.offcanvas-premium .canvas-foot {
    opacity: 0;
    transform: translateX(-14px);
}

.offcanvas-premium.show .canvas-search,
.offcanvas-premium.show .canvas-menu > nav > ul > li,
.offcanvas-premium.show .canvas-foot {
    opacity: 1;
    transform: none;
    transition: opacity .4s ease, transform .45s cubic-bezier(.16, 1, .3, 1);
}

.offcanvas-premium.show .canvas-search { transition-delay: .04s; }
.offcanvas-premium.show .canvas-menu > nav > ul > li:nth-child(1) { transition-delay: .09s; }
.offcanvas-premium.show .canvas-menu > nav > ul > li:nth-child(2) { transition-delay: .13s; }
.offcanvas-premium.show .canvas-menu > nav > ul > li:nth-child(3) { transition-delay: .17s; }
.offcanvas-premium.show .canvas-menu > nav > ul > li:nth-child(4) { transition-delay: .21s; }
.offcanvas-premium.show .canvas-menu > nav > ul > li:nth-child(5) { transition-delay: .25s; }
.offcanvas-premium.show .canvas-menu > nav > ul > li:nth-child(6) { transition-delay: .29s; }
.offcanvas-premium.show .canvas-menu > nav > ul > li:nth-child(7) { transition-delay: .33s; }
.offcanvas-premium.show .canvas-menu > nav > ul > li:nth-child(n+8) { transition-delay: .37s; }
.offcanvas-premium.show .canvas-foot { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
    .offcanvas-premium .canvas-search,
    .offcanvas-premium .canvas-menu > nav > ul > li,
    .offcanvas-premium .canvas-foot {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .offcanvas-premium .canvas-close:hover { transform: none; }
}
