/* ════════════════════════════════════════════════════════
   BENDAS ESKİ SİTE — Modern Yeniden Yazım
   Eski renk paleti: #003664 (lacivert) + #02528f (mavi) + #FF0000 (yeşil)
   960px fixed-width layout, klasik kurumsal tarz
   ════════════════════════════════════════════════════════ */

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    overflow-x: hidden;     /* tüm yatay overflow'u engelle */
    max-width: 100%;
}

body {
    font-family: Calibri, Tahoma, Arial, sans-serif;
    font-size: 13px;
    color: #333;
    background: #fff;
    line-height: 1.5;
}

a { color: #003664; text-decoration: none; }
a:hover { color: #02528f; text-decoration: underline; }

img { border: 0; max-width: 100%; height: auto; }

h1 { font-size: 22px; color: #003664; margin-bottom: 12px; font-weight: bold; }
h2 { font-size: 18px; color: #003664; margin-bottom: 10px; font-weight: bold; }
h3 { font-size: 16px; color: #003664; margin-bottom: 8px; font-weight: bold; }
h4 { font-size: 14px; color: #003664; margin-bottom: 6px; font-weight: bold; }

/* ═══════════ WRAPPER ═══════════ */
.wrapper { width: 100%; }

/* ═══════════ HEADER (yeni layout: sol logo + orta arama + sağ logolar/B2B) ═══════════ */
.header_container {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eef2f6;
}
.header {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    min-height: 110px;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-sizing: border-box;
}

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* Sol — BDR yuvarlak logo + BENDAŞ RULMAN orijinal PNG */
.header .header-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none !important;
}
.header .header-logo:hover { text-decoration: none !important; }

/* BDR yuvarlak ikon (sol başta) */
.header .header-logo .lg-bdr-icon {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.header .header-logo:hover .lg-bdr-icon {
    transform: rotate(8deg);
}

/* BENDAŞ RULMAN orijinal logo (PNG, transparan, aspect 3.63:1, ~70×254 render) */
.header .header-logo .lg-bendas-logo {
    height: 70px;
    width: auto;
    display: block;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.header .header-logo:hover .lg-bendas-logo {
    transform: scale(1.02);
}

/* Orta — Arama kutusu (header içinde, flex item) */
.header .anasayfa_arama {
    position: relative;
    flex: 0 1 400px;
    width: 400px;
    max-width: 400px;
    margin: 0;
}
.header .anasayfa_arama form { position: relative; display: block; }
.header .arama-ikon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #003664;
    opacity: 0.5;
    pointer-events: none;
    display: flex;
}
.header .anasayfa_arama input[type=text] {
    width: 100%;
    height: 42px;
    border: 1.5px solid #d3dbe4;
    border-radius: 24px;
    padding: 8px 84px 8px 42px;
    color: #003664;
    background: #f7f9fb;
    font-family: Calibri, Tahoma, Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
}
.header .anasayfa_arama input[type=text]:focus {
    border-color: #FF0000;
    background: #fff;
    box-shadow: 0 4px 14px rgba(255, 0, 0, 0.18);
}
.header .anasayfa_arama input::placeholder {
    color: #98a8b8;
    font-weight: 500;
}
.header .anasayfa_arama button {
    position: absolute;
    top: 4px;
    right: 4px;
    height: 34px;
    background: linear-gradient(135deg, #003664 0%, #02528f 100%);
    color: #fff;
    border: 0;
    border-radius: 18px;
    padding: 0 18px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
    font-family: inherit;
}
.header .anasayfa_arama button:hover {
    background: linear-gradient(135deg, #FF0000 0%, #ff3333 100%);
}

/* Sağ — TIGER logo + Modern B2B butonu */
.header .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* TIGER Bearings logosu (aspect ~1.04, alt yazı + üst kaplan) */
.header .header-right .lg-tiger {
    height: 86px;
    width: auto;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.header .header-right .lg-tiger:hover {
    transform: scale(1.08) rotate(-4deg);
}

/* Modern B2B kartı — gradient + ikon + 2 satır metin */
.header .bayi-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #003664 0%, #02528f 60%, #1872b8 100%);
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(0, 54, 100, 0.22), 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    border: 2px solid #ef4444;
    flex-shrink: 0;
}

/* Kırmızı pulse border animasyonu (yanıp sönen kenar) */
.header .bayi-btn-modern.bayi-pulse {
    animation: bayi-pulse-border 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes bayi-pulse-border {
    0% {
        box-shadow:
            0 0 0 0 rgba(239, 68, 68, 0.7),
            0 0 0 0 rgba(239, 68, 68, 0.4),
            0 6px 18px rgba(0, 54, 100, 0.22),
            0 2px 6px rgba(0, 0, 0, 0.06);
        border-color: #ef4444;
    }
    50% {
        box-shadow:
            0 0 0 6px rgba(239, 68, 68, 0.25),
            0 0 0 12px rgba(239, 68, 68, 0.0),
            0 6px 18px rgba(0, 54, 100, 0.22),
            0 2px 6px rgba(0, 0, 0, 0.06);
        border-color: #ff6b6b;
    }
    100% {
        box-shadow:
            0 0 0 0 rgba(239, 68, 68, 0),
            0 0 0 0 rgba(239, 68, 68, 0),
            0 6px 18px rgba(0, 54, 100, 0.22),
            0 2px 6px rgba(0, 0, 0, 0.06);
        border-color: #ef4444;
    }
}
.header .bayi-btn-modern.bayi-pulse:hover {
    animation: none;  /* hover'da animasyonu durdur */
    border-color: #fff;
}
.header .bayi-btn-modern::before {
    content: "";
    position: absolute;
    top: 0; right: -40%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: skewX(-20deg);
    transition: right 0.6s ease;
}
.header .bayi-btn-modern:hover {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 0, 0, 0.35);
    color: #fff !important;
    text-decoration: none !important;
}
.header .bayi-btn-modern:hover::before { right: 120%; }
.header .bayi-btn-modern:active { transform: translateY(0); }

.header .bayi-btn-modern .bayi-icon {
    background: rgba(255, 255, 255, 0.18);
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(4px);
}

.header .bayi-btn-modern .bayi-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-align: left;
}
.header .bayi-btn-modern .bayi-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #fff;
}
.header .bayi-btn-modern .bayi-text small {
    display: block;
    font-size: 11px;
    opacity: 0.88;
    margin-top: 5px;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #fff;
}

/* (Eski .bayi-btn ve .logolar artık header'da kullanılmıyor ama backwards compat için bırakılıyor) */
.header .header-right .bayi-btn {
    position: static;
    display: block;
    width: 130px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .header-right .bayi-btn:hover {
    transform: translateY(-2px) scale(1.03);
}
.header .header-right .bayi-btn img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 54, 100, 0.18);
}

/* ═══════════ NAV BAR — Header'ın altında ayrı şerit ═══════════ */
/* ═══════════ PREMIUM NAVIGATION ═══════════ */
.nav_container {
    width: 100%;
    background: linear-gradient(180deg, #001f3f 0%, #003664 50%, #02528f 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 18px rgba(0, 31, 63, 0.18);
    position: relative;
}
.nav_container::after {
    /* alt vurgu çizgisi — yeşil ışıltı */
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FF0000 35%, #FF0000 65%, transparent 100%);
    opacity: 0.55;
}
.nav_container .nav_inner {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    padding: 6px 120px 6px 40px;  /* sağ tarafta dil dropdown'u için yer ayır */
    position: relative;
    min-height: 56px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;        /* uzun çevirilerde (RU, DE, AR) alt satıra wrap */
    gap: 6px;
    box-sizing: border-box;
}

ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Calibri, Tahoma, Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;         /* menü öğeleri sığmazsa alt satıra inebilsin */
    flex: 1 1 auto;
    min-width: 0;
}
ul.menu > li {
    position: relative;
    display: flex;
    align-items: center;
}
ul.menu > li > a {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.22s ease;
    white-space: nowrap;
}
/* hover/active underline animasyonu (alt kırmızı çubuk) */
ul.menu > li > a::after {
    content: "";
    position: absolute;
    left: 12px; right: 12px;
    bottom: 6px;
    height: 2px;
    background: linear-gradient(90deg, #FF0000, #ff3333);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
/* hover/active highlight (üst ışıltı) */
ul.menu > li > a::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.10) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.32s ease;
    pointer-events: none;
}
ul.menu > li > a:hover,
ul.menu > li.active > a {
    color: #fff;
    background: transparent;
    text-decoration: none;
}
ul.menu > li > a:hover::after,
ul.menu > li.active > a::after {
    transform: scaleX(1);
}
ul.menu > li > a:hover::before,
ul.menu > li.active > a::before {
    opacity: 1;
}

/* ═══════════ DROPDOWN — premium ═══════════ */
ul.menu ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid rgba(0, 54, 100, 0.08);
    border-radius: 0 0 12px 12px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.22s;
    box-shadow:
        0 14px 40px rgba(0, 31, 63, 0.18),
        0 6px 14px rgba(0, 31, 63, 0.08);
    overflow: hidden;
}
ul.menu ul::before {
    /* dropdown üst yeşil çubuk */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #003664, #FF0000);
}
ul.menu li:hover > ul {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}
ul.menu ul li {
    position: relative;
}
ul.menu ul li a {
    display: flex;
    align-items: center;
    padding: 11px 22px 11px 26px;
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    letter-spacing: 0.1px;
    transition: all 0.18s ease;
    position: relative;
    text-transform: none;
}
ul.menu ul li a::before {
    /* sol kenar yeşil marker (hover'da çıkar) */
    content: "";
    position: absolute;
    left: 0; top: 8px; bottom: 8px;
    width: 3px;
    background: #FF0000;
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
ul.menu ul li a:hover {
    color: #003664;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.08) 0%, transparent 100%);
    padding-left: 32px;
}
ul.menu ul li a:hover::before {
    transform: scaleY(1);
}

/* Nav bar sağ taraf — dil (absolute konumlu, menü wrap olsa da sabit) */
.nav-right {
    position: absolute;
    top: 12px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
}
.nav-right .languages {
    position: relative;
    top: 0;
    right: 0;
}

/* ═══════════ DİL DROPDOWN ═══════════ */
.lang-dropdown {
    position: relative;
}
.lang-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}
.lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
}
.lang-dropdown-btn .lang-flag {
    font-size: 16px;
    line-height: 1;
}
.lang-dropdown-btn svg {
    transition: transform 0.2s;
    opacity: 0.85;
}
.lang-dropdown-btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
}
.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid rgba(0, 54, 100, 0.08);
    border-radius: 12px;
    box-shadow:
        0 14px 40px rgba(0, 31, 63, 0.22),
        0 6px 14px rgba(0, 31, 63, 0.10);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.2s;
    z-index: 1000;
    overflow: hidden;
}
.lang-dropdown-menu::before {
    /* üst kırmızı şerit */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #003664, #FF0000);
}
.lang-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
}
.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: transparent;
    border: 0;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    font-family: inherit;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.16s;
    text-align: left;
}
.lang-item:hover {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.08), transparent);
    color: #003664;
    padding-left: 16px;
}
.lang-item .lang-flag {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

/* "TEKLİF AL" — özel CTA menü öğesi (kırmızı gradient) */
ul.menu > li > a.menu-teklif-al {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    border-radius: 8px;
    margin: 0 4px;
    padding: 0 18px;
    height: 38px;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.32);
    color: #fff !important;
    font-weight: 700;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
ul.menu > li > a.menu-teklif-al::after,
ul.menu > li > a.menu-teklif-al::before {
    display: none;
}
ul.menu > li > a.menu-teklif-al:hover {
    background: linear-gradient(135deg, #cc0000 0%, #FF0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.48);
}

/* Responsive */
@media (max-width: 1300px) {
    .nav_container .nav_inner { padding: 0 20px; }
    ul.menu > li > a { padding: 0 11px; font-size: 12px; letter-spacing: 0.2px; }
    ul.menu > li > a::after { left: 11px; right: 11px; }
    ul.menu > li > a.menu-teklif-al { padding: 0 14px; }
}
@media (max-width: 1100px) {
    ul.menu > li > a { padding: 0 9px; font-size: 11.5px; }
    ul.menu > li > a::after { left: 9px; right: 9px; }
}
@media (max-width: 900px) {
    .nav_container .nav_inner { height: auto; flex-wrap: wrap; padding: 8px 16px 48px; }
    ul.menu { flex-wrap: wrap; height: auto; gap: 4px; }
    ul.menu > li { height: auto; }
    ul.menu > li > a { height: 38px; padding: 0 11px; font-size: 12px; }
    ul.menu > li > a::after { bottom: 6px; }
    .nav-right { top: auto; bottom: 8px; right: 12px; }
}

/* ═══════════ ARAMA ŞERİDİ (nav altında ayrı strip) ═══════════ */
.search_strip {
    background: linear-gradient(180deg, #f7f9fb 0%, #eef2f6 100%);
    border-bottom: 1px solid #dbe2eb;
}
.search_strip_inner {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    padding: 14px 40px 12px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
    box-sizing: border-box;
}
.search_strip .anasayfa_arama {
    position: relative;
    width: 520px;
    max-width: 100%;
}
.search_strip .anasayfa_arama form {
    position: relative;
    display: flex;
    align-items: center;
}
.search_strip .arama-ikon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #003664;
    opacity: 0.55;
    pointer-events: none;
    display: flex;
}
.search_strip .anasayfa_arama input[type=text] {
    width: 100%;
    height: 42px;
    border: 1.5px solid #d3dbe4;
    border-radius: 24px;
    padding: 8px 88px 8px 44px;
    color: #003664;
    background: #fff;
    font-family: Calibri, Tahoma, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(0, 54, 100, 0.04);
    box-sizing: border-box;
}
.search_strip .anasayfa_arama input[type=text]:focus {
    border-color: #FF0000;
    box-shadow: 0 4px 14px rgba(255, 0, 0, 0.20);
}
.search_strip .anasayfa_arama input::placeholder {
    color: #98a8b8;
    font-weight: 500;
}
.search_strip .anasayfa_arama button {
    position: absolute;
    top: 4px;
    right: 4px;
    height: 34px;
    background: linear-gradient(135deg, #003664 0%, #02528f 100%);
    color: #fff;
    border: 0;
    border-radius: 18px;
    padding: 0 18px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
    font-family: inherit;
}
.search_strip .anasayfa_arama button:hover {
    background: linear-gradient(135deg, #FF0000 0%, #ff3333 100%);
}
.search_strip .anasayfa_arama button:active {
    transform: scale(0.96);
}

/* Hızlı kategori ipuçları */
.arama-ipuclari {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: #667;
    flex-wrap: wrap;
}
.arama-ipuclari > span {
    color: #98a8b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 10px;
    margin-right: 2px;
}
.arama-ipuclari a {
    color: #003664;
    text-decoration: none;
    background: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid #d8e1ea;
    font-weight: 600;
    transition: all 0.18s;
}
.arama-ipuclari a:hover {
    background: #003664;
    color: #fff;
    border-color: #003664;
    text-decoration: none;
}

.languages {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}
.languages a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 24px;
    color: rgba(255, 255, 255, 0.78);
    padding: 0 9px;
    text-decoration: none;
    background: transparent;
    border-radius: 13px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    line-height: 1;
}
.languages a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
}
.languages a.active {
    background: #FF0000;
    color: #fff;
    box-shadow: 0 2px 6px rgba(255, 0, 0, 0.40);
    text-decoration: none;
}
.languages a.active:hover {
    background: #ff3333;
}

/* ═══════════ CONTAINER ═══════════ */
.container {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    padding: 20px 40px;
    min-height: 400px;
    display: block;
    box-sizing: border-box;
}
@media (max-width: 1024px) {
    .container { padding: 16px 24px; }
}
@media (max-width: 600px) {
    .container { padding: 12px 16px; }
}
.container > main {
    display: block;
    width: 100%;
}

/* ═══════════ ANASAYFA: 3 KUTU ═══════════ */
div.kutu {
    width: 312px;
    min-height: 220px;
    float: left;
    margin: 0 6px 20px 0;
    border: 1px solid #ddd;
    border-top: 0;
    background: #fff;
}
div.kutu:nth-of-type(3n) { margin-right: 0; }
div.kutu h2 {
    display: block;
    color: #fff;
    font-size: 16px;
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
    background: linear-gradient(90deg, #003664 0%, #6a8aa8 70%, #f5f5f5 100%);
    margin: 0;
}
div.kutu h2 a { color: #fff; text-decoration: none; }
div.kutu .icerik { padding: 12px; font-size: 13px; line-height: 1.5; color: #444; }
div.kutu .icerik a.devami {
    display: inline-block;
    background: #003664;
    color: #fff;
    padding: 4px 14px;
    margin-top: 10px;
    border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
}
div.kutu .icerik a.devami:hover { background: #02528f; text-decoration: none; }
div.kutu .markalar img {
    width: 70px;
    height: 40px;
    float: left;
    margin: 2px;
    border: 1px solid #ddd;
    object-fit: contain;
    background: #fff;
}

/* ═══════════ SLIDER ═══════════ */
.slider-wrap {
    width: 960px;
    height: 320px;
    overflow: hidden;
    position: relative;
    margin: 0 auto 20px;
    background: #fff;
    border: 1px solid #ddd;
}
.slider-wrap .slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}
.slider-wrap .slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    position: relative;
}
.slider-wrap .slide .caption {
    position: absolute;
    bottom: 20px;
    left: 30px;
    background: rgba(0,54,100,0.85);
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    backdrop-filter: blur(2px);
}
.slider-wrap .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,54,100,0.7);
    color: #fff;
    border: 0;
    cursor: pointer;
    font-size: 20px;
    border-radius: 4px;
    z-index: 10;
}
.slider-wrap .nav.prev { left: 10px; }
.slider-wrap .nav.next { right: 10px; }
.slider-wrap .nav:hover { background: #003664; }
.slider-wrap .dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}
.slider-wrap .dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    border: 0;
}
.slider-wrap .dot.active { background: #FF0000; }

/* ═══════════ ÜRÜN LİSTESİ (TABLO) ═══════════ */
table.liste {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1px;
    margin: 10px 0;
}
table.liste tr { height: 33px; }
table.liste tr:hover { background-color: #02528f; cursor: pointer; }
table.liste tr:hover a { color: #fff; }
table.liste tr:hover .table_icerik,
table.liste tr:hover .table_icerik_2 {
    background-color: inherit;
    color: #fff;
}

.table_baslik {
    background-color: #003664;
    color: #fff;
    text-align: left;
    vertical-align: middle;
    height: 33px;
    font-size: 13px;
    padding: 0 10px;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.table_icerik {
    background-color: #eee;
    text-align: left;
    vertical-align: middle;
    height: 33px;
    font-size: 13px;
    color: #000;
    padding: 0 10px;
    border-bottom: 1px solid #fff;
}
.table_icerik_2 {
    background-color: #ddd;
    text-align: left;
    vertical-align: middle;
    height: 33px;
    font-size: 13px;
    color: #000;
    padding: 0 10px;
    border-bottom: 1px solid #fff;
}

.rulman_baslik { font-size: 14px; font-weight: bold; color: #000; }
.fiyat { font-size: 14px; font-weight: bold; color: #c00; }
.uretici { font-size: 13px; font-weight: bold; color: #003664; }

/* ═══════════ ÜRÜN ALTMENÜ (sekmeli) ═══════════ */
ul.urun_altmenu {
    list-style: none;
    height: 36px;
    float: right;
    padding: 0;
    margin: 0 0 10px 0;
}
ul.urun_altmenu li { float: left; padding: 0 4px; }
ul.urun_altmenu li a {
    font-size: 14px;
    color: #fff;
    background: #02528f;
    border-radius: 4px;
    padding: 6px 17px;
    text-decoration: none;
    display: inline-block;
}
ul.urun_altmenu li a:hover,
ul.urun_altmenu li a.selected {
    background: #003664;
    color: #fff;
    text-decoration: none;
}

/* ═══════════ ÜRÜN DETAY ═══════════ */
table.rulman_detay { width: 100%; margin: 10px 0; border-collapse: collapse; }
table.rulman_detay td { border: 1px solid #ddd; padding: 8px; }
table.rulman_detay tr.bir { background: #FF0000; color: #fff; font-weight: bold; }
table.rulman_detay tr.iki { background: #003664; color: #fff; font-weight: bold; }
img.rulman_olculer,
img.rulman_resim {
    max-width: 300px;
    max-height: 400px;
    display: block;
    margin: 10px auto;
    border: 1px solid #ddd;
    padding: 4px;
    background: #fff;
}

/* ═══════════ GALERİ — 4999 stili (radius div + label) ═══════════ */
ul.galeri_urun {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    overflow: hidden;
    font-size: 0; /* inline-block boşluğunu kaldır */
}
ul.galeri_urun li {
    display: inline-block;
    vertical-align: top;
    width: 220px;
    margin: 4px;
    position: relative;
    cursor: pointer;
    font-size: 13px;
}
ul.galeri_urun li .radius,
ul.galeri_urun li .resim {
    width: 210px;
    height: 160px;
    padding: 5px;
    background: #fff;
    border: 1px solid #003664;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}
ul.galeri_urun li:hover .radius,
ul.galeri_urun li:hover .resim {
    border-color: #02528f;
    box-shadow: 0 6px 18px rgba(0, 54, 100, 0.18);
    transform: translateY(-3px);
}
ul.galeri_urun li .radius a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.galeri_urun li img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
}
ul.galeri_urun li label {
    display: block;
    font-weight: bold;
    color: #003664;
    min-height: 30px;
    margin-top: 8px;
    text-align: center;
    width: 100%;
    font-size: 13px;
    line-height: 1.3;
    cursor: pointer;
    padding: 0 4px;
}

/* ═══════════ FORM ═══════════ */
.form-bendas { margin: 20px 0; }
.form-bendas .row { margin-bottom: 12px; }
.form-bendas label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #003664;
    font-weight: bold;
}
.form-bendas input[type=text],
.form-bendas input[type=email],
.form-bendas input[type=tel],
.form-bendas textarea,
.form-bendas select {
    width: 100%;
    max-width: 420px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: Calibri, Tahoma, Arial;
    font-size: 13px;
}
.form-bendas textarea { min-height: 120px; }
.form-bendas input:focus, .form-bendas textarea:focus {
    outline: none;
    border-color: #02528f;
}
.form-bendas button,
.form-bendas input[type=submit] {
    background: #003664;
    color: #fff;
    padding: 8px 24px;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}
.form-bendas button:hover { background: #02528f; }

.alert-success {
    background: #dfd;
    border: 1px solid #FF0000;
    color: #064;
    padding: 10px 14px;
    margin-bottom: 12px;
    border-radius: 4px;
}

/* ═══════════ İLETİŞİM BİLGİLERİ ═══════════ */
.iletisim-bilgi {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 4px;
}
.iletisim-bilgi h3 { color: #003664; margin-bottom: 10px; }
.iletisim-bilgi p { margin-bottom: 6px; font-size: 13px; }
.iletisim-bilgi strong { color: #003664; }

/* ═══════════ FOOTER ═══════════ */
.footer_container {
    width: 100%;
    background-color: #003664;
    margin-top: 40px;
    padding: 20px 0;
}
.footer {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    color: #fff;
    box-sizing: border-box;
    font-size: 13px;
    min-height: 80px;
}
.footer .copyright {
    width: 400px;
    color: #fff;
    line-height: 1.6;
}
.footer .copyright a { color: #aac; }
.footer ul.footer_menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 410px;
    top: 0;
}
.footer ul.footer_menu li { float: left; padding: 0 16px; }
.footer ul.footer_menu li a {
    font-weight: bold;
    color: #aac;
    text-decoration: none;
    font-size: 13px;
}
.footer ul.footer_menu li a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-network {
    position: absolute;
    width: 200px;
    height: 30px;
    top: 0;
    right: 0;
}
.social-network a {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-left: 2px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    text-align: center;
    line-height: 32px;
    border-radius: 4px;
    transition: background 0.2s;
    text-decoration: none;
    font-size: 14px;
}
.social-network a:hover { background: #FF0000; text-decoration: none; }

/* ═══════════ BREADCRUMB ═══════════ */
.breadcrumb {
    padding: 8px 0;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}
.breadcrumb a { color: #003664; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #999; margin: 0 6px; }

/* ═══════════ SOL MENÜ ═══════════ */
.solmenu {
    width: 220px;
    float: left;
    background: #f5f5f5;
    border: 1px solid #ddd;
    margin-right: 20px;
}
.solmenu h3 {
    background: #003664;
    color: #fff;
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
}
.solmenu ul { list-style: none; padding: 8px 0; margin: 0; }
.solmenu ul li a {
    display: block;
    padding: 6px 12px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #e5e5e5;
    font-size: 13px;
}
.solmenu ul li a:hover,
.solmenu ul li.active a {
    background: #02528f;
    color: #fff;
    text-decoration: none;
}

.icerik-area {
    margin-left: 240px;
    min-height: 400px;
}

/* ═══════════ PAGINATION ═══════════ */
.pagination {
    margin: 20px 0;
    text-align: center;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 6px 12px;
    background: #eee;
    border: 1px solid #ddd;
    color: #003664;
    margin: 0 2px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 13px;
}
.pagination a:hover { background: #02528f; color: #fff; border-color: #02528f; text-decoration: none; }
.pagination .active {
    background: #003664;
    color: #fff;
    border-color: #003664;
    font-weight: bold;
}

/* ═══════════ UTILITIES ═══════════ */
.clr { clear: both; }
.left { float: left; }
.right { float: right; }
.hidden { display: none; }
.text-center { text-align: center; }
.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }

/* ═══════════ FLOATING WHATSAPP ═══════════ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 999;
}
.whatsapp-float:hover { background: #1ebe57; color: #fff !important; text-decoration: none; }

/* ═══════════ SAYFA HATA ═══════════ */
.error-page {
    text-align: center;
    padding: 60px 20px;
}
.error-page h1 {
    font-size: 80px;
    color: #003664;
    margin-bottom: 20px;
}
.error-page p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* ═══════════ KAMPANYALI ÜRÜNLER — PREMIUM CARD GRID (homepage + product detail) ═══════════ */
.kmp-section-wrap {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eef2f6;
}
.kmp-header {
    text-align: center;
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.kmp-header h2 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: #003664;
    background: linear-gradient(135deg, #003664 0%, #02528f 60%, #FF0000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.kmp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FF0000, #cc0000);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 100px;
    margin-top: 4px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.28);
}
.kmp-header p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.kmp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.kmp-card {
    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: 16px;
    padding: 26px 24px 20px;
    text-decoration: none !important;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 54, 100, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 290px;
}
.kmp-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 0, 0, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.32s ease;
    pointer-events: none;
}
.kmp-card:hover {
    border-color: #FF0000;
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 54, 100, 0.14);
    text-decoration: none;
    color: inherit;
}
.kmp-card:hover::before { opacity: 1; }
.kmp-corner-ribbon {
    position: absolute;
    top: 14px; right: -32px;
    background: linear-gradient(135deg, #ef4444, #c0392b);
    color: #fff;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.4px;
    padding: 4px 36px;
    transform: rotate(40deg);
    box-shadow: 0 3px 8px rgba(192, 57, 43, 0.32);
    z-index: 2;
}
.kmp-card-stok-row {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.kmp-card-ust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.kmp-card-marka {
    background: linear-gradient(135deg, #003664, #02528f);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.3px;
    padding: 4px 11px;
    border-radius: 6px;
}
.kmp-card-stok {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 0, 0, 0.12);
    color: #cc0000;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 4px 10px;
    border-radius: 100px;
}
.kmp-card-ikon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 6px 0 14px;
    color: #6b7280;  /* gri — gerçek rulman çelik rengi */
    opacity: 0.9;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s, color 0.3s;
    position: relative;
    z-index: 1;
}
.kmp-card:hover .kmp-card-ikon {
    transform: rotate(180deg);
    opacity: 1;
    color: #4b5563;  /* hover'da koyu gri */
}
.kmp-card-kod {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #003664;
    text-align: center;
    position: relative;
    z-index: 1;
}
.kmp-card-kod span {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0;
}
.kmp-card-tip {
    margin: 0;
    font-size: 12.5px;
    color: #6b7280;
    text-align: center;
    line-height: 1.45;
    position: relative;
    z-index: 1;
}
.kmp-card-boyut {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 14px auto 0;
    background: #f9fafc;
    border: 1px dashed #c4cdd6;
    color: #003664;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    position: relative;
    z-index: 1;
}
.kmp-card-boyut svg { color: #FF0000; }
.kmp-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed #e3e8ef;
    font-size: 12.5px;
    font-weight: 700;
    color: #003664;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.kmp-card-foot svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.kmp-card:hover .kmp-card-foot { color: #FF0000; }
.kmp-card:hover .kmp-card-foot svg { transform: translateX(6px); }
@media (max-width: 1024px) {
    .kmp-grid { grid-template-columns: repeat(2, 1fr); }
    .kmp-header h2 { font-size: 24px; }
}
@media (max-width: 600px) {
    .kmp-grid { grid-template-columns: 1fr; gap: 16px; }
    .kmp-card { padding: 22px 20px 18px; min-height: auto; }
    .kmp-header h2 { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   ║  COMPREHENSIVE MOBILE OVERRIDES (≤768px and ≤480px)     ║
   ║  Tüm sayfalar için tutarlı mobil deneyim                ║
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* HEADER — kompakt, search alta, Tiger gizle */
    .header {
        padding: 10px 12px !important;
        min-height: auto;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-between;
    }
    .header .header-logo { gap: 8px; flex: 0 0 auto; }
    .header .header-logo .lg-bdr-icon { width: 52px; height: 52px; }
    .header .header-logo .lg-bendas-logo { height: 38px; }
    .header .header-right { gap: 8px; }
    .header .header-right .lg-tiger { display: none !important; }
    .header .anasayfa_arama {
        order: 99;            /* en sonda — header'ın altına alır */
        flex: 1 0 100%;
        width: 100%;
        max-width: 100%;
        margin: 4px 0 0 0;
    }
    .header .anasayfa_arama input[type=text] {
        height: 40px;
        padding: 8px 76px 8px 38px;
        font-size: 13px;
    }
    .header .anasayfa_arama button { font-size: 11px; padding: 0 12px; height: 32px; }
    /* B2B kompakt — text küçült, ikonu küçült */
    .header .bayi-btn-modern { padding: 8px 12px; gap: 8px; border-radius: 10px; }
    .header .bayi-btn-modern .bayi-icon { width: 34px; height: 34px; border-radius: 8px; }
    .header .bayi-btn-modern .bayi-icon svg { width: 18px; height: 18px; }
    .header .bayi-btn-modern .bayi-text strong { font-size: 12px; letter-spacing: 0.8px; }
    .header .bayi-btn-modern .bayi-text small { font-size: 9.5px; margin-top: 2px; }

    /* NAV — kompakt menu, dropdown sağ üst köşede sabit */
    .nav_container .nav_inner {
        padding: 6px 78px 6px 8px !important;  /* sağda dropdown için 78px ayır */
        min-height: auto;
        gap: 3px;
    }
    ul.menu { gap: 1px; }
    ul.menu > li > a {
        height: 34px !important;
        padding: 0 8px !important;
        font-size: 11.5px !important;
        letter-spacing: 0.1px !important;
    }
    ul.menu > li > a.menu-teklif-al {
        padding: 0 10px !important;
        font-size: 11.5px !important;
        border-radius: 6px;
    }
    ul.menu ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.18);
        box-shadow: none;
        border: 0;
        border-radius: 0;
        padding: 0;
        margin-top: -2px;
        display: none;          /* mobile'da hover yok — sadece üst seviye gözüksün */
    }
    /* Dil dropdown: nav'ın sağ üst köşesinde sabit (mobile) */
    .nav-right {
        top: 8px !important;
        right: 8px !important;
        bottom: auto !important;
    }
    .lang-dropdown-btn {
        padding: 5px 9px;
        font-size: 11.5px;
        gap: 5px;
    }
    .lang-dropdown-btn .lang-flag { font-size: 13px; }
    .lang-dropdown-btn svg { width: 10px; height: 10px; }
    /* Menü mobile'da açılır (top: 100%) — yer var, alttan açmaya gerek yok */
    .lang-dropdown-menu {
        right: 0;
        top: 100%;
        bottom: auto;
        margin-top: 6px;
    }

    /* CONTAINER — daha az padding */
    .container { padding: 12px 12px !important; }
    .full-width-inner { padding: 0 12px !important; }

    /* PAGE HEADER — başlık küçük */
    .pg-header h2 { font-size: 22px !important; }
    .pg-header p { font-size: 13px !important; }
    .breadcrumb { font-size: 12px; word-break: break-word; }

    /* CONTACT INFO — telefon/email no-wrap */
    .iletisim-info-row { flex-direction: column !important; gap: 8px !important; align-items: flex-start !important; }
    .iletisim-info-row strong, .iletisim-info-row a {
        font-size: 13px;
        word-break: break-all;
    }
    .iletisim-kart, .ilet-card { padding: 16px !important; }

    /* FOOTER — stack */
    .footer { flex-direction: column; gap: 12px; padding: 18px 14px !important; text-align: center; }
    .footer_menu { flex-wrap: wrap; justify-content: center; gap: 8px 14px !important; padding: 0 !important; }
    .copyright { font-size: 11.5px; line-height: 1.5; }
    .social-network { justify-content: center; }

    /* WHATSAPP FLOAT — daha küçük */
    .whatsapp-float { font-size: 12px !important; padding: 8px 12px !important; bottom: 14px !important; right: 14px !important; }

    /* CARDS — single column at this width */
    .kutular3, .anasayfa-kutular, .anasayfa-3-kart { grid-template-columns: 1fr !important; }

    /* TABLES — overflow-x scroll */
    table.tbl, table.fiyat-tablo, .pg-section table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

/* ═══════════ ≤480px — gerçek mobil ═══════════ */
@media (max-width: 480px) {
    /* HEADER — minimal */
    .header { padding: 8px 10px !important; gap: 6px; }
    .header .header-logo .lg-bdr-icon { width: 44px; height: 44px; }
    .header .header-logo .lg-bendas-logo { height: 32px; }
    .header .bayi-btn-modern {
        padding: 6px 10px;
        gap: 6px;
    }
    .header .bayi-btn-modern .bayi-icon { width: 30px; height: 30px; }
    .header .bayi-btn-modern .bayi-icon svg { width: 16px; height: 16px; }
    .header .bayi-btn-modern .bayi-text strong { font-size: 11px; letter-spacing: 0.5px; }
    .header .bayi-btn-modern .bayi-text small { font-size: 8.5px; }

    .header .anasayfa_arama input[type=text] {
        height: 36px;
        font-size: 12px;
        padding: 6px 68px 6px 34px;
    }
    .header .anasayfa_arama button { height: 28px; font-size: 10px; padding: 0 10px; }
    .header .arama-ikon svg { width: 14px; height: 14px; }

    /* NAV menu — minimal */
    ul.menu > li > a {
        height: 30px !important;
        padding: 0 7px !important;
        font-size: 10.5px !important;
    }
    ul.menu > li > a.menu-teklif-al { padding: 0 9px !important; font-size: 10.5px !important; }
    .nav_container .nav_inner { padding: 6px 70px 6px 6px !important; }
    .nav-right { top: 6px !important; right: 6px !important; bottom: auto !important; }
    .lang-dropdown-btn { padding: 4px 8px; font-size: 11px; }
    .lang-dropdown-btn .lang-flag { font-size: 12px; }

    /* PAGE HEADERS — daha kompakt */
    .pg-header h2 { font-size: 19px !important; }
    .pg-header { margin-bottom: 18px !important; }
    .pg-badge { font-size: 9.5px !important; padding: 5px 11px !important; }
    .breadcrumb { font-size: 11.5px; }

    /* HABERLER kartları — tarih stacking */
    .hp-card { flex-direction: column !important; }
    .hp-tarih {
        width: 100% !important;
        flex-direction: row !important;
        gap: 8px !important;
        padding: 8px 14px !important;
        align-items: baseline !important;
        justify-content: flex-start !important;
    }
    .hp-tarih strong { font-size: 22px !important; }
    .hp-tarih .hp-ay { margin-top: 0 !important; font-size: 11.5px !important; }
    .hp-tarih .hp-yil { margin-top: 0 !important; font-size: 10.5px !important; }
    .hp-body { padding: 12px 14px !important; }
    .hp-body h3 { font-size: 14.5px !important; }
    .hp-body p { font-size: 12.5px !important; }

    /* GALERİ grid — 2 kolon kalsın yine */
    .galeri-grid-premium { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .gp-label { font-size: 10px !important; padding: 6px 8px !important; }

    /* BELGELER grid — single column */
    .belge-grid { grid-template-columns: 1fr !important; }

    /* SEKTÖR / İŞ İLANI kartları — full width */
    .sektor-grid, .ilan-grid, .ilan-cards { grid-template-columns: 1fr !important; gap: 12px !important; }

    /* İLETİŞİM 3-card row → stack */
    .ilet-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
    .banka-grid, .bankalar-grid { grid-template-columns: 1fr !important; }

    /* FORM — full width fields */
    .form-grup input, .form-grup textarea, .form-grup select { font-size: 14px; }

    /* WhatsApp float */
    .whatsapp-float { font-size: 11.5px !important; padding: 7px 11px !important; }

    /* SIDEBAR (admin) — daha kompakt yapma, admin'i mobile için ayrı */
}

/* ═══════════ Welcome popup — mobil ═══════════ */
@media (max-width: 768px) {
    .welcome-popup-modal, .popup-modal { max-width: 92vw !important; padding: 22px 18px !important; }
    .welcome-popup-modal h2, .popup-modal h2 { font-size: 22px !important; }
    .welcome-popup-modal p, .popup-modal p { font-size: 13px !important; }
    .welcome-popup-stats { grid-template-columns: 1fr 1fr 1fr !important; gap: 8px !important; }
    .welcome-popup-stat strong { font-size: 18px !important; }
    .welcome-popup-stat small { font-size: 9.5px !important; }
}

/* ═══════════ Search strip — tek satır ═══════════ */
@media (max-width: 768px) {
    .search_strip_inner { padding: 10px 12px !important; gap: 10px !important; }
    .search_strip .anasayfa_arama { width: 100% !important; }
    .arama-ipuclari { font-size: 10.5px !important; gap: 4px !important; }
    .arama-ipuclari a { padding: 3px 7px !important; font-size: 10.5px !important; }
}

/* ═══════════ Slider — mobil aspect ratio ═══════════ */
@media (max-width: 768px) {
    .slider-wrap { aspect-ratio: 16 / 10; }
    .slider-wrap .nav { width: 36px !important; height: 36px !important; }
    .slider-wrap .dots { bottom: 8px !important; }
    .slider-wrap .dot { width: 22px !important; height: 4px !important; }
    .slider-counter { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   ║  MOBİL OVERFLOW ÖNLEME (her sayfa için)                  ║
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Footer — full-width, taşma yok */
    .footer_container { overflow-x: hidden; width: 100%; }
    .footer {
        max-width: 100% !important;
        width: 100% !important;
        padding: 18px 14px !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        box-sizing: border-box;
    }
    .copyright {
        max-width: 100% !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 11.5px !important;
        line-height: 1.55 !important;
        word-break: normal;
    }
    .footer_menu {
        max-width: 100% !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px 14px !important;
        padding: 0 !important;
    }
    .social-network { justify-content: center; }

    /* Wrapper — overflow engelle */
    .wrapper, .container, .full-width-section, .full-width-inner {
        max-width: 100% !important;
        overflow-x: hidden;
    }
    .full-width-section { width: 100%; box-sizing: border-box; }

    /* Tüm img'ler max 100% */
    img, video, iframe, canvas, embed, object { max-width: 100%; height: auto; }

    /* Tablolar — wrapper olmadan da overflow */
    table { max-width: 100%; }

    /* Breadcrumb — wrap olsun */
    .breadcrumb {
        flex-wrap: wrap;
        word-break: break-word;
        line-height: 1.6;
    }
    .breadcrumb a, .breadcrumb span { white-space: normal; word-break: break-word; }

    /* Form inputs — full-width */
    input[type=text], input[type=email], input[type=tel], input[type=number],
    input[type=search], textarea, select {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Kampanya kart ribbon — kart dışına taşmasın */
    .kmp-card { overflow: hidden; }
    .kmp-card-ribbon, [class*=ribbon] {
        max-width: 100%;
        overflow: hidden;
    }
}

/* ═══════════ Ürün liste tablosu — mobil overflow ═══════════ */
@media (max-width: 768px) {
    .urun-liste-tablo, .listele-tablo, .pg-section .tbl {
        font-size: 11.5px !important;
    }
    .urun-liste-tablo th, .urun-liste-tablo td,
    .listele-tablo th, .listele-tablo td {
        padding: 8px 6px !important;
        word-break: normal;
    }
}

/* ═══════════ Slider — mobil overflow ═══════════ */
@media (max-width: 768px) {
    .slider-wrap, .slider, .nivoSlider {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden;
    }
    .slides {
        max-width: 100%;
        overflow: hidden;
    }
}

/* ═══════════════════════════════════════════════════════════
   ║  KOPYALANMAZ İÇERİK (ürün listeleri, fiyat tabloları)    ║
   ║  Rakiplerin ürün kodlarını kopyalayıp çekmesini engeller  ║
   ═══════════════════════════════════════════════════════════ */
.no-copy,
.no-copy *,
.kopya-koruma,
.kopya-koruma * {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent;
}
/* Ama input/textarea içinde yazı yazabilelim (yine de listede gerek yok) */
.no-copy input,
.no-copy textarea,
.no-copy select,
.kopya-koruma input,
.kopya-koruma textarea,
.kopya-koruma select {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    user-select: auto !important;
}
