/**
 * ARVEN TEKNOLOJİ - PRO SİBER MAVİ & UZAY ÇAĞI STİL DOSYASI (assets/css/style.css)
 * 2026 High-Tech Animated UI & Security E-Commerce System
 */

:root {
    --arv-primary: #0284c7;
    --arv-primary-hover: #0369a1;
    --arv-primary-light: #e0f2fe;
    --arv-accent: #38bdf8;
    --arv-dark: #0f172a;
    --arv-dark-surface: #1e293b;
    --arv-gray-bg: #f8fafc;
    --arv-gray-border: #e2e8f0;
    --arv-text-main: #1e293b;
    --arv-text-muted: #64748b;
    --arv-footer-bg: #090d16;
    --arv-footer-text: #94a3b8;
    --arv-footer-link: #cbd5e1;
    --arv-footer-copyright: #64748b;
    --arv-radius-sm: 8px;
    --arv-radius-md: 12px;
    --arv-radius-lg: 20px;
    --arv-shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --arv-shadow-md: 0 4px 16px rgba(2, 132, 199, 0.12);
    --arv-shadow-lg: 0 10px 30px rgba(2, 132, 199, 0.18);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--arv-text-main);
    background-color: var(--arv-gray-bg);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

/* ========================================================
   0. UZAY ÇAĞI ARKA PLAN: HAREKETLİ PARÇACIKLAR & ORBLAR
   ======================================================== */
#spaceMeshCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1 !important;
    opacity: 0.85;
}

/* Arka Planda Yüzen Hareketli Işıltılı Siber Küreler (Ambient Orbs) */
.ambient-glow-sphere {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -2;
    opacity: 0.25;
    animation: floatOrb 18s ease-in-out infinite alternate;
}

.sphere-1 {
    top: 5%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #38bdf8 0%, rgba(2, 132, 199, 0) 70%);
}

.sphere-2 {
    top: 45%;
    right: -5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #0284c7 0%, rgba(14, 165, 233, 0) 70%);
    animation-delay: -6s;
}

.sphere-3 {
    bottom: 5%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6366f1 0%, rgba(99, 102, 241, 0) 70%);
    animation-delay: -12s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 40px) scale(1.15); }
    100% { transform: translate(-40px, 80px) scale(0.95); }
}

.main-content-wrapper, .top-bar, .main-header, .site-footer, .newsletter-section {
    position: relative;
    z-index: 1;
}

/* ========================================================
   1. CANLI SİBER KAYAN ŞERİT (INFINITE LIVE TICKER / MARQUEE)
   ======================================================== */
.live-marquee-container {
    background: linear-gradient(90deg, #090d16 0%, #0f172a 50%, #090d16 100%);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    position: relative;
    z-index: 990;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.live-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: liveMarqueeScroll 28s linear infinite;
}

.live-marquee-track:hover {
    animation-play-state: paused;
}

.marquee-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.marquee-badge-item i {
    color: var(--arv-accent);
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.7);
    animation: liveDotPulse 1.6s infinite;
}

@keyframes liveDotPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes liveMarqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================================
   2. HEADER & TOP BAR
   ======================================================== */
.top-bar {
    background: #090d16;
    color: #cbd5e1;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

.top-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.top-link:hover {
    color: var(--arv-accent);
}

.main-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--arv-gray-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 15px;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.brand-text-main {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #0f172a;
}

.brand-text-sub {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--arv-primary);
    margin-top: 2px;
}

/* Arama Çubuğu */
.header-search {
    max-width: 680px;
}

.search-form .input-group {
    border: 2px solid var(--arv-primary);
    border-radius: var(--arv-radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(2, 132, 199, 0.15);
    transition: all 0.2s;
}

.search-form .input-group:focus-within {
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.35);
    border-color: var(--arv-accent);
}

.search-category-select {
    max-width: 170px;
    border: none;
    border-right: 1px solid var(--arv-gray-border);
    font-size: 13px;
    font-weight: 600;
    color: var(--arv-text-main);
    background-color: #f8fafc;
}

.search-input {
    border: none;
    padding: 11px 16px;
    font-size: 14px;
}

.search-input:focus, .search-category-select:focus {
    box-shadow: none;
    outline: none;
}

.btn-search {
    background: linear-gradient(135deg, var(--arv-primary) 0%, var(--arv-primary-hover) 100%);
    color: white;
    border: none;
    padding: 0 22px;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-search:hover {
    filter: brightness(1.15);
    color: white;
}

/* Header Aksiyon Butonları */
.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: var(--arv-radius-md);
    transition: all 0.2s;
}

.action-btn:hover {
    background: #f1f5f9;
}

.action-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-label {
    display: block;
    font-size: 11px;
    color: var(--arv-text-muted);
    line-height: 1;
}

.action-val {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--arv-dark);
    margin-top: 3px;
    line-height: 1;
}

.cart-count-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--arv-primary);
    color: white;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.4);
}

/* ========================================================
   3. NAVBAR & MEGA MENU
   ======================================================== */
.header-nav {
    background: #ffffff;
    border-top: 1px solid var(--arv-gray-border);
}

.categories-btn {
    background: linear-gradient(135deg, var(--arv-primary) 0%, var(--arv-primary-hover) 100%);
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: var(--arv-radius-sm) var(--arv-radius-sm) 0 0;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
    transition: all 0.2s;
}

.categories-btn:hover {
    filter: brightness(1.08);
    color: white;
}

.categories-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 270px;
    background: #ffffff;
    border: 1px solid var(--arv-gray-border);
    border-radius: 0 0 var(--arv-radius-md) var(--arv-radius-md);
    display: none;
    z-index: 1050;
    box-shadow: var(--arv-shadow-lg);
}

.categories-dropdown:hover .categories-menu {
    display: block;
}

.categories-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.cat-item {
    position: relative;
}

.cat-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--arv-dark);
    text-decoration: none;
    transition: all 0.2s;
}

.cat-link:hover {
    background: var(--arv-primary-light);
    color: var(--arv-primary);
    padding-left: 22px;
}

.cat-link .arrow {
    font-size: 11px;
    color: #94a3b8;
}

.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 480px;
    background: #ffffff;
    border: 1px solid var(--arv-gray-border);
    border-radius: var(--arv-radius-md);
    padding: 20px;
    display: none;
    z-index: 1060;
    box-shadow: var(--arv-shadow-lg);
}

.cat-item:hover .sub-menu {
    display: block;
}

.sub-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--arv-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--arv-gray-border);
}

.sub-link {
    display: block;
    padding: 6px 8px;
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.sub-link:hover {
    background: #f1f5f9;
    color: var(--arv-primary);
    font-weight: 600;
}

.nav-item-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--arv-dark);
    text-decoration: none;
    padding: 12px 14px;
    display: inline-block;
    transition: color 0.2s;
}

.nav-item-link:hover {
    color: var(--arv-primary);
}

.btn-dealer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #38bdf8;
    font-weight: 700;
    font-size: 12px;
    border-radius: 6px;
    padding: 7px 14px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.3);
    transition: all 0.2s;
}

.btn-dealer:hover {
    color: #ffffff;
    border-color: var(--arv-accent);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
    transform: translateY(-1px);
}

/* ========================================================
   4. HERO SLIDER & UZAY ÇAĞI ANİMASYONLARI
   ======================================================== */
.hero-slider-section {
    padding: 24px 0 0 0;
}

.slider-card {
    border-radius: var(--arv-radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #050811 0%, #0b1120 50%, #0369a1 100%);
    color: white;
    min-height: 440px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: var(--arv-shadow-lg);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

/* Hero Arka Plan Dönen Radar & Halkalar */
.hero-radar-ring {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(56, 189, 248, 0.25);
    border-radius: 50%;
    pointer-events: none;
    animation: rotateRadar 24s linear infinite;
}

.hero-radar-ring::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 50%;
    animation: rotateRadarReverse 16s linear infinite;
}

@keyframes rotateRadar {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

@keyframes rotateRadarReverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

/* Yüzen Siber Rozetler (Floating Tech Badges) */
.floating-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #e0f2fe;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.slider-content {
    padding: 50px 40px;
    z-index: 2;
    max-width: 620px;
}

.slider-badge {
    background: var(--arv-primary);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 14px;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(2, 132, 199, 0.6);
}

.slider-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slider-subtitle {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Buton Işık Süpürme Animasyonu (Shimmer Effect) */
.btn-slider, .btn-shimmer {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: white;
    padding: 13px 30px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 18px rgba(2, 132, 199, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-slider::after, .btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(25deg);
    animation: btnShimmerSweep 3.5s infinite;
}

@keyframes btnShimmerSweep {
    0% { left: -60%; }
    25% { left: 140%; }
    100% { left: 140%; }
}

.btn-slider:hover, .btn-shimmer:hover {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(2, 132, 199, 0.7);
}

/* ========================================================
   5. DEĞER ÖNERİLERİ & MARKALAR
   ======================================================== */
.value-props-section {
    padding: 30px 0;
}

.value-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--arv-gray-border);
    border-radius: var(--arv-radius-md);
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: var(--arv-shadow-sm);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.15);
    border-color: var(--arv-accent);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--arv-primary-light);
    color: var(--arv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--arv-dark);
    margin-bottom: 2px;
}

.value-desc {
    font-size: 12px;
    color: var(--arv-text-muted);
    margin: 0;
}

/* ========================================================
   6. ÜRÜN KARTLARI (CYBER GLOW HOVER)
   ======================================================== */
.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--arv-gray-border);
    border-radius: var(--arv-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(2, 132, 199, 0.2);
    border-color: var(--arv-accent);
}

.product-badge-group {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}

.badge-discount {
    background: #e11d48;
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(225, 29, 72, 0.3);
}

.badge-bestseller {
    background: #f59e0b;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.product-img-wrapper {
    position: relative;
    padding: 24px 16px;
    background: #ffffff;
    text-align: center;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
}

.product-img {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--arv-dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
    flex-grow: 1;
}

.product-title:hover {
    color: var(--arv-primary);
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}

.price-current {
    font-size: 18px;
    font-weight: 800;
    color: var(--arv-dark);
}

.price-old {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
}

.btn-add-cart {
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: var(--arv-radius-sm);
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-add-cart:hover {
    background: var(--arv-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.45);
}

/* ========================================================
   7. SEPET VE ÖDEME SAYFASI
   ======================================================== */
.cart-summary-box {
    background: #ffffff;
    border: 1px solid var(--arv-gray-border);
    border-radius: var(--arv-radius-md);
    padding: 24px;
    box-shadow: var(--arv-shadow-sm);
    position: sticky;
    top: 90px;
}

.free-shipping-bar {
    background: #f1f5f9;
    border-radius: 20px;
    height: 8px;
    overflow: hidden;
    margin: 10px 0;
}

.free-shipping-fill {
    background: #10b981;
    height: 100%;
    border-radius: 20px;
    transition: width 0.4s ease;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--arv-gray-border);
    border-radius: var(--arv-radius-sm);
    width: 110px;
    background: #ffffff;
}

.qty-btn {
    width: 32px;
    height: 34px;
    background: none;
    border: none;
    font-weight: 700;
    color: var(--arv-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-input {
    width: 46px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

/* ========================================================
   8. YÜZEN WHATSAPP & MOBİL ALT NAV
   ======================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 85px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: waPulseRing 2.2s infinite;
}

@keyframes waPulseRing {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #0f172a;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid var(--arv-gray-border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 1020;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    gap: 3px;
}

.bottom-nav-item i {
    font-size: 18px;
}

.bottom-nav-item.active {
    color: var(--arv-primary);
}

.mobile-cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--arv-primary);
    color: white;
    font-size: 10px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobil Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 1070;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-drawer.show {
    left: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1065;
    display: none;
}

.drawer-overlay.show {
    display: block;
}

/* Footer Stilleri (Admin Panelinden Yönetilebilir Renkler) */
.site-footer {
    background: var(--arv-footer-bg);
    color: var(--arv-footer-text);
    margin-top: 50px;
}

.footer-title {
    font-size: 15px;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--arv-footer-link);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--arv-accent);
}

.footer-desc {
    color: var(--arv-footer-text);
}

.footer-contact {
    color: var(--arv-footer-text);
}

.footer-bottom {
    color: var(--arv-footer-copyright);
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #1e293b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon:hover {
    background: var(--arv-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(2, 132, 199, 0.6);
}

.marketplace-badge {
    background: #1e293b;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.marketplace-badge:hover {
    background: var(--arv-primary);
    color: white;
}
