﻿/* ============================================
   CarSmartGo — Frontend Stylesheet
   Modern E-Ticaret Tasarimi
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Gelecekçi Premium Otomotiv Paleti */
    --primary: #0A1A2F;          /* Derin Uzay Mavisi */
    --primary-dark: #060E1A;
    --primary-light: #E8EDF3;
    --secondary: #1C2533;         /* Koyu Metalik Antrasit */
    --accent: #FF8C42;            /* Neon Akkor Turuncu */
    --accent-dark: #E67A30;
    --accent-light: #FFF4EB;
    --teal: #1ABC9C;              /* Siber Camgöbeği */
    --teal-dark: #16A085;
    --teal-light: #E8FAF6;
    --success: #1ABC9C;
    --danger: #E74C3C;
    --warning: #F39C12;
    --info: #3498DB;
    --gray-50: #F8F9FA;
    --gray-100: #EAECEE;          /* Siber Beyaz */
    --gray-200: #D5D8DC;
    --gray-300: #BDC3C7;
    --gray-400: #95A5A6;
    --gray-500: #7F8C8D;
    --gray-600: #566573;
    --gray-700: #2C3E50;
    --gray-800: #1C2833;
    --gray-900: #111111;          /* Gelecekçi Siyah */
    --white: #ffffff;
    --body-bg: #F0F2F5;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(10,26,47,0.06);
    --shadow: 0 2px 8px rgba(10,26,47,0.08);
    --shadow-md: 0 4px 20px rgba(10,26,47,0.10);
    --shadow-lg: 0 8px 32px rgba(10,26,47,0.14);
    --shadow-xl: 0 20px 60px rgba(10,26,47,0.18);
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --transition: all 0.25s ease;
    --container: 1320px;
    --shadow-card: 0 2px 8px rgba(10,26,47,0.06);
    --shadow-card-hover: 0 16px 40px rgba(10,26,47,0.14);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --glass: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.12);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--body-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, select, textarea { font: inherit; outline: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 24px; border-radius: var(--radius); font-weight: 600; font-size: 14px;
    border: 2px solid transparent; transition: var(--transition); cursor: pointer;
    text-decoration: none; line-height: 1.4;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--gray-100); color: var(--gray-700); }
.btn-secondary:hover { background: var(--gray-200); }
.btn-outline { background: transparent; border-color: var(--gray-300); color: var(--gray-700); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* --- Utility --- */
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-warning { color: var(--warning) !important; }
.bg-light { background: var(--gray-50); }
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 16px; } .mt-4 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 16px; } .mb-4 { margin-bottom: 24px; }

/* ==========================================
   TOP BAR — Parcaofisi Style Dark Strip
   ========================================== */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    padding: 0;
    letter-spacing: 0.2px;
    border-bottom: 1px solid rgba(26,188,156,0.12);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; align-items: center; gap: 0; }
.top-bar-right { display: flex; align-items: center; gap: 0; }
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    padding: 8px 14px;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.top-bar-item:hover { color: var(--accent); background: rgba(255,255,255,0.04); }
.top-bar-item .material-icons { font-size: 15px; color: var(--teal); }
.top-bar-item svg { color: var(--teal); flex-shrink: 0; }
.top-bar-whatsapp:hover { color: #25D366; }
.top-bar-whatsapp:hover svg { color: #25D366; }
.top-bar-divider { color: rgba(255,255,255,0.15); padding: 0 4px; font-size: 11px; }

/* ==========================================
   HEADER — Clean Dark Professional
   ========================================== */
.main-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-bottom: 1px solid rgba(26,188,156,0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(10,26,47,0.25);
    transition: box-shadow 0.3s ease;
}
.main-header:hover { box-shadow: 0 4px 30px rgba(10,26,47,0.35); }
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 0;
}
.logo {
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.logo-img {
    height: 38px;
    width: auto;
    display: block;
}
.logo-mobile { display: none; }

/* Mobile Top Bar — desktop'ta gizle */
.mobile-top-bar { display: none; }

/* Search */
.search-form {
    flex: 1;
    position: relative;
    display: flex;
}
.search-form input {
    width: 100%;
    padding: 11px 52px 11px 20px;
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    font-size: 14px;
    background: rgba(255,255,255,0.07);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: all 0.35s var(--ease-out);
    color: var(--white);
}
.search-form input:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(255,140,66,0.12);
    outline: none;
}
.search-form input::placeholder { color: rgba(255,255,255,0.4); }
.search-form button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(255,140,66,0.3);
}
.search-form button:hover { background: var(--accent-dark); transform: translateY(-50%) scale(1.05); }
.search-form button .material-icons-outlined { font-size: 20px; }

/* Header Actions — Desktop */
.header-actions { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.header-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 16px;
    border-radius: var(--radius);
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-weight: 500;
    gap: 3px;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
    min-width: 56px;
}
.header-icon:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.header-icon .material-icons-outlined { font-size: 22px; }
.icon-label { font-size: 10.5px; line-height: 1.1; color: rgba(255,255,255,0.5); white-space: nowrap; }
.header-icon:hover .icon-label { color: rgba(255,255,255,0.8); }
.cart-icon { position: relative; }
.cart-badge {
    position: absolute;
    top: 0; right: 10px;
    background: var(--danger);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop: Mobil öğeleri gizle */
.header-search-btn { display: none !important; }
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.nav-toggle:hover,
.nav-toggle.active {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}
.nav-toggle .material-icons-outlined { font-size: 22px; }
.mobile-cart-btn { display: none !important; }

/* Mobile Search Bar (hidden on desktop) */
.mobile-search-bar { display: none; }

/* ==========================================
   NAVIGATION
   ========================================== */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}
.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    text-decoration: none;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.nav-list > li > a .material-icons-outlined { font-size: 18px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    padding: 8px 0;
    z-index: 50;
    border: 1px solid var(--gray-200);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--gray-700);
    text-decoration: none;
}
.dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }

/* Nav Panel (Dropdown — Redesigned) */
.nav-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--teal);
    box-shadow: 0 16px 48px rgba(10,26,47,0.18);
    z-index: 10001;
    padding: 24px 0 20px;
    animation: navPanelIn 0.25s ease;
    max-height: 80vh;
    overflow-y: auto;
}
.nav-panel.open { display: block; }
@keyframes navPanelIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.nav-panel-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
.nav-section-group {
    margin-bottom: 18px;
}
.nav-section-group:last-child { margin-bottom: 0; }
.nav-section-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--gray-100);
}
.nav-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 16px;
}
.nav-links-grid a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.15s;
}
.nav-links-grid a:hover {
    background: var(--primary-light);
    color: var(--primary);
}
.nav-links-grid a .material-icons-outlined {
    font-size: 18px;
    color: var(--primary);
    opacity: 0.7;
}
.nav-links-grid a:hover .material-icons-outlined { opacity: 1; }
.nav-brand-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nav-chip {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.15s;
}
.nav-chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.nav-footer-links {
    display: flex;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}
.nav-footer-links a {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.15s;
}
.nav-footer-links a:hover { color: var(--primary); }

/* ==========================================
   ALERTS / FLASH MESSAGES
   ========================================== */
.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    margin: 16px 0;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.alert .material-icons-outlined { font-size: 20px; flex-shrink: 0; }
.alert-close { margin-left: auto; background: none; border: none; font-size: 20px; cursor: pointer; opacity: 0.5; padding: 0 4px; }
.alert-close:hover { opacity: 1; }

/* ==========================================
   MAIN CONTENT
   ========================================== */
.main-content { min-height: 60vh; }

/* ==========================================
   HERO SLIDER — Immersive Cinematic
   ========================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--secondary);
}
.slider-container { position: relative; }
.slide {
    display: none;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.slide.active { display: block; animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
@keyframes heroFadeIn { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: scale(1); } }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.75);
    display: flex;
    align-items: center;
}
.slide-content { max-width: 640px; padding: 72px 0; }
.slide-content h1 {
    font-size: 48px; font-weight: 800; color: var(--white); line-height: 1.08; margin-bottom: 20px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}
.slide-content p { font-size: 18px; color: rgba(255,255,255,0.88); margin-bottom: 32px; line-height: 1.7; }
.slide-content .btn {
    font-size: 16px; padding: 16px 40px; border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255,140,66,0.35);
    transition: all 0.35s var(--ease-out);
    font-weight: 700;
}
.slide-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255,140,66,0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: saturate(150%) blur(16px);
    backdrop-filter: saturate(150%) blur(16px);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    z-index: 5;
}
.slider-btn:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }
.slider-btn .material-icons-outlined { font-size: 28px; }

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active { background: var(--white); width: 32px; border-radius: 6px; }

/* Hero Banner (fallback) */
.hero-banner {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}
.hero-banner h1 { font-size: 48px; font-weight: 800; margin-bottom: 16px; }
.hero-banner h1 span { color: var(--accent); }
.hero-banner p { font-size: 20px; opacity: 0.9; margin-bottom: 32px; }

/* ==========================================
   ADVANTAGES (Compact Strip — Premium)
   ========================================== */
.advantages {
    padding: 14px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    border-top: none;
    box-shadow: 0 1px 3px rgba(10,26,47,0.04);
}
.advantages-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.adv-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    white-space: nowrap;
    transition: all 0.35s var(--ease-out);
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.adv-chip:hover {
    border-color: var(--teal);
    box-shadow: 0 6px 16px rgba(26,188,156,0.15);
    color: var(--primary);
    transform: translateY(-2px);
}
.adv-chip .material-icons-outlined {
    font-size: 18px;
    color: var(--teal);
}

/* ==========================================
   PRODUCT SECTIONS — Premium Layout
   ========================================== */
.product-section {
    padding: 48px 0;
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.section-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.4px;
}
.section-header h2 .material-icons-outlined { color: var(--danger); font-size: 28px; }
.section-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    background: var(--primary);
    transition: all 0.3s var(--ease-out);
}
.section-link:hover { gap: 8px; background: var(--accent); color: var(--white); transform: translateX(2px); box-shadow: 0 4px 14px rgba(255,140,66,0.3); }
.section-link .material-icons-outlined { font-size: 18px; }

/* Sale Section */
.sale-section {
    background: #fef2f2;
    position: relative;
}
.sale-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--danger);
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==========================================
   PRODUCT GRID — Premium Spacing
   ========================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ==========================================
   PRODUCT CARD — Premium Elevated Design
   ========================================== */
.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    will-change: transform;
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.product-card:hover::before {
    opacity: 1;
}
.product-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
    transform: translateY(-6px);
}
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--gray-50);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-image img { transform: scale(1.1) rotate(1deg); }
.product-image .no-image { opacity: 0.5; padding: 32px; }

/* Badges */
.product-badge {
    position: absolute;
    top: 10px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}
.badge-sale { left: 10px; background: var(--danger); color: var(--white); box-shadow: 0 2px 8px rgba(239,68,68,0.3); }
.badge-new { right: 10px; background: var(--success); color: var(--white); box-shadow: 0 2px 8px rgba(34,197,94,0.3); }
.badge-outstock { left: 10px; background: var(--gray-700); color: var(--white); }

/* Product Info */
.product-info {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}
.product-brand {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    transition: color 0.2s ease;
    display: block;
    display: -webkit-box;
}
.product-card:hover .product-name { color: var(--primary); }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 4px; }
.price-current { font-size: 18px; font-weight: 800; color: var(--accent); letter-spacing: -0.3px; }
.price-old { font-size: 13px; color: var(--gray-400); text-decoration: line-through; }
.product-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; }
.star { color: var(--gray-300); font-size: 14px; }
.star.filled { color: var(--accent); }
.rating-count { color: var(--gray-400); font-size: 12px; }

/* Product Actions */
.product-actions {
    padding: 0 16px 16px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.btn-add-cart {
    flex: 1;
    padding: 10px 12px;
    font-size: 13px;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--white);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}
.btn-add-cart:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,140,66,0.3); }
.btn-add-cart .material-icons-outlined { font-size: 18px; }
.btn-wishlist {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    color: var(--gray-500);
    transition: all 0.3s var(--ease-out);
    flex-shrink: 0;
}
.btn-wishlist:hover { border-color: var(--danger); color: var(--danger); background: #fef2f2; transform: scale(1.08); }

/* ==========================================
   CATEGORY SHOWCASE — Premium Cards
   ========================================== */
.category-showcase {
    padding: 56px 0;
    background: var(--body-bg);
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 16px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(26,188,156,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.category-card:hover::before { opacity: 1; }
.category-card:hover {
    background: var(--white);
    border-color: var(--teal);
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(10,26,47,0.10);
}
.category-card img { width: 64px; height: 64px; object-fit: contain; position: relative; z-index: 1; }
.category-icon { font-size: 48px !important; color: var(--primary); position: relative; z-index: 1; }
.category-card h4 { font-size: 14px; font-weight: 700; color: var(--gray-800); margin: 0; position: relative; z-index: 1; }
.category-card:hover h4 { color: var(--primary); }
.cat-count { font-size: 12px; color: var(--gray-500); position: relative; z-index: 1; }

/* ==========================================
   TOP BAR — Enhanced
   ========================================== */
.top-bar-phone { display: flex; align-items: center; gap: 4px; color: var(--gray-300); font-weight: 600; text-decoration: none; }
.top-bar-phone:hover { color: var(--white); }
.top-bar-phone .material-icons-outlined { font-size: 14px; color: var(--accent); }
.top-bar-divider { color: var(--gray-600); margin: 0 6px; }

/* ==========================================
   MOBILE SEARCH TOGGLE + EXPANDABLE BAR
   (Removed — search always visible on mobile)
   ========================================== */

/* ==========================================
   HERO — Slider + Vehicle Search Combined
   ========================================== */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,26,47,0.82) 0%, rgba(28,37,51,0.75) 50%, rgba(10,26,47,0.85) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0 60px;
}
.hero-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.hero-title span {
    color: var(--accent);
}
.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Hero Search Form */
.hero-search {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 6px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-search:hover,
.hero-search:focus-within {
    border-color: rgba(26,188,156,0.35);
    box-shadow: 0 0 30px rgba(26,188,156,0.1);
}
.hero-search-fields {
    display: flex;
    align-items: center;
    gap: 0;
}
.hero-field {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-field-icon {
    position: absolute;
    left: 16px;
    font-size: 20px;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
    z-index: 1;
}
.hero-field select {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%239e9e9e' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.hero-field select:focus {
    outline: none;
    background-color: rgba(255,255,255,0.06);
    border-radius: 12px;
}
.hero-field select:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.hero-field select option {
    background: var(--primary);
    color: var(--white);
}
.hero-field-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.hero-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.hero-search-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255,140,66,0.3);
}
.hero-search-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.hero-search-btn:hover::after {
    left: 100%;
}
.hero-search-btn .material-icons-outlined { font-size: 20px; }

/* Hero Popular */
.hero-popular {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.hero-popular > span {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}
.hero-popular a {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}
.hero-popular a:hover {
    background: rgba(26,188,156,0.15);
    color: var(--white);
    border-color: var(--teal);
}

/* Slider Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}
.hero-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    pointer-events: all;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.hero-nav-btn:hover {
    background: rgba(255,255,255,0.2);
}
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 8px;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.hero-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================
   TRUST STRIP
   ========================================== */
.trust-strip {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
}
.trust-strip::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 50%, var(--accent) 100%);
    opacity: 0.3;
}
.trust-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.trust-strip .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 0;
    background: none;
    border: none;
}
.trust-strip .trust-item .material-icons,
.trust-strip .trust-item .material-icons-outlined {
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(255,140,66,0.25);
}
.trust-strip .trust-item div strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
}
.trust-strip .trust-item div span {
    font-size: 12px;
    color: var(--gray-500);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.section-head h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 10px;
}
.section-head h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.section-more {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
.section-more:hover {
    color: var(--accent);
    gap: 8px;
}
.section-more .material-icons-outlined { font-size: 18px; }

/* ==========================================
   BANNER SECTIONS — Enhanced
   ========================================== */
.banner-section {
    padding: 32px 0;
}
.banner-grid {
    display: grid;
    gap: 16px;
}
.banner-grid.cols-1 { grid-template-columns: 1fr; }
.banner-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.banner-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.banner-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.banner-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/7;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.banner-card:hover img { transform: scale(1.05); }
.banner-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.18); transform: translateY(-3px); }
.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(10,26,47,0.78));
    color: var(--white);
    transition: padding 0.3s ease;
}
.banner-card:hover .banner-overlay { padding-bottom: 28px; }
.banner-overlay strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    letter-spacing: -0.3px;
}
.banner-overlay span { font-size: 14px; opacity: 0.85; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.banner-wide img { aspect-ratio: 21/7; }
.banner-mid { padding: 16px 0 32px; }
.banner-bottom { padding: 16px 0 32px; }

/* Promo strip - inline promotional bar */
.promo-strip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 14px 0;
    overflow: hidden;
}
.promo-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.promo-strip-inner span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.promo-strip-inner .material-icons-outlined {
    font-size: 18px;
    color: var(--accent);
}

/* Sidebar banner row - 2 tall banners side by side */
.banner-sidebar-row { padding: 16px 0 32px; }
.banner-sidebar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.banner-tall img { aspect-ratio: 4/5; }

/* ==========================================
   PRODUCT SECTIONS
   ========================================== */
.product-section {
    padding: 48px 0;
    position: relative;
}
.section-alt {
    background: var(--gray-50);
    position: relative;
}
.section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(10,26,47,0.025) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

/* ==========================================
   BRANDS SECTION
   ========================================== */
.brands-section {
    padding: 48px 0;
    background: var(--gray-50);
}
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.brand-item {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
}
.brand-item:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10,26,47,0.25);
}

/* ==========================================
   SEO CONTENT — Arama Motoru İçerik
   ========================================== */
.seo-content {
    padding: 48px 0 0;
}
.seo-content-box {
    max-width: 900px;
    margin: 0 auto;
}
.seo-content-box h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}
.seo-content-box p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 12px;
}

/* ==========================================
   NEWSLETTER — Clean Dark
   ========================================== */
.newsletter {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26,188,156,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.newsletter-text h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}
.newsletter-text p {
    font-size: 15px;
    opacity: 0.7;
}
.newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.newsletter-form input {
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 14px;
    min-width: 280px;
    transition: all 0.2s ease;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
}
.newsletter-form .btn-accent {
    padding: 14px 28px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.newsletter-form .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,140,66,0.4);
}

/* ==========================================
   FOOTER — Parcaofisi Style Dark Immersive
   ========================================== */
.main-footer {
    color: rgba(255,255,255,0.55);
    position: relative;
}

/* Destek Şeridi */
.footer-support-strip {
    background: var(--secondary);
    border-top: 3px solid var(--accent);
    padding: 20px 0;
}
.footer-support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.footer-support-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.footer-support-item:last-child { border-right: none; }
.footer-support-item .material-icons,
.footer-support-item svg {
    font-size: 28px;
    color: var(--accent);
    flex-shrink: 0;
}
.footer-support-item strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.footer-support-item span {
    font-size: 12px;
    color: var(--gray-400);
}

/* Footer Ana İçerik */
.footer-main {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 48px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 36px;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
    text-decoration: none;
}
.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
    opacity: 0.9;
}
.footer-logo-img:hover { opacity: 1; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: var(--gray-400); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--gray-400);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.06);
}
.footer-social a:hover { background: var(--teal); color: var(--white); border-color: var(--teal); transform: translateY(-3px); box-shadow: 0 4px 12px rgba(26,188,156,0.3); }
.footer-col h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-arrow { display: none; }
.footer-col .footer-collapse { display: flex; flex-direction: column; }
.footer-col ul li a {
    color: var(--gray-400);
    font-size: 13px;
    transition: var(--transition);
    text-decoration: none;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}
.footer-contact .material-icons-outlined { font-size: 18px; color: var(--accent); }

/* Footer Alt Çubuğu */
.footer-bottom {
    background: var(--primary-dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copyright { color: var(--gray-400); margin: 0; }
.footer-payment {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-payment img { height: 24px; width: auto; opacity: 0.8; }
.footer-payment img:hover { opacity: 1; }
.troy-logo { height: 22px !important; border-radius: 3px; }
.iyzico-logo { height: 20px !important; }
.footer-credit { font-size: 12px; color: var(--gray-500); margin: 0; }
.footer-credit a { color: var(--teal); text-decoration: none; font-weight: 600; transition: var(--transition); }
.footer-credit a:hover { color: var(--accent); }

/* ==========================================
   MOBILE BOTTOM NAV — Modern App-Style
   ========================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.96);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-top: none;
    box-shadow: 0 -1px 0 rgba(0,0,0,0.04), 0 -4px 16px rgba(0,0,0,0.06);
    z-index: 999;
    padding: 2px 0 env(safe-area-inset-bottom, 2px);
}
.mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-400);
    padding: 8px 4px 6px;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.mobile-bottom-nav a.active {
    color: var(--primary);
}
.mobile-bottom-nav a.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 0 0 3px 3px;
}
.mobile-bottom-nav .material-icons-outlined {
    font-size: 23px;
    transition: transform 0.15s ease;
}
.mobile-bottom-nav a.active .material-icons-outlined {
    transform: scale(1.05);
}
.mobile-cart-badge {
    position: absolute;
    top: 2px; right: calc(50% - 20px);
    background: var(--danger);
    color: var(--white);
    font-size: 9px;
    min-width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--white);
    box-shadow: 0 1px 4px rgba(239,68,68,0.3);
}

/* ==========================================
   NAV BACKDROP (Mobile Drawer Overlay)
   ========================================== */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    transition: opacity 0.3s ease;
}
.nav-backdrop.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ==========================================
   BREADCRUMB — Subtle Premium
   ========================================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
    font-size: 13px;
    color: var(--gray-500);
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-500); text-decoration: none; transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .material-icons-outlined { font-size: 16px; color: var(--gray-300); }

/* ==========================================
   PRODUCTS PAGE
   ========================================== */
.products-page {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    padding-bottom: 48px;
    align-items: start;
}
.products-page .filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 299;
}
.products-page .filter-overlay.open { display: block; }
.products-page .product-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Filter Sidebar */
.filter-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.filter-header h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); }
.filter-close { display: none; padding: 4px; color: var(--gray-500); }
.filter-group { margin-bottom: 0; border-bottom: 1px solid var(--gray-100); }
.filter-group:last-child { border-bottom: none; }
.filter-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    transition: color 0.15s ease;
}
.filter-group-toggle:hover { color: var(--primary); }
.filter-group-toggle .toggle-icon {
    font-size: 20px;
    color: var(--gray-400);
    transition: transform 0.25s ease;
}
.filter-group-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}
.filter-group-body {
    max-height: 400px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-bottom: 14px;
}
.filter-group-body.collapsed {
    max-height: 0;
    padding-bottom: 0;
}
.filter-group h4 { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; }
.filter-list { display: flex; flex-direction: column; gap: 6px; }
.filter-list li a {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
}
.filter-list li a:hover,
.filter-list li a.active { background: var(--primary-light); color: var(--primary); }
.filter-list li a span { font-size: 12px; color: var(--gray-400); }

/* Filter Parent with Sub-models */
.filter-parent-row {
    display: flex;
    align-items: center;
}
.filter-parent-row > a {
    flex: 1;
}
.filter-expand-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
    flex-shrink: 0;
}
.filter-expand-btn:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}
.filter-parent.open .filter-expand-btn .material-icons-outlined {
    transform: rotate(180deg);
}
.filter-sublist {
    padding-left: 16px;
    overflow: hidden;
    max-height: 500px;
    transition: max-height 0.3s ease;
}
.filter-sublist.collapsed {
    max-height: 0;
}
.filter-sublist li a {
    font-size: 13px;
    padding: 6px 12px;
}
.filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
    padding: 4px 0;
}
.filter-check span { margin-left: auto; font-size: 12px; color: var(--gray-400); }
.price-filter { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; }
.price-filter input {
    width: 100%;
    padding: 8px 12px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 13px;
}
.price-filter span { color: var(--gray-400); }

/* Products Toolbar */
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
}
.toolbar-left { display: flex; align-items: center; gap: 16px; }
.filter-toggle {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--gray-700);
    background: var(--white);
}
.product-count { font-size: 14px; color: var(--gray-500); }
.toolbar-right select {
    padding: 8px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}
.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-200);
    text-decoration: none;
    transition: var(--transition);
}
.page-link:hover { border-color: var(--primary); color: var(--primary); }
.page-link.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.page-link .material-icons-outlined { font-size: 18px; }
.page-dots { border: none; background: transparent; pointer-events: none; min-width: 24px; padding: 0; color: var(--gray-400); }
.page-info { font-size: 12px; color: var(--gray-400); margin-left: 8px; white-space: nowrap; }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 64px 20px;
    color: var(--gray-500);
}
.empty-state .material-icons-outlined { font-size: 64px; color: var(--gray-300); margin-bottom: 16px; }
.empty-state h3 { font-size: 20px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.empty-state p { font-size: 14px; margin-bottom: 24px; }

/* ==========================================
   PRODUCT DETAIL v3 — Mobile-First
   ========================================== */

/* Grid Layout */
.pd-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px 0 24px;
}

/* Gallery */
.pd-gallery { position: relative; }
.pd-gallery-main {
    position: relative;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.pd-gallery-main img { max-width: 85%; max-height: 85%; object-fit: contain; }
.pd-gallery-main .no-image { opacity: 0.4; max-width: 60%; }
.pd-badge-sale {
    position: absolute; top: 12px; left: 12px;
    background: var(--danger); color: #fff; font-size: 12px; font-weight: 700;
    padding: 4px 10px; border-radius: 50px; z-index: 2;
}
.pd-zoom-btn {
    position: absolute; bottom: 12px; right: 12px;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.9); border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--gray-600); z-index: 2; transition: var(--transition);
}
.pd-zoom-btn:hover { background: #fff; color: var(--primary); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.pd-img-counter {
    position: absolute; bottom: 12px; left: 12px;
    background: rgba(0,0,0,0.6); color: #fff; font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 50px;
}
.pd-thumbs { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px; }
.pd-thumbs::-webkit-scrollbar { display: none; }
.pd-thumb {
    width: 56px; height: 56px; min-width: 56px;
    border-radius: var(--radius); border: 2px solid var(--gray-200);
    overflow: hidden; cursor: pointer; padding: 3px;
    background: var(--white); transition: var(--transition);
}
.pd-thumb:hover, .pd-thumb.active { border-color: var(--primary); }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Product Info */
.pd-info { padding: 0; }
.pd-brand {
    font-size: 12px; font-weight: 700; color: var(--primary);
    text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none;
    display: inline-block; margin-bottom: 4px;
}
.pd-title { font-size: 20px; font-weight: 800; color: var(--gray-900); line-height: 1.3; margin-bottom: 10px; }
.pd-rating-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; font-size: 13px; }
.pd-stars { display: flex; gap: 1px; }
.pd-rating-num { font-size: 14px; font-weight: 700; color: var(--gray-800); }
.pd-review-link { color: var(--primary); text-decoration: none; font-size: 13px; }
.pd-review-link:hover { text-decoration: underline; }
.pd-write-btn {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 12px; font-weight: 600; color: var(--primary);
    background: rgba(10,26,47,0.06); padding: 3px 10px;
    border-radius: 50px; text-decoration: none; margin-left: auto;
}
.pd-write-btn .material-icons-outlined { font-size: 14px; }
.pd-write-btn:hover { background: rgba(10,26,47,0.12); }

/* Price */
.pd-price-box { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.pd-price-now { font-size: 26px; font-weight: 800; color: var(--primary); }
.pd-price-old { font-size: 17px; color: var(--gray-400); text-decoration: line-through; }
.pd-price-save { font-size: 12px; font-weight: 700; color: var(--danger); background: #fef2f2; padding: 3px 8px; border-radius: 50px; }
.pd-short-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 14px; }

/* Stock */
.pd-stock { margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.pd-stock-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; font-weight: 600; padding: 5px 10px; border-radius: 50px;
}
.pd-stock-badge.in-stock { background: #ecfdf5; color: #065f46; }
.pd-stock-badge.out-of-stock { background: #fef2f2; color: #991b1b; }
.pd-stock-badge .material-icons-outlined { font-size: 16px; }
.pd-stock-warn { font-size: 12px; font-weight: 600; color: var(--danger); }

/* Stock Notification */
.pd-stock-notify { background: #fef9e7; border: 1.5px solid #f0d56c; border-radius: var(--radius); padding: 14px 16px; margin: 12px 0 16px; }
.pd-stock-notify-text { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: #92600a; margin-bottom: 10px; }
.pd-stock-notify-text .material-icons-outlined { font-size: 20px; color: #d97706; }
.pd-stock-notify-form { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pd-stock-notify-form .form-control { flex: 1; min-width: 180px; height: 38px; font-size: 14px; padding: 6px 12px; border: 1.5px solid #e5e7eb; border-radius: var(--radius); }
.pd-stock-notify-success { display: flex; align-items: center; gap: 6px; color: #065f46; font-size: 14px; font-weight: 500; padding: 4px 0; }
.pd-stock-notify-success .material-icons-outlined { color: #059669; font-size: 20px; }

/* Add to Cart */
.pd-cart-form { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.pd-qty {
    display: flex; align-items: center;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden;
}
.pd-qty-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 600; color: var(--gray-700);
    background: var(--gray-50); border: none; cursor: pointer; transition: var(--transition);
}
.pd-qty-btn:hover { background: var(--gray-200); }
.pd-qty input {
    width: 44px; height: 38px; text-align: center; border: none;
    font-size: 15px; font-weight: 600; color: var(--gray-800); -moz-appearance: textfield; appearance: textfield;
}
.pd-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pd-add-btn {
    flex: 1; min-width: 160px;
    background: var(--accent) !important;
    box-shadow: 0 4px 16px rgba(255,140,66,0.3); transition: all 0.3s ease !important;
}
.pd-add-btn:hover { box-shadow: 0 6px 24px rgba(255,140,66,0.4) !important; transform: translateY(-1px); }
.pd-wish-btn {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius);
    color: var(--gray-500); transition: var(--transition); background: var(--white); cursor: pointer;
}
.pd-wish-btn:hover { border-color: var(--danger); color: var(--danger); }

/* Meta */
.pd-meta {
    padding: 12px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
    margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px;
}
.pd-meta-item { font-size: 13px; color: var(--gray-600); }
.pd-meta-item strong { color: var(--gray-800); margin-right: 4px; }
.pd-meta-item a { color: var(--primary); text-decoration: none; }

/* Trust */
.pd-trust { display: flex; gap: 12px; flex-wrap: wrap; }
.pd-trust-item {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 500; color: var(--gray-600);
}
.pd-trust-item .material-icons-outlined { font-size: 18px; color: var(--success); }

/* Tabs */
.pd-tabs { margin-bottom: 32px; }
.pd-tab-nav {
    display: flex; gap: 0;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 20px;
    overflow-x: auto;
}
.pd-tab-nav::-webkit-scrollbar { display: none; }
.pd-tab-btn {
    padding: 10px 16px; font-size: 13px; font-weight: 600;
    color: var(--gray-500); background: none; border: none;
    border-bottom: 2px solid transparent; margin-bottom: -2px;
    cursor: pointer; transition: var(--transition); white-space: nowrap;
    display: inline-flex; align-items: center; gap: 4px;
}
.pd-tab-btn .material-icons-outlined { font-size: 16px; }
.pd-tab-btn:hover { color: var(--gray-800); }
.pd-tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.pd-tab-content { display: none; }
.pd-tab-content.active { display: block; animation: fadeIn 0.3s ease; }
.product-description { font-size: 14px; line-height: 1.8; color: var(--gray-700); }
.product-description p { margin-bottom: 14px; }

/* Specs Table */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th, .specs-table td { padding: 10px 12px; font-size: 13px; border-bottom: 1px solid var(--gray-100); }
.specs-table th { text-align: left; font-weight: 600; color: var(--gray-800); width: 40%; background: var(--gray-50); }
.specs-table td { color: var(--gray-600); }

/* ==========================================
   REVIEWS SECTION — Always Visible
   ========================================== */
.pd-reviews-section {
    padding: 24px 0 32px;
    border-top: 2px solid var(--gray-100);
}
.pd-section-header {
    display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap;
}
.pd-section-header h2 {
    font-size: 18px; font-weight: 800; color: var(--gray-900);
    display: flex; align-items: center; gap: 6px; margin: 0;
}
.pd-section-header h2 .material-icons-outlined { font-size: 22px; color: var(--accent); }
.pd-review-count-badge {
    font-size: 12px; font-weight: 600; color: var(--gray-500);
    background: var(--gray-100); padding: 3px 10px; border-radius: 50px;
}

/* Rating Summary */
.pd-review-summary {
    display: flex; gap: 24px; padding: 20px;
    background: var(--gray-50); border-radius: var(--radius-lg);
    margin-bottom: 24px; align-items: center;
    flex-direction: column;
}
.pd-rs-score { text-align: center; display: flex; align-items: center; gap: 12px; }
.pd-rs-big { font-size: 40px; font-weight: 800; color: var(--gray-900); line-height: 1; }
.pd-rs-stars { display: flex; gap: 2px; }
.pd-rs-stars .star { font-size: 16px; }
.pd-rs-total { font-size: 12px; color: var(--gray-500); }
.pd-rs-bars { width: 100%; display: flex; flex-direction: column; gap: 4px; }
.pd-bar-row { display: flex; align-items: center; gap: 6px; }
.pd-bar-label { font-size: 12px; font-weight: 600; color: var(--gray-600); min-width: 30px; display: flex; align-items: center; gap: 2px; }
.pd-bar-label .star { font-size: 11px; }
.pd-bar-track { flex: 1; height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.pd-bar-fill { height: 100%; background: var(--accent); border-radius: 3px; transition: width 0.5s ease; }
.pd-bar-count { font-size: 12px; color: var(--gray-500); min-width: 18px; text-align: right; }

/* Review Form */
.pd-review-form-wrap { margin-bottom: 24px; }
.pd-rf {
    padding: 20px; background: var(--white);
    border: 2px solid var(--gray-100); border-radius: var(--radius-lg);
}
.pd-rf-title {
    font-size: 16px; font-weight: 700; margin-bottom: 4px;
    display: flex; align-items: center; gap: 6px;
}
.pd-rf-title .material-icons-outlined { font-size: 20px; color: var(--primary); }
.pd-rf-desc { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.pd-rf-field { margin-bottom: 14px; }
.pd-rf-field > label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 5px; }
.pd-rf-field > label small { font-weight: 400; color: var(--gray-400); }
.pd-rf-req { color: var(--danger); }
.pd-rf-stars-row { display: flex; align-items: center; gap: 8px; }
.star-rating-input {
    display: flex; flex-direction: row-reverse; justify-content: flex-end;
}
.star-rating-input input { display: none; }
.star-rating-input label { font-size: 26px; color: var(--gray-300); cursor: pointer; transition: color 0.15s; padding: 0 1px; }
.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label { color: var(--accent); }
.star-rating-text { font-size: 13px; color: var(--gray-500); }
.pd-rf-field .form-control { border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 9px 12px; font-size: 14px; width: 100%; }
.pd-rf-field textarea.form-control { resize: vertical; min-height: 80px; }
.pd-rf-char { text-align: right; font-size: 11px; color: var(--gray-400); margin-top: 3px; }
.pd-rf-submit { display: inline-flex; align-items: center; gap: 6px; }
.pd-rf-submit .material-icons-outlined { font-size: 18px; }

/* Login Prompt */
.pd-rf-login {
    padding: 20px; display: flex; align-items: center; gap: 14px;
    background: var(--primary-light);
    border: 1.5px solid rgba(10,26,47,0.12); border-radius: var(--radius-lg);
    flex-wrap: wrap;
}
.pd-rf-login > .material-icons-outlined { font-size: 28px; color: var(--primary); flex-shrink: 0; }
.pd-rf-login-text { flex: 1; min-width: 180px; }
.pd-rf-login-text strong { display: block; font-size: 14px; color: var(--gray-800); margin-bottom: 2px; }
.pd-rf-login-text p { font-size: 12px; color: var(--gray-500); margin: 0; }
.pd-rf-login > .btn { flex-shrink: 0; }

/* Reviews List */
.pd-reviews-list { display: flex; flex-direction: column; gap: 12px; }
.pd-review-card { padding: 16px; background: var(--gray-50); border-radius: var(--radius-lg); }
.pd-rc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.pd-rc-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--primary);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.pd-rc-info { flex: 1; min-width: 0; }
.pd-rc-name { font-weight: 700; font-size: 13px; color: var(--gray-800); display: block; }
.pd-rc-date { font-size: 11px; color: var(--gray-400); }
.pd-rc-stars { display: flex; gap: 1px; }
.pd-rc-stars .star { font-size: 13px; }
.pd-rc-title { font-weight: 700; font-size: 14px; color: var(--gray-800); margin-bottom: 4px; }
.pd-rc-comment { font-size: 13px; line-height: 1.6; color: var(--gray-700); margin: 0; }

/* No Reviews */
.pd-no-reviews {
    text-align: center; padding: 32px 16px; color: var(--gray-400);
}
.pd-no-reviews .material-icons-outlined { font-size: 40px; margin-bottom: 8px; display: block; }
.pd-no-reviews p { font-size: 15px; font-weight: 600; margin: 0 0 4px; color: var(--gray-500); }
.pd-no-reviews span { font-size: 12px; }

/* Mobile Sticky Bar */
.pd-mobile-sticky {
    display: flex; align-items: center; gap: 12px;
    position: fixed; bottom: 64px; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--gray-200);
    padding: 10px 16px; z-index: 90;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    transform: translateY(100%); transition: transform 0.3s ease;
}
.pd-mobile-sticky.visible { transform: translateY(0); }
.pd-ms-price { display: flex; flex-direction: column; }
.pd-ms-old { font-size: 11px; color: var(--gray-400); text-decoration: line-through; line-height: 1; }
.pd-ms-now { font-size: 18px; font-weight: 800; color: var(--primary); line-height: 1.2; }
.pd-ms-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; }
.pd-ms-btn .material-icons-outlined { font-size: 18px; }

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.85); display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.gallery-lightbox.active { opacity: 1; visibility: visible; }
.gallery-lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.gallery-lightbox-close {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: none; color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 24px; transition: background 0.2s;
}
.gallery-lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ==========================================
   PRODUCT DETAIL — Desktop (768px+)
   ========================================== */
@media (min-width: 769px) {
    .pd-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 24px 0 40px; }
    .pd-gallery { position: sticky; top: 100px; align-self: start; }
    .pd-thumb { width: 68px; height: 68px; min-width: 68px; }
    .pd-title { font-size: 26px; }
    .pd-price-now { font-size: 30px; }
    .pd-price-old { font-size: 18px; }
    .pd-tab-btn { padding: 12px 20px; font-size: 14px; }
    .pd-tab-btn .material-icons-outlined { font-size: 18px; }
    .pd-review-summary { flex-direction: row; gap: 32px; padding: 24px; }
    .pd-rs-score { flex-direction: column; text-align: center; min-width: 110px; gap: 6px; }
    .pd-rs-big { font-size: 48px; }
    .pd-mobile-sticky { display: none; }
    .pd-write-btn { display: inline-flex; }
    .pd-section-header h2 { font-size: 22px; }
}

/* Large Desktop (1024px+) */
@media (min-width: 1025px) {
    .pd-grid { gap: 48px; }
    .pd-title { font-size: 28px; }
    .pd-price-now { font-size: 32px; }
}

/* PD 480px — ana blokta mevcut */

/* Keep old classes for backward compatibility */
.quantity-selector { display: flex; align-items: center; border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.qty-btn { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 600; color: var(--gray-700); background: var(--gray-50); border: none; cursor: pointer; }
.qty-btn:hover { background: var(--gray-200); }
.quantity-selector input { width: 52px; height: 44px; text-align: center; border: none; font-size: 16px; font-weight: 600; color: var(--gray-800); -moz-appearance: textfield; appearance: textfield; }
.quantity-selector input::-webkit-inner-spin-button { -webkit-appearance: none; }
.quantity-selector.compact { border-width: 1px; }
.quantity-selector.compact .qty-btn { width: 32px; height: 32px; font-size: 16px; }
.quantity-selector.compact input { width: 40px; height: 32px; font-size: 14px; }
.btn-add-to-cart { flex: 1; min-width: 200px; }
.stock-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; padding: 6px 12px; border-radius: 50px; }
.stock-badge.in-stock { background: #ecfdf5; color: #065f46; }
.stock-badge.out-of-stock { background: #fef2f2; color: #991b1b; }
.stock-badge .material-icons-outlined { font-size: 18px; }
.trust-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--gray-600); }
.trust-item .material-icons-outlined { font-size: 20px; color: var(--success); }

/* ==========================================
   AUTH PAGES
   ========================================== */
.auth-form-section {
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.auth-form-section h2 { font-size: 28px; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; text-align: center; }
.auth-subtitle { text-align: center; color: var(--gray-500); font-size: 14px; margin-bottom: 28px; }

/* Form Elements */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: var(--gray-700); }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-800);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,26,47,0.08); }
.input-icon { position: relative; }
.input-icon > .material-icons-outlined {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 20px;
    pointer-events: none;
    z-index: 1;
}
.input-icon input { padding-left: 40px; }
.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    z-index: 2;
    padding: 4px;
    line-height: 1;
    display: flex;
    align-items: center;
}
.toggle-password .material-icons-outlined {
    position: static;
    transform: none;
    font-size: 20px;
}
.form-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-600); cursor: pointer; }
.forgot-link { font-size: 13px; color: var(--primary); font-weight: 500; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--gray-500); }
.auth-footer a { font-weight: 600; color: var(--primary); }
.admin-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.admin-badge .material-icons-outlined { font-size: 20px; color: var(--accent); }

/* ==========================================
   CART PAGE
   ========================================== */
.page-title { font-size: 28px; font-weight: 800; color: var(--gray-900); margin: 24px 0; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding-bottom: 48px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
    text-align: left; padding: 12px 16px;
    font-size: 12px; font-weight: 600; color: var(--gray-500);
    text-transform: uppercase; letter-spacing: 0.5px;
    border-bottom: 2px solid var(--gray-200);
}
.cart-table td { padding: 16px; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.cart-product-inner { display: flex; align-items: center; gap: 14px; }
.cart-product-inner img { width: 72px; height: 72px; border-radius: var(--radius); object-fit: contain; background: var(--gray-50); padding: 4px; }
.cart-product-name { font-size: 14px; font-weight: 600; color: var(--gray-800); text-decoration: none; display: block; }
.cart-product-name:hover { color: var(--primary); }
.cart-price { font-weight: 600; color: var(--gray-700); }
.cart-total strong { font-size: 16px; color: var(--gray-900); }
.btn-remove { color: var(--gray-400); padding: 8px; transition: var(--transition); }
.btn-remove:hover { color: var(--danger); }

/* Cart Summary */
.cart-summary {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 28px;
    position: sticky;
    top: 100px;
    align-self: start;
}
.cart-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--gray-600); }
.summary-row.total { font-size: 20px; font-weight: 800; color: var(--gray-900); padding-top: 12px; }
.summary-row.discount { color: var(--success); }
.summary-divider { height: 1px; background: var(--gray-200); margin: 8px 0; }
.coupon-form { display: flex; gap: 8px; margin: 16px 0; }
.coupon-form input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: 14px; }

/* ==========================================
   ACCOUNT PAGE
   ========================================== */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 32px 0; }
.account-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 24px;
    position: sticky;
    top: 100px;
    align-self: start;
}
.account-user { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-100); }
.account-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700;
}
.account-user strong { font-size: 14px; display: block; }
.account-user small { font-size: 12px; color: var(--gray-500); }
.account-nav { display: flex; flex-direction: column; gap: 4px; }
.account-nav a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: var(--radius);
    font-size: 14px; color: var(--gray-700); font-weight: 500;
    text-decoration: none; transition: var(--transition);
}
.account-nav a:hover { background: var(--gray-100); color: var(--primary); }
.account-nav a.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }
.account-nav .material-icons-outlined { font-size: 20px; }
.nav-logout button {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: var(--radius);
    font-size: 14px; color: var(--danger); font-weight: 500;
    width: 100%; background: none; border: none; cursor: pointer;
    transition: var(--transition);
}
.nav-logout button:hover { background: #fef2f2; }
.account-content h2 { font-size: 24px; font-weight: 800; margin-bottom: 24px; }
.account-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card {
    display: flex; align-items: center; gap: 14px;
    padding: 20px; background: var(--gray-50);
    border-radius: var(--radius-lg); border: 1px solid var(--gray-100);
}
.stat-card .material-icons-outlined { font-size: 28px; color: var(--primary); }
.stat-card strong { font-size: 24px; font-weight: 800; display: block; color: var(--gray-900); }
.stat-card span { font-size: 13px; color: var(--gray-500); }

/* Data Table */
.table-responsive { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
    text-align: left; padding: 12px 16px;
    font-size: 12px; font-weight: 600; color: var(--gray-500);
    text-transform: uppercase; border-bottom: 2px solid var(--gray-200);
}
.data-table td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid var(--gray-100); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .products-page { grid-template-columns: 220px 1fr; gap: 20px; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .products-page .product-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .advantages-strip { gap: 10px; }
    .adv-chip { padding: 7px 14px; font-size: 12px; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; }
    .cart-layout { grid-template-columns: 1fr; }
    .account-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================
   MOBILE — 768px
   Parcaofisi tarzı: TopBar | Hamburger | Logo | Arama+Sepet
   ========================================== */
@media (max-width: 768px) {
    .container { padding: 0 12px; }

    /* === DESKTOP TOP BAR: Gizle === */
    .top-bar { display: none; }

    /* === MOBİL TOP BAR: Bize Ulaşın === */
    .mobile-top-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: var(--primary-dark);
        color: rgba(255,255,255,0.75);
        font-size: 12px;
        padding: 7px 12px;
        font-weight: 500;
    }
    .mobile-top-bar .material-icons { font-size: 15px; color: var(--accent); }
    .mobile-top-bar a {
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
    }

    /* === HEADER: Parcaofisi Tarzı === */
    .main-header {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        box-shadow: 0 2px 12px rgba(10,26,47,0.25);
        border-bottom: 1px solid rgba(26,188,156,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-inner {
        display: flex;
        align-items: center;
        gap: 0;
        padding: 0;
        height: 52px;
        position: relative;
    }

    /* Hamburger — Sol */
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 52px;
        border-radius: 0;
        background: transparent;
        border: none;
        color: rgba(255,255,255,0.85);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        flex-shrink: 0;
        order: 1;
    }
    .nav-toggle:hover,
    .nav-toggle:active,
    .nav-toggle.active {
        background: transparent;
        color: var(--white);
        border: none;
    }
    .nav-toggle .material-icons-outlined { font-size: 24px; }

    /* Logo — Orta, absolute centering */
    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        padding: 0;
        order: 2;
        z-index: 1;
    }
    .logo-desktop { display: none; }
    .logo-mobile {
        display: block;
        height: 22px;
        box-sizing: content-box;
        position: relative;
    }

    /* Logo Glow Efekti */
    .logo-mobile {
        filter: drop-shadow(0 0 6px rgba(26,188,156,0.35));
    }

    /* Logo Shine Animasyonu */
    .logo-mobile::after {
        content: '';
        position: absolute;
        top: -2px; left: -20%;
        width: 30%;
        height: calc(100% + 4px);
        background: linear-gradient(
            105deg,
            transparent 0%,
            transparent 35%,
            rgba(255,255,255,0.3) 45%,
            rgba(255,255,255,0.1) 50%,
            transparent 55%,
            transparent 100%
        );
        animation: logoShine 4s ease-in-out infinite;
        pointer-events: none;
    }
    @keyframes logoShine {
        0%, 100% { left: -30%; opacity: 0; }
        10% { opacity: 1; }
        40% { left: 120%; opacity: 1; }
        50%, 100% { left: 120%; opacity: 0; }
    }

    /* Desktop öğeleri gizle */
    .search-form { display: none !important; }
    .header-actions { display: none !important; }

    /* Mobil Arama Butonu */
    .header-search-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 52px;
        min-width: 0;
        border-radius: 0;
        background: transparent;
        color: rgba(255,255,255,0.85);
        padding: 0;
        flex-direction: row;
        -webkit-tap-highlight-color: transparent;
        order: 3;
        flex-shrink: 0;
        margin-left: auto;
        gap: 0;
    }
    .header-search-btn .material-icons-outlined { font-size: 23px; }

    /* Mobil Sepet Butonu */
    .mobile-cart-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 52px;
        min-width: 0;
        background: transparent;
        color: rgba(255,255,255,0.85);
        padding: 0;
        position: relative;
        order: 4;
        flex-shrink: 0;
        flex-direction: row;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        margin-right: -4px;
        gap: 0;
    }
    .mobile-cart-btn .material-icons-outlined { font-size: 23px; }
    .mobile-cart-btn .mobile-badge {
        position: absolute;
        top: 8px; right: 4px;
        background: var(--accent);
        color: var(--white);
        font-size: 9px;
        font-weight: 700;
        min-width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    /* === MOBİL ARAMA ÇUBUĞU (tıkla-aç) === */
    .mobile-search-bar {
        display: none;
        padding: 0 12px 10px;
        background: var(--primary);
    }
    .mobile-search-bar.open {
        display: block;
    }
    .mobile-search-bar form {
        position: relative;
        display: flex;
    }
    .mobile-search-bar input {
        width: 100%;
        padding: 10px 44px 10px 16px;
        font-size: 14px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.15);
        background: rgba(255,255,255,0.1);
        height: 42px;
        -webkit-appearance: none;
        font-family: var(--font);
        color: var(--white);
    }
    .mobile-search-bar input:focus {
        background: rgba(255,255,255,0.15);
        border-color: var(--teal);
        outline: none;
    }
    .mobile-search-bar input::placeholder { color: rgba(255,255,255,0.45); font-size: 13px; }
    .mobile-search-bar button {
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        background: var(--accent);
        color: var(--white);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
    }
    .mobile-search-bar button .material-icons-outlined { font-size: 18px; }

    /* === NAV PANEL: Side Drawer === */
    .nav-panel {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 300px;
        max-width: 82vw;
        max-height: none;
        padding: 0;
        border-top: none;
        border-radius: 0;
        box-shadow: 4px 0 24px rgba(0,0,0,0.12);
        z-index: 10001;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
        display: block;
        animation: none;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--white);
    }
    .nav-panel.open {
        transform: translateX(0);
    }
    .nav-panel-inner { padding: 20px 16px; }

    /* Drawer sections */
    .nav-section-group { margin-bottom: 24px; }
    .nav-section-title {
        font-size: 10px;
        font-weight: 800;
        color: var(--gray-400);
        text-transform: uppercase;
        letter-spacing: 1.6px;
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--gray-100);
    }
    .nav-links-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .nav-links-grid a {
        padding: 12px;
        font-size: 14px;
        font-weight: 500;
        gap: 12px;
        border-radius: 8px;
        color: var(--gray-700);
        -webkit-tap-highlight-color: transparent;
    }
    .nav-links-grid a:active { background: var(--gray-100); }
    .nav-links-grid a .material-icons-outlined { font-size: 20px; opacity: 0.6; }
    .nav-brand-chips { gap: 6px; }
    .nav-chip {
        padding: 7px 14px;
        font-size: 12px;
        border-radius: 20px;
        -webkit-tap-highlight-color: transparent;
    }
    .nav-footer-links {
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 16px;
    }
    .nav-footer-links a { font-size: 13px; }

    /* === BRAND BAR: scroll === */
    .brand-bar-list {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }
    .brand-bar-list::-webkit-scrollbar { display: none; }
    .brand-pill { padding: 10px 12px; font-size: 10.5px; }
    .brand-bar .container { overflow: visible; }
    .brand-bar-inner { overflow: visible; }
    .brand-more-btn { width: 42px; }
    .brand-more-btn::before { left: -20px; width: 20px; }
    .brand-mega { display: none !important; }

    /* Brand Dropdown → Mobile Bottom Sheet */
    .brand-dropdown {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        z-index: 10000;
    }
    .brand-dropdown-backdrop {
        background: rgba(0,0,0,0.5);
    }
    .brand-dropdown-panel {
        position: absolute; bottom: 0; left: 0; right: 0;
        max-height: 88vh;
        border-radius: 16px 16px 0 0;
        border-top: none;
        box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
        animation: sheetSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    }
    @keyframes sheetSlideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    .brand-dropdown-panel > .container { padding: 0 16px; }
    .brand-dropdown-header {
        padding: 20px 0 12px;
        position: sticky; top: 0;
        background: var(--white);
        z-index: 1;
        border-radius: 16px 16px 0 0;
    }
    .brand-dropdown-header::before {
        content: '';
        position: absolute; top: 8px; left: 50%;
        transform: translateX(-50%);
        width: 36px; height: 4px;
        background: var(--gray-200);
        border-radius: 2px;
    }
    .brand-dropdown-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
    .brand-dropdown-item { padding: 13px 14px; font-size: 14px; border-radius: 10px; }
    .brand-dropdown-search { margin: 8px 0 12px; padding: 12px 14px; border-radius: 10px; }
    .brand-dropdown-footer {
        position: sticky; bottom: 0;
        background: var(--white);
        padding: 12px 0 env(safe-area-inset-bottom, 20px); z-index: 1;
    }
    .brand-dropdown-all-btn {
        width: 100%; justify-content: center;
        padding: 14px 20px; border-radius: 10px; font-size: 15px;
    }

    /* === MOBILE BOTTOM NAV === */
    .mobile-bottom-nav { display: flex; }
    body { padding-bottom: 56px; }

    /* === PRODUCT GRID === */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .product-card {
        border-radius: 10px;
        border: 1px solid var(--gray-100);
        box-shadow: none;
        overflow: hidden;
    }
    .product-card:hover {
        transform: none;
        box-shadow: none;
    }
    .product-image {
        aspect-ratio: 1;
        border-radius: 0;
        background: var(--white);
    }
    .product-image img { padding: 8px; }
    .product-image::after { display: none; }
    .product-badge { font-size: 10px; padding: 3px 8px; }
    .product-info {
        padding: 8px 10px 4px;
        gap: 2px;
    }
    .product-brand { font-size: 9.5px; letter-spacing: 0.6px; }
    .product-name {
        font-size: 12px;
        -webkit-line-clamp: 2;
        line-height: 1.35;
        font-weight: 500;
    }
    .product-name:hover { color: inherit; }
    .product-price { gap: 6px; padding-top: 2px; }
    .price-current { font-size: 15px; font-weight: 800; letter-spacing: -0.5px; }
    .price-old { font-size: 11px; }
    .product-rating { font-size: 11px; }
    .star { font-size: 12px; }
    .product-actions {
        padding: 4px 10px 10px;
        gap: 6px;
    }
    .btn-add-cart {
        padding: 8px 6px;
        font-size: 11.5px;
        border-radius: 8px;
        gap: 4px;
    }
    .btn-add-cart .material-icons-outlined { font-size: 16px; }
    .btn-wishlist {
        width: 32px; height: 32px;
        border-radius: 8px;
        flex-shrink: 0;
    }
    .btn-wishlist .material-icons-outlined { font-size: 17px; }

    /* === FILTER SIDEBAR === */
    .products-page { grid-template-columns: 1fr; }
    .products-page .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .filter-sidebar {
        position: fixed; top: 0; left: 0; bottom: 0;
        width: 300px; max-width: 85vw;
        background: var(--white); z-index: 300;
        padding: 20px; overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
        box-shadow: 4px 0 24px rgba(0,0,0,0.12);
        border: none;
        border-radius: 0;
    }
    .filter-sidebar.open { transform: translateX(0); }
    .filter-overlay.open { display: block !important; }
    .filter-close { display: flex; }
    .filter-toggle { display: flex; }

    /* === PRODUCTS TOOLBAR MOBILE === */
    .products-toolbar {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 14px;
        padding: 0;
    }
    .toolbar-left {
        gap: 10px;
        flex: 1;
        min-width: 0;
    }
    .filter-toggle {
        padding: 7px 12px;
        font-size: 13px;
        gap: 4px;
        border-radius: 8px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .filter-toggle .material-icons-outlined { font-size: 18px; }
    .product-count {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .toolbar-right {
        flex-shrink: 0;
    }
    .toolbar-right select {
        padding: 7px 10px;
        font-size: 12px;
        border-radius: 8px;
        max-width: 160px;
    }

    /* === CATEGORIES === */
    .category-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .category-card {
        padding: 14px 8px;
        border-radius: 10px;
        gap: 6px;
    }
    .category-card img { width: 40px; height: 40px; }
    .category-icon { font-size: 32px !important; }
    .category-card h4 { font-size: 11px; }
    .cat-count { font-size: 10px; }

    /* === ADVANTAGES === */
    .advantages { padding: 8px 0; }
    .advantages-strip {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 6px;
        scrollbar-width: none;
        padding: 0 4px;
    }
    .advantages-strip::-webkit-scrollbar { display: none; }
    .adv-chip {
        padding: 7px 14px;
        font-size: 11.5px;
        flex-shrink: 0;
        border-radius: 20px;
        box-shadow: none;
        border-color: var(--gray-200);
    }
    .adv-chip:hover { transform: none; }
    .adv-chip .material-icons-outlined { font-size: 15px; }

    /* === HERO SLIDER === */
    .hero-slider { border-radius: 0; }
    .slide { min-height: 200px; }
    .slide-content { padding: 20px 0; }
    .slide-content h1 { font-size: 22px; margin-bottom: 8px; }
    .slide-content p { font-size: 13px; margin-bottom: 14px; }
    .slide-content .btn {
        padding: 10px 24px; font-size: 13px; border-radius: 8px;
    }
    .slider-btn { width: 32px; height: 32px; }
    .slider-btn .material-icons-outlined { font-size: 20px; }
    .slider-btn.prev { left: 6px; }
    .slider-btn.next { right: 6px; }
    .slider-dots { bottom: 10px; gap: 6px; }
    .dot { width: 6px; height: 6px; }
    .dot.active { width: 18px; border-radius: 3px; }
    .hero-banner { padding: 40px 0; }
    .hero-banner h1 { font-size: 26px; }
    .hero-banner p { font-size: 14px; }

    /* === SECTION HEADERS === */
    .product-section { padding: 20px 0; }
    .section-header { margin-bottom: 12px; }
    .section-header h2 {
        font-size: 16px; font-weight: 800;
        letter-spacing: -0.2px;
    }
    .section-header h2 .material-icons-outlined { font-size: 18px; }
    .section-link {
        font-size: 12px; padding: 5px 12px;
        border-radius: 20px;
        background: transparent;
        color: var(--primary);
    }
    .section-link:hover { background: var(--primary-light); color: var(--primary); }
    .section-link .material-icons-outlined { font-size: 14px; }

    /* === NEWSLETTER === */
    .newsletter-section { padding: 24px 0; }
    .newsletter-section::after { display: none; }
    .newsletter-inner { flex-direction: column; text-align: center; gap: 14px; }
    .newsletter-text h3 { font-size: 18px; }
    .newsletter-text p { font-size: 12px; }
    .newsletter-form { flex-direction: column; gap: 8px; }
    .newsletter-form input {
        min-width: auto; width: 100%;
        padding: 12px 16px; border-radius: 8px;
        font-size: 14px;
    }
    .newsletter-form .btn { border-radius: 8px !important; padding: 12px 24px !important; font-size: 14px; }

    /* === FOOTER === */
    .footer-support-strip { display: none; }

    /* === CONTACT PAGE MOBILE === */
    .contact-hero { padding: 20px 0 24px; }
    .contact-hero h1 { font-size: 24px; }
    .contact-hero p { font-size: 14px; }
    .contact-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .contact-card { padding: 20px 14px; border-radius: 12px; }
    .contact-card-icon { width: 44px; height: 44px; border-radius: 10px; margin-bottom: 12px; }
    .contact-card-icon .material-icons-outlined { font-size: 22px; }
    .contact-card h3 { font-size: 14px; }
    .contact-card p { font-size: 12px; margin-bottom: 8px; }
    .contact-link { font-size: 13px; }
    .contact-info-section { grid-template-columns: 1fr; gap: 12px; }
    .contact-info-card { padding: 20px; border-radius: 12px; }
    .contact-info-header h3 { font-size: 16px; }

    .checkout-payment-info { padding: 14px; margin-top: 14px; }
    .checkout-card-brands { gap: 10px; margin-bottom: 10px; padding-bottom: 10px; }
    .card-brand-icon { height: 24px; }
    .card-brand-icon.iyzico-brand { height: 20px; }
    .payment-badges { grid-template-columns: 1fr; gap: 8px; }
    .payment-badge { padding: 8px 10px; }
    .payment-badge .material-icons-outlined { font-size: 18px; }
    .payment-badge strong { font-size: 11px; }
    .payment-badge span { font-size: 10px; }

    .footer-main { padding: 16px 0 8px; }
    .footer-grid { grid-template-columns: 1fr; gap: 0; }
    .footer-col:first-child { margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .footer-col:first-child .footer-desc { display: none; }
    .footer-col:first-child .footer-logo-img { height: 24px; margin-bottom: 6px; }
    .footer-social { gap: 6px; margin-bottom: 0; }
    .footer-social a { width: 30px; height: 30px; }

    /* Accordion — Kompakt */
    .footer-accordion { border-top: 1px solid rgba(255,255,255,0.06); }
    .footer-toggle {
        display: flex; align-items: center; justify-content: space-between;
        padding: 10px 0; margin-bottom: 0; font-size: 12.5px; cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .footer-toggle::after { display: none; }
    .footer-col h4::after { display: none; }
    .footer-arrow { display: inline; font-size: 18px; transition: transform 0.25s ease; color: var(--gray-500); }
    .footer-accordion.open .footer-arrow { transform: rotate(180deg); }
    .footer-col .footer-collapse { display: none; flex-direction: column; gap: 2px; padding-bottom: 8px; }
    .footer-col ul.footer-collapse { display: none; }
    .footer-accordion.open .footer-collapse { display: flex; }
    .footer-col ul li a { font-size: 12px; padding: 4px 0; }
    .footer-contact li { font-size: 12px; }

    .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; padding: 10px 0; font-size: 11px; }
    .footer-copyright { font-size: 10.5px; }
    .footer-payment { gap: 8px; }
    .footer-payment img { height: 18px; }
    .footer-desc { font-size: 12px; }

    /* === CART / ACCOUNT / AUTH === */
    .cart-layout { grid-template-columns: 1fr; }
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .auth-form-section { margin: 0; padding: 0; }
    .form-row-2col { grid-template-columns: 1fr; }
    .page-title { font-size: 22px; margin: 16px 0; }

    /* === VEHICLE SHOWCASE === */
    .vehicle-showcase { padding: 14px 0 12px; }
    .vs-header { margin-bottom: 8px; }
    .vs-icon { width: 32px; height: 32px; font-size: 18px; border-radius: 8px; }
    .vs-title { font-size: 14px; }
    .vs-sub { font-size: 11px; }
    .vs-arrows { gap: 4px; }
    .vs-arr { width: 28px; height: 28px; border-radius: 6px; }
    .vs-arr .material-icons-outlined { font-size: 16px; }
    .vs-track { gap: 8px; padding: 2px 12px 6px; }
    .vcard { flex: 0 0 112px; border-radius: 10px; }
    .vcard-img { height: 60px; padding: 4px; }
    .vcard-info { padding: 3px 8px 6px; }
    .vcard-brand { font-size: 8px; }
    .vcard-name { font-size: 10.5px; }
    .vs-scroll-area::before,
    .vs-scroll-area::after { width: 20px; }

    /* === WHATSAPP === */
    .whatsapp-float { bottom: 68px; right: 12px; width: 48px; height: 48px; }
    .whatsapp-float .whatsapp-icon { width: 22px; height: 22px; }
    .whatsapp-tooltip { display: none; }

    /* === BREADCRUMB === */
    .breadcrumb { padding: 10px 0; font-size: 12px; }

    /* === MODALS & TABLES === */
    .modal-content { margin: 12px; max-width: calc(100% - 24px); }
    .form-row-3col { grid-template-columns: 1fr; }
    .address-list { grid-template-columns: 1fr; }
    .cart-table thead { display: none; }
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
    .cart-table tr {
        padding: 14px; margin-bottom: 8px;
        border: 1px solid var(--gray-200);
        border-radius: 10px;
        background: var(--white);
    }
    .cart-table td { padding: 4px 0; border: none; text-align: right; }
    .cart-table td::before { content: attr(data-label); float: left; font-weight: 600; color: var(--gray-600); }
    .cart-product-inner img { width: 56px; height: 56px; }
    .data-table, .specs-table { font-size: 13px; }
    .specs-table th, .specs-table td { padding: 8px 10px; }
    .form-row-2col, .form-row-3col { grid-template-columns: 1fr !important; }

    /* === STATIC PAGES === */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: 1fr 1fr; }
    .about-hero h2, .contact-hero h2 { font-size: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }

    /* === BRAND BAR: Mobilde gizle === */
    .brand-bar { display: none; }

    /* === HERO SECTION === */
    .hero { min-height: 400px; }
    .hero-content { padding: 40px 0 30px; }
    .hero-inner { max-width: 100%; padding: 0 12px; }
    .hero-title { font-size: 26px; margin-bottom: 10px; }
    .hero-subtitle { font-size: 14px; margin-bottom: 24px; }
    .hero-search { border-radius: 12px; padding: 4px; }
    .hero-search-fields { flex-direction: column; gap: 0; }
    .hero-field-divider { display: none; }
    .hero-field select {
        padding: 14px 16px 14px 44px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .hero-field-icon { left: 14px; font-size: 18px; }
    .hero-search-btn {
        width: 100%;
        padding: 14px;
        border-radius: 0 0 8px 8px;
        font-size: 15px;
    }
    .hero-popular { margin-top: 16px; gap: 6px; }
    .hero-popular > span { font-size: 11px; }
    .hero-popular a { font-size: 11px; padding: 5px 12px; }
    .hero-nav { display: none; }
    .hero-dots { bottom: 12px; }

    /* === TRUST STRIP === */
    .trust-strip { padding: 14px 0; }
    .trust-row { flex-wrap: wrap; gap: 10px; }
    .trust-strip .trust-item { flex: 0 0 calc(50% - 5px); gap: 8px; }
    .trust-strip .trust-item .material-icons,
    .trust-strip .trust-item .material-icons-outlined { font-size: 22px; width: 36px; height: 36px; border-radius: 8px; }
    .trust-strip .trust-item div strong { font-size: 11px; }
    .trust-strip .trust-item div span { font-size: 10px; }

    /* === BANNERS === */
    .banner-grid.cols-2, .banner-grid.cols-3 { grid-template-columns: 1fr; gap: 8px; }
    .banner-overlay strong { font-size: 15px; }
    .banner-overlay { padding: 14px; }
    .banner-card { border-radius: 10px; }
    .banner-sidebar-grid { grid-template-columns: 1fr; gap: 8px; }
    .banner-tall img { aspect-ratio: 16/7; }

    /* === SECTION HEADS === */
    .section-head { margin-bottom: 16px; }
    .section-head h2 { font-size: 18px; }
    .section-more { font-size: 12px; }

    /* === PRODUCT SECTION === */
    .product-section { padding: 24px 0; }

    /* === BRANDS SECTION === */
    .brands-section { padding: 24px 0; }
    .brands-grid { gap: 6px; }
    .brand-item { padding: 8px 14px; font-size: 11px; }

    /* === NEWSLETTER === */
    .newsletter { padding: 32px 0; }
    .newsletter-box { flex-direction: column; text-align: center; gap: 20px; }
    .newsletter-text h3 { font-size: 20px; }
    .newsletter-text p { font-size: 13px; }
    .newsletter-form { flex-direction: column; gap: 8px; width: 100%; }
    .newsletter-form input { min-width: auto; width: 100%; padding: 12px 16px; border-radius: var(--radius); }
    .newsletter-form .btn-accent { width: 100%; padding: 12px; border-radius: var(--radius); }
}

/* ==========================================
   MOBILE — 480px — Ultra Compact
   ========================================== */
@media (max-width: 480px) {
    .container { padding: 0 10px; }

    /* Header ultra compact */
    .header-inner { height: 48px; }
    .nav-toggle { width: 42px; height: 48px; }
    .nav-toggle .material-icons-outlined { font-size: 22px; }
    .logo-img { height: 22px; }
    .header-search-btn { width: 42px; height: 48px; }
    .mobile-cart-btn { width: 42px; height: 48px; margin-right: -2px; }
    .header-actions .cart-count { width: 15px; height: 15px; font-size: 8px; }
    .mobile-search-bar input { height: 38px; font-size: 13px; }
    .mobile-search-bar button { width: 34px; height: 30px; }

    /* Product cards even tighter */
    .product-grid { gap: 6px; }
    .product-image img { padding: 6px; }
    .product-info { padding: 6px 8px 2px; }
    .product-brand { font-size: 9px; }
    .product-name { font-size: 11px; }
    .price-current { font-size: 14px; }
    .price-old { font-size: 10px; }
    .product-actions { padding: 4px 8px 8px; flex-direction: column; gap: 4px; }
    .btn-add-cart { width: 100%; padding: 7px; font-size: 11px; border-radius: 6px; }
    .btn-wishlist { width: 100%; height: 30px; }

    /* Categories 2col */
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .category-card { padding: 10px 6px; }
    .category-card img { width: 32px; height: 32px; }
    .category-card h4 { font-size: 10px; }

    /* Hero shorter */
    .slide { min-height: 170px; }
    .slide-content { padding: 16px 0; }
    .slide-content h1 { font-size: 18px; }
    .slide-content p { font-size: 12px; margin-bottom: 10px; }
    .slide-content .btn { padding: 8px 20px; font-size: 12px; }
    .hero-banner h1 { font-size: 22px; }
    .hero-banner p { font-size: 13px; }

    /* Sections */
    .product-section { padding: 16px 0; }
    .section-header h2 { font-size: 15px; }
    .page-title { font-size: 18px; }
    .account-stats { grid-template-columns: 1fr; }

    /* Advantages */
    .adv-chip { padding: 5px 10px; font-size: 10px; }
    .adv-chip .material-icons-outlined { font-size: 13px; }

    /* Brand bar */
    .brand-pill { padding: 8px 10px; font-size: 9.5px; }
    .brand-more-btn { width: 36px; }
    .brand-dropdown-grid { grid-template-columns: 1fr; }
    .brand-dropdown-item { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--gray-50); border-radius: 0; }

    /* Newsletter */
    .newsletter-section { padding: 24px 0; }
    .newsletter-text h3 { font-size: 18px; }

    /* Footer */
    .footer-col h4 { font-size: 13px; }

    /* Modals */
    .modal-content { margin: 8px; max-width: calc(100% - 16px); }
    .modal-body { padding: 14px; }
    .modal-header { padding: 12px 14px; }

    /* PD */
    .pd-title { font-size: 18px; }
    .pd-price-now { font-size: 22px; }
    .pd-cart-form { flex-direction: column; }
    .pd-add-btn { width: 100%; min-width: unset; }
    .pd-write-btn { display: none; }
    .pd-trust { gap: 8px; }
    .pd-trust-item { font-size: 11px; }
    .pd-rf { padding: 14px; }
    .pd-rf-login { flex-direction: column; text-align: center; }
    .pd-rf-login > .btn { width: 100%; }

    /* Nav drawer 480px */
    .nav-chip { padding: 4px 9px; font-size: 10.5px; }
    .nav-links-grid a { padding: 8px 10px; font-size: 12px; }

    /* Static pages 480px */
    .contact-grid { grid-template-columns: 1fr; }
    .faq-question { font-size: 14px; padding: 12px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

    /* Product detail 480px */
    .product-detail-layout { gap: 16px; }
    .product-title { font-size: 18px; }
    .product-price .current { font-size: 22px; }

    /* Auth */
    .auth-card { padding: 20px 16px; }
    .form-row { flex-direction: column; gap: 8px; align-items: flex-start; }

    /* 480px — Hero */
    .hero { min-height: 340px; }
    .hero-title { font-size: 22px; }
    .hero-subtitle { font-size: 13px; margin-bottom: 20px; }
    .hero-field select { padding: 12px 14px 12px 40px; font-size: 13px; }
    .hero-search-btn { padding: 12px; font-size: 14px; }
    .hero-popular a { font-size: 10px; padding: 4px 10px; }

    /* 480px — Trust */
    .trust-strip { padding: 10px 0; }
    .trust-strip .trust-item { gap: 6px; }
    .trust-strip .trust-item .material-icons,
    .trust-strip .trust-item .material-icons-outlined { font-size: 20px; }
    .trust-strip .trust-item div strong { font-size: 10px; }
    .trust-strip .trust-item div span { font-size: 9px; }

    /* 480px — Brands */
    .brands-grid { gap: 4px; }
    .brand-item { padding: 6px 12px; font-size: 10px; }

    /* 480px — Newsletter */
    .newsletter { padding: 24px 0; }
    .newsletter-text h3 { font-size: 18px; }
}

/* ============================================
   Auth Pages (Login / Register / Forgot)
   ============================================ */
.auth-body {
    background: var(--gray-50);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
}

.auth-wrapper {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.auth-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(10,26,47,0.08);
    padding: 40px;
    position: relative;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header .logo {
    font-size: 28px;
    text-decoration: none;
}

.auth-form-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 14px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--text);
}

.forgot-link {
    color: var(--primary);
    font-size: 13px;
    text-decoration: none;
}

.forgot-link:hover { text-decoration: underline; }

/* Auth 480px — ana blokta mevcut */

/* ==========================================
   MODAL
   ========================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal.show { display: flex; }
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.modal-content {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}
.modal-header h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin: 0; }
.modal-close {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-size: 20px; color: var(--gray-500);
    background: none; border: none; cursor: pointer;
    transition: var(--transition);
}
.modal-close:hover { background: var(--gray-100); color: var(--gray-800); }
.modal-body { padding: 24px; }
.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid var(--gray-200);
}

/* ==========================================
   FORM CONTROL (standalone)
   ========================================== */
.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-800);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,26,47,0.08); }
textarea.form-control { resize: vertical; }
select.form-control { cursor: pointer; }
input[type="file"].form-control { padding: 8px 14px; }

/* ==========================================
   FORM ROW LAYOUTS
   ========================================== */
.form-row-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* ==========================================
   BADGES
   ========================================== */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-success { background: #ecfdf5; color: #065f46; }
.badge-secondary { background: var(--gray-100); color: var(--gray-600); }
.badge-danger { background: #fef2f2; color: #991b1b; }

/* ==========================================
   PAGE HEADER ROW
   ========================================== */
.page-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.page-header-row h2 { font-size: 24px; font-weight: 800; color: var(--gray-900); margin: 0; }

/* ==========================================
   CATEGORY HEADER
   ========================================== */
.category-header { margin-bottom: 20px; }
.category-header h1 { font-size: 28px; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }
.category-desc { font-size: 15px; color: var(--gray-500); line-height: 1.6; }

/* ==========================================
   ADDRESS LIST
   ========================================== */
.address-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.address-card-full {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition);
}
.address-card-full.default { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.address-card-full p { font-size: 14px; color: var(--gray-600); margin: 4px 0; }
.address-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.address-header strong { font-size: 16px; color: var(--gray-900); }
.address-actions { display: flex; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-100); }

/* modal/address 768px — ana blokta mevcut */

/* ==========================================
   CHECKOUT
   ========================================== */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; }
.checkout-main { min-width: 0; }
.checkout-section { background: var(--white); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; border: 1px solid var(--gray-200); }
.checkout-section h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 16px; }
.checkout-summary { background: var(--white); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--gray-200); height: fit-content; position: sticky; top: 100px; }
.checkout-summary h3 { margin-bottom: 16px; font-size: 18px; font-weight: 700; }
.checkout-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.checkout-item { display: flex; align-items: center; gap: 12px; }
.checkout-item img { width: 56px; height: 56px; border-radius: var(--radius); object-fit: cover; border: 1px solid var(--gray-100); }
.checkout-item-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.checkout-item-info .item-name { font-size: 13px; color: var(--gray-700); }
.checkout-item-info .item-qty { font-size: 12px; color: var(--gray-500); }
.checkout-item .item-price { font-weight: 600; font-size: 14px; white-space: nowrap; }
.checkout-secure { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 12px; color: var(--gray-500); justify-content: center; }
.checkout-secure .material-icons-outlined { font-size: 16px; color: var(--success); }

/* Checkout Payment Info */
.checkout-payment-info {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fffe 0%, #f0faf7 100%);
    border: 1.5px solid rgba(26,188,156,0.15);
    border-radius: 12px;
}
.checkout-card-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(26,188,156,0.1);
}
.card-brand-icon {
    height: 32px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.card-brand-icon.iyzico-brand {
    height: 28px;
}
.card-brand-icon:hover { opacity: 1; }
.payment-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.payment-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-100);
}
.payment-badge .material-icons-outlined {
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}
.payment-badge strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.3;
}
.payment-badge span {
    font-size: 10px;
    color: var(--gray-500);
    line-height: 1.3;
}

/* Terms Modal */
.checkout-terms-list { margin-bottom: 12px; }
.checkout-terms-list .terms-check { display: flex; align-items: flex-start; }
.terms-modal-link { color: var(--primary); font-weight: 600; text-decoration: underline; cursor: pointer; }
.terms-modal-link:hover { color: var(--secondary); }
.terms-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.55); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.terms-modal { background: var(--white); border-radius: var(--radius-lg); max-width: 640px; width: 100%; max-height: 80vh; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.terms-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--gray-200); }
.terms-modal-header h4 { margin: 0; font-size: 16px; font-weight: 700; color: var(--gray-800); }
.terms-modal-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--gray-500); padding: 0 4px; line-height: 1; }
.terms-modal-close:hover { color: var(--gray-800); }
.terms-modal-body { padding: 20px; overflow-y: auto; font-size: 13px; line-height: 1.7; color: var(--gray-700); }
.terms-modal-body h1, .terms-modal-body h2, .terms-modal-body h3 { font-size: 15px; margin: 12px 0 8px; color: var(--gray-800); }
.terms-modal-body p { margin-bottom: 10px; }

/* Card Form */
.card-form { display: flex; flex-direction: column; gap: 16px; }
.card-form .form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--gray-700); }
.card-form .form-control { width: 100%; padding: 10px 14px; border: 1px solid var(--gray-300); border-radius: var(--radius); font-size: 14px; transition: var(--transition); }
.card-form .form-control:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(10,26,47,0.08); }
.card-row { display: grid; grid-template-columns: 1fr 1fr 100px; gap: 12px; }
@media (max-width: 480px) { .card-row { grid-template-columns: 1fr 1fr; } .card-row .form-group:last-child { grid-column: span 2; } }

@media (max-width: 768px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
}

/* ==========================================
   ADDRESS GRID & CARD
   ========================================== */
.address-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.address-card { position: relative; border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 16px; cursor: pointer; transition: var(--transition); }
.address-card.selected, .address-card:has(input:checked) { border-color: var(--primary); background: rgba(10,26,47,0.03); }
.address-card input[type="radio"] { position: absolute; opacity: 0; }
.address-card-inner strong { display: block; margin-bottom: 6px; font-size: 14px; }
.address-card-inner p { font-size: 13px; color: var(--gray-600); margin: 2px 0; }
.address-card-mini { padding: 12px; border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 10px; }
.address-card-mini strong { display: block; margin-bottom: 4px; }
.address-card-mini p { font-size: 13px; color: var(--gray-600); margin: 2px 0; }

/* ==========================================
   RESULT / SUCCESS / FAILURE PAGES
   ========================================== */
.result-page { text-align: center; padding: 60px 20px; max-width: 500px; margin: 0 auto; }
.result-icon { font-size: 80px; display: block; margin-bottom: 16px; }
.result-icon.success { color: var(--success); }
.result-icon.error { color: var(--danger); }
.result-msg { color: var(--gray-600); margin: 12px 0 24px; font-size: 15px; }
.result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.success-page { }
.failure-page { }
.order-summary-card { background: var(--gray-50); border-radius: var(--radius-lg); padding: 20px; margin: 24px auto; max-width: 380px; text-align: left; }
.order-summary-card .summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }

/* ==========================================
   ERROR PAGE
   ========================================== */
.error-page { text-align: center; padding: 80px 20px; }
.error-icon { font-size: 80px; color: var(--gray-300); display: block; margin-bottom: 16px; }
.error-code { font-size: 72px; font-weight: 800; color: var(--gray-200); margin-bottom: 8px; }

/* ==========================================
   CART COMPONENTS
   ========================================== */
.cart-items { flex: 1; min-width: 0; }
.cart-row { transition: background 0.2s; }
.cart-row:hover { background: var(--gray-50); }
.cart-product { min-width: 200px; }
.cart-qty { white-space: nowrap; }
.cart-remove { text-align: center; }

/* ==========================================
   DASHBOARD GRID
   ========================================== */
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }

/* ==========================================
   TRACKING CARD
   ========================================== */
.tracking-card { display: flex; align-items: center; gap: 16px; background: var(--gray-50); border-radius: var(--radius-lg); padding: 16px 20px; margin-bottom: 24px; }
.tracking-card .material-icons-outlined { font-size: 32px; color: var(--primary); }
.tracking-card div { line-height: 1.6; }
.tracking-card span { display: block; font-size: 13px; color: var(--gray-600); }

/* ==========================================
   DETAIL CARD
   ========================================== */
.detail-card { background: var(--white); border-radius: var(--radius-lg); padding: 20px; border: 1px solid var(--gray-200); }
.detail-card h4 { margin-bottom: 12px; font-size: 15px; font-weight: 600; color: var(--gray-900); }

/* ==========================================
   FORM CARD / FORM HELPERS
   ========================================== */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--gray-200); max-width: 600px; }
.form-help { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

/* ==========================================
   BRAND BAR (Araç Markaları Şeridi)
   ========================================== */
.brand-bar {
    background: var(--primary);
    padding: 0;
    border-bottom: 1px solid rgba(26,188,156,0.1);
    position: relative;
    z-index: 900;
}
.brand-bar .container {
    overflow: visible;
}
.brand-bar-inner {
    display: flex;
    align-items: stretch;
}
.brand-bar-list {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.brand-bar-list::-webkit-scrollbar { display: none; }
.brand-pill-wrap {
    position: relative;
    flex-shrink: 0;
}
.brand-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.brand-pill:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}
.brand-pill::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent);
    transition: transform 0.2s ease;
}
.brand-pill:hover::after {
    transform: translateX(-50%) scaleX(1);
}
.brand-pill-wrap.active .brand-pill {
    color: var(--white);
    background: rgba(255,255,255,0.10);
}
.brand-pill-wrap.active .brand-pill::after {
    transform: translateX(-50%) scaleX(1);
}

/* More Button */
.brand-more-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    background: none;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}
.brand-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    width: 30px;
    background: linear-gradient(to right, transparent, var(--primary));
    pointer-events: none;
}
.brand-more-btn:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}
.brand-more-btn .material-icons-outlined {
    font-size: 22px;
}
.brand-more-btn.active {
    color: var(--accent);
    background: rgba(255,255,255,0.1);
}

/* =============================================
   BRAND MEGA DROPDOWN — Full-Width Image Grid
   ============================================= */
.brand-mega {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fafafa;
    border-top: 2px solid var(--teal);
    box-shadow: 0 25px 60px rgba(10,26,47,0.15), 0 8px 20px rgba(10,26,47,0.06);
    z-index: 100;
    padding: 20px 0 24px;
    animation: megaSlideIn 0.2s ease;
}
@keyframes megaSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.brand-mega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
    gap: 6px;
}
.mega-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 4px 8px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1.5px solid transparent;
}
.mega-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.mega-card-img {
    width: 100px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.mega-card:hover .mega-card-img {
    border-color: var(--primary);
}
.mega-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.mega-card:hover .mega-card-img img {
    transform: scale(1.08);
}
.mega-card-img .material-icons-outlined {
    font-size: 30px;
    color: var(--gray-300);
}
.mega-card-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
    text-align: center;
    line-height: 1.25;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}
.mega-card:hover .mega-card-label {
    color: var(--primary);
}
/* Scrollbar mega */
.brand-mega .container { max-height: 420px; overflow-y: auto; }
.brand-mega .container::-webkit-scrollbar { width: 5px; }
.brand-mega .container::-webkit-scrollbar-track { background: transparent; }
.brand-mega .container::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }
.brand-mega .container::-webkit-scrollbar-thumb:hover { background: var(--gray-300); }

/* =============================================
   ALL BRANDS DROPDOWN PANEL
   ============================================= */
.brand-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 950;
}
.brand-dropdown.active {
    display: block;
}
.brand-dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.35);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: -1;
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.brand-dropdown-panel {
    background: var(--white);
    border-top: 3px solid var(--accent);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.08);
    max-height: 70vh;
    overflow-y: auto;
    animation: dropdownSlideIn 0.25s cubic-bezier(0.32, 0.72, 0, 1);
}
@keyframes dropdownSlideIn {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}
.brand-dropdown-panel::-webkit-scrollbar { width: 5px; }
.brand-dropdown-panel::-webkit-scrollbar-track { background: transparent; }
.brand-dropdown-panel::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }
.brand-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 14px;
    border-bottom: 1px solid var(--gray-100);
}
.brand-dropdown-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
}
.brand-dropdown-title .material-icons-outlined {
    font-size: 22px;
    color: var(--primary);
}
.brand-dropdown-count {
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    padding: 2px 9px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.brand-dropdown-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s ease;
}
.brand-dropdown-close:hover {
    background: var(--gray-200);
    color: var(--secondary);
    transform: rotate(90deg);
}
.brand-dropdown-close .material-icons-outlined { font-size: 20px; }
.brand-dropdown-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    margin: 14px 0;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    transition: border-color 0.2s ease;
}
.brand-dropdown-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.brand-dropdown-search .material-icons-outlined {
    font-size: 20px;
    color: var(--gray-400);
}
.brand-dropdown-search input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
    color: var(--secondary);
    font-family: inherit;
}
.brand-dropdown-search input::placeholder {
    color: var(--gray-400);
}
.brand-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    padding: 8px 0 16px;
}
.brand-dropdown-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.15s ease;
    letter-spacing: 0.2px;
}
.brand-dropdown-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(2px);
}
.brand-dropdown-item .material-icons-outlined {
    font-size: 16px;
    opacity: 0.4;
    transition: opacity 0.15s ease;
}
.brand-dropdown-item:hover .material-icons-outlined {
    opacity: 1;
}
.brand-dropdown-item.hidden {
    display: none;
}
.brand-dropdown-footer {
    padding: 14px 0 18px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: center;
}
.brand-dropdown-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(99,102,241,0.25);
}
.brand-dropdown-all-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99,102,241,0.35);
}
.brand-dropdown-all-btn .material-icons-outlined { font-size: 20px; }
.brand-dropdown-empty {
    display: none;
    text-align: center;
    padding: 32px 0;
    color: var(--gray-400);
    font-size: 14px;
}
.brand-dropdown-empty.visible {
    display: block;
}
.brand-dropdown-empty .material-icons-outlined {
    font-size: 40px;
    display: block;
    margin: 0 auto 8px;
    opacity: 0.5;
}

/* ==========================================
   VEHICLE SHOWCASE — Scrollable Strip
   ========================================== */
.vehicle-showcase {
    position: relative;
    padding: 36px 0 28px;
    overflow: hidden;
}
.vehicle-showcase-bg {
    position: absolute;
    inset: 0;
    background: var(--secondary);
    z-index: 0;
}

/* Header */
.vs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.vs-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.vs-icon {
    font-size: 28px;
    color: var(--accent);
    background: rgba(245,158,11,0.12);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.vs-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.vs-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 2px 0 0;
}
.vs-arrows {
    display: flex;
    gap: 6px;
}
.vs-arr {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.vs-arr:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.vs-arr .material-icons-outlined { font-size: 20px; }

/* Scroll Area */
.vs-scroll-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.vs-scroll-area::before,
.vs-scroll-area::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 2;
    pointer-events: none;
}
.vs-scroll-area::before {
    left: 0;
    background: linear-gradient(to right, #111032, transparent);
}
.vs-scroll-area::after {
    right: 0;
    background: linear-gradient(to left, #1a2236, transparent);
}

.vs-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 20px 8px;
    cursor: grab;
}
.vs-track::-webkit-scrollbar { display: none; }
.vs-track:active { cursor: grabbing; }

/* Cards */
.vcard {
    flex: 0 0 144px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}
.vcard:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(99,102,241,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10,26,47,0.15);
}
.vcard-img {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}
.vcard-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.25));
    transition: transform 0.25s ease;
}
.vcard:hover .vcard-img img { transform: scale(1.05); }
.vcard-info {
    padding: 4px 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.vcard-brand {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.vcard-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vcard:hover .vcard-name { color: #fff; }

/* Vehicle showcase mobile — handled by main 768px block */

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-float .whatsapp-icon {
    width: 28px;
    height: 28px;
}
.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--gray-900);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-left: 6px solid var(--gray-900);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
}

/* ==========================================
   STATIC PAGES (About, Contact, FAQ, Policy)
   ========================================== */
.page-content {
    padding: 40px 0;
}
.page-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
}
.cms-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 24px 0 12px;
}
.cms-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 20px 0 10px;
}
.cms-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 16px 0 8px;
}
.cms-content p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 12px;
}
.cms-content ul, .cms-content ol {
    color: var(--gray-700);
    padding-left: 24px;
    margin-bottom: 16px;
}
.cms-content li {
    margin-bottom: 6px;
    line-height: 1.6;
}

/* Contact Page - v3 */
.contact-page-wrapper { padding-bottom: 60px; }
.contact-hero-section {
    background: linear-gradient(135deg, #0a1a2f 0%, #1a3a5c 50%, #0d2b4a 100%);
    padding: 40px 0 48px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.contact-hero-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(26,188,156,0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(52,152,219,0.1) 0%, transparent 40%);
    pointer-events: none;
}
.contact-hero-section .breadcrumb a,
.contact-hero-section .breadcrumb span { color: rgba(255,255,255,0.7); }
.contact-hero-section .breadcrumb a:hover { color: #fff; }
.contact-hero-content { text-align: center; position: relative; z-index: 1; }
.contact-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(26,188,156,0.15); border: 1px solid rgba(26,188,156,0.25);
    color: #1abc9c; font-size: 13px; font-weight: 600;
    padding: 6px 16px; border-radius: 20px; margin-bottom: 14px;
}
.contact-badge .material-icons-outlined { font-size: 16px; }
.contact-hero-content h1 {
    font-size: 32px; font-weight: 800; color: #fff;
    letter-spacing: -0.5px; margin-bottom: 10px;
}
.contact-hero-content p {
    font-size: 15px; color: rgba(255,255,255,0.7);
    max-width: 480px; margin: 0 auto; line-height: 1.6;
}

/* Contact Cards Grid — 4 cols desktop, 2 cols tablet, 1 col mobile */
.contact-cards-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 14px; margin-bottom: 28px;
}
.contact-card-v2 {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    background: #fff; border: 1.5px solid #f1f5f9;
    border-radius: 16px; padding: 24px 16px 20px;
    text-decoration: none; color: inherit;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}
a.contact-card-v2:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(10,26,47,0.1);
    transform: translateY(-3px);
}
a.contact-card-v2.whatsapp-card:hover {
    border-color: #25d366;
    box-shadow: 0 8px 32px rgba(37,211,102,0.15);
}
.contact-card-v2-icon {
    width: 52px; height: 52px; min-width: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.contact-card-v2-icon.phone-icon {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #2563eb;
}
.contact-card-v2-icon.whatsapp-icon {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #16a34a;
}
.contact-card-v2-icon.email-icon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}
.contact-card-v2-icon.location-icon {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #db2777;
}
.contact-card-v2-icon .material-icons-outlined { font-size: 24px; }
.contact-card-v2-body { flex: 1; min-width: 0; }
.contact-card-v2-body h3 {
    font-size: 11px; font-weight: 700; color: #94a3b8;
    text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px;
}
.contact-card-v2-value {
    font-size: 14px; font-weight: 700; color: #0f172a;
    margin-bottom: 2px; word-break: break-word;
}
.contact-card-v2-note {
    font-size: 12px; color: #94a3b8;
}
.contact-card-v2-arrow {
    font-size: 18px; color: #cbd5e1;
    transition: all 0.3s;
    position: absolute; top: 12px; right: 12px;
}
a.contact-card-v2:hover .contact-card-v2-arrow {
    color: var(--primary); transform: translateX(2px);
}
a.contact-card-v2.whatsapp-card:hover .contact-card-v2-arrow { color: #25d366; }

/* Map + Info Grid */
.contact-map-info-grid {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px;
}
.contact-map-card {
    background: #fff; border: 1.5px solid #f1f5f9;
    border-radius: 16px; overflow: hidden;
    display: flex; flex-direction: column;
}
.contact-map-embed {
    flex: 1; min-height: 320px;
}
.contact-map-embed iframe {
    width: 100%; height: 100%; display: block;
}
.contact-map-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-top: 1px solid #f1f5f9;
    gap: 12px;
}
.contact-map-footer-info {
    display: flex; align-items: center; gap: 10px;
}
.contact-map-footer-info .material-icons-outlined {
    font-size: 22px; color: var(--primary);
}
.contact-map-footer-info strong {
    font-size: 14px; color: #0f172a; display: block;
}
.contact-map-footer-info span {
    font-size: 12px; color: #94a3b8;
}
.contact-map-dir-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px; border-radius: 10px;
    background: var(--primary); color: #fff;
    text-decoration: none; font-size: 13px; font-weight: 600;
    transition: all 0.2s; white-space: nowrap;
}
.contact-map-dir-btn:hover {
    background: #15967a; transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26,188,156,0.3);
}
.contact-map-dir-btn .material-icons-outlined { font-size: 18px; }

/* Side Info (hours + support) */
.contact-side-info {
    display: flex; flex-direction: column; gap: 16px;
}
.contact-info-card-v2 {
    background: #fff; border: 1.5px solid #f1f5f9;
    border-radius: 16px; padding: 24px;
    flex: 1;
}
.contact-info-card-v2-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 18px; padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}
.contact-info-card-v2-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-light), rgba(26,188,156,0.08));
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
}
.contact-info-card-v2-icon .material-icons-outlined { font-size: 18px; }
.contact-info-card-v2-header h3 {
    font-size: 16px; font-weight: 700; color: #0f172a;
}
.contact-hours-v2 { display: flex; flex-direction: column; gap: 0; }
.hours-row-v2 {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid #f8fafc;
}
.hours-row-v2:last-child { border-bottom: none; }
.hours-day { font-size: 13px; color: #475569; font-weight: 500; }
.hours-time {
    font-size: 13px; font-weight: 600; padding: 3px 10px;
    border-radius: 6px;
}
.hours-time.open { background: #f0fdf4; color: #16a34a; }
.hours-time.closed { background: #fef2f2; color: #ef4444; }
.contact-info-desc {
    font-size: 13px; color: #64748b; line-height: 1.6; margin-bottom: 14px;
}
.contact-support-btns { display: flex; flex-direction: column; gap: 8px; }
.contact-support-btn-v2 {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 14px; background: #f8fafc;
    border: 1px solid #f1f5f9; border-radius: 10px;
    color: #334155; text-decoration: none;
    font-size: 13px; font-weight: 600;
    transition: all 0.2s;
}
.contact-support-btn-v2:hover {
    background: var(--primary-light); color: var(--primary);
    border-color: rgba(26,188,156,0.2);
}
.contact-support-btn-v2 .material-icons-outlined { font-size: 18px; color: var(--primary); }

/* Responsive */
@media (max-width: 992px) {
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-map-info-grid { grid-template-columns: 1fr; }
    .contact-map-embed { min-height: 280px; }
}
@media (max-width: 768px) {
    .contact-hero-section { padding: 28px 0 36px; margin-bottom: 20px; }
    .contact-hero-content h1 { font-size: 24px; }
    .contact-hero-content p { font-size: 14px; }
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .contact-card-v2 { padding: 16px 12px 14px; }
    .contact-card-v2-icon { width: 44px; height: 44px; min-width: 44px; }
    .contact-card-v2-icon .material-icons-outlined { font-size: 20px; }
    .contact-card-v2-value { font-size: 13px; }
}
@media (max-width: 480px) {
    .contact-hero-section { padding: 20px 0 28px; }
    .contact-hero-content h1 { font-size: 22px; }
    .contact-cards-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .contact-card-v2 { padding: 14px 10px 12px; border-radius: 12px; }
    .contact-card-v2-body h3 { font-size: 10px; }
    .contact-card-v2-value { font-size: 12px; }
    .contact-card-v2-note { font-size: 11px; }
    .contact-map-embed { min-height: 240px; }
    .contact-map-footer { flex-direction: column; text-align: center; }
    .contact-info-card-v2 { padding: 18px; }
}

/* About Page */
.about-hero {
    text-align: center;
    padding: 32px 0;
    margin-bottom: 24px;
}
.about-hero h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
}
.about-hero .lead {
    font-size: 16px;
    color: var(--gray-600);
    margin-top: 8px;
}
.about-section {
    margin-bottom: 32px;
}
.about-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.service-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}
.service-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.service-item .material-icons-outlined {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}
.service-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}
.service-item p {
    font-size: 13px;
    color: var(--gray-600);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.why-item {
    text-align: center;
    padding: 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
}
.why-item strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
}
.why-item span {
    font-size: 13px;
    opacity: 0.9;
}
.about-contact {
    list-style: none;
    padding: 0;
}
.about-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}
.about-contact .material-icons-outlined {
    color: var(--primary);
    font-size: 20px;
}

/* FAQ Page */
.faq-page h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 12px;
}
.faq-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.faq-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Policy Pages */
.policy-page h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gray-900);
}
.policy-page h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 24px 0 10px;
}
.policy-page p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 12px;
}
.policy-page ul, .policy-page ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.policy-page li {
    margin-bottom: 6px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Responsive → ana bloklara taşındı */
.form-control-sm { padding: 7px 10px; font-size: 13px; }

/* ==========================================
   NAV LOGOUT
   ========================================== */
.nav-logout-link { color: var(--danger) !important; margin-top: 8px; border-top: 1px solid var(--gray-100); padding-top: 12px !important; }
.nav-logout-link:hover { background: rgba(239,68,68,0.05) !important; }

/* ==========================================
   STAT CARDS (dashboard small)
   ========================================== */
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-label { font-size: 13px; color: var(--gray-500); }
.stat-value { font-size: 24px; font-weight: 700; color: var(--gray-900); }

/* ==========================================
   PRODUCTS MAIN (product listing area)
   ========================================== */
.products-main { flex: 1; min-width: 0; }

/* ==========================================
/* ==========================================
   SEARCH PAGE
   ========================================== */
.search-header { margin-bottom: 16px; }
.search-count { color: var(--gray-500); font-size: 14px; }

/* ==========================================
   MISCELLANEOUS UTILITIES
   ========================================== */
.text-primary { color: var(--primary); }
.gap-3 { gap: 16px; }
.jc-between { justify-content: space-between; }
.pagination-info { display: flex; align-items: center; font-size: 14px; color: var(--gray-600); padding: 0 8px; }
.page-subtitle { font-size: 14px; color: var(--gray-500); font-weight: 400; }
.btn-warning { background: #f59e0b; color: #fff; border: none; }
.btn-warning:hover { background: #d97706; }
.stars-small { font-size: 12px; }
.cms-content { line-height: 1.8; font-size: 15px; }
.cms-content h2, .cms-content h3 { margin: 24px 0 12px; }
.cms-content p { margin-bottom: 16px; }
.coupon-form { display: flex; gap: 8px; margin: 16px 0; }
.coupon-form input { flex: 1; }
.quantity-selector.compact { display: flex; align-items: center; }
.quantity-selector.compact button { width: 32px; height: 32px; border: 1px solid var(--gray-200); background: var(--gray-50); border-radius: var(--radius); cursor: pointer; font-size: 16px; }
.quantity-selector.compact input { width: 44px; text-align: center; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 4px; margin: 0 4px; }
.order-product-cell { display: flex; align-items: center; gap: 10px; }
.order-product-cell img { width: 50px; height: 50px; object-fit: cover; border-radius: var(--radius); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); text-align: left; font-size: 14px; }
.data-table th { font-weight: 600; color: var(--gray-600); font-size: 13px; background: var(--gray-50); }
.table-responsive { overflow-x: auto; }
.product-section { margin-top: 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.section-header h2 { font-size: 20px; font-weight: 700; }
.page-content { padding: 32px 0; }

/* ===== Araç Markası Grid ===== */
.brand-showcase { padding: 48px 0; background: #f8f9fa; }
.brand-showcase .section-header { flex-direction: column; text-align: center; gap: 8px; }
.brand-showcase .section-header h2 { display: flex; align-items: center; gap: 8px; justify-content: center; }
.section-subtitle { color: #666; font-size: 15px; margin: 0; }
.brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 24px; }
.brand-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px 12px; background: #fff; border-radius: 12px; border: 2px solid #eee; text-decoration: none; color: #333; transition: all 0.25s ease; }
.brand-card:hover { border-color: var(--primary, #2563eb); box-shadow: 0 8px 24px rgba(37,99,235,0.12); transform: translateY(-4px); }
.brand-logo { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.brand-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-text { font-size: 14px; font-weight: 700; color: #333; text-align: center; }
.brand-name { font-size: 14px; font-weight: 600; color: #333; text-align: center; }
.brand-card:hover .brand-name { color: var(--primary, #2563eb); }

@media (max-width: 992px) { .brand-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } .brand-logo { width: 60px; height: 60px; } }
@media (max-width: 480px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }

/* FA icon in category cards */
.category-fa-icon { font-size: 36px; color: var(--primary, #2563eb); margin-bottom: 8px; }

/* Brand Header on Category Page */
.brand-header-card { display: flex; align-items: center; gap: 20px; padding: 20px; background: #f8f9fa; border-radius: 12px; margin-bottom: 16px; }
.brand-header-logo { width: 80px; height: 80px; object-fit: contain; }
.brand-header-card h1 { margin: 0 0 4px; font-size: 24px; }
.brand-header-card .category-desc { margin: 0; color: #666; }

/* Badge info style */
.badge-info { background: #17a2b8; color: #fff; }
.badge-light { background: #e9ecef; color: #333; }

/* ==========================================
   MOBİL UYUMLULUK İYİLEŞTİRMELERİ
   ========================================== */

/* Yatay taşma önleme */
html, body { overflow-x: hidden; }

/* Tablo responsive wrapper */
.table-responsive { overflow-x: auto; }

/* Mobil uyumluluk → ana bloklara taşındı */

/* ==========================================
   TASARIM GÜÇLENDİRME v3.0 — Premium Effects
   ========================================== */

/* --- Enhanced Product Cards v4 --- */
.product-card {
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: opacity 0.4s ease;
    background: rgba(10,26,47,0.03);
    pointer-events: none;
    z-index: 0;
}
.product-card:hover::before { opacity: 1; }

/* Quick view badge on hover */
.product-image::after {
    content: 'Hızlı Bakış';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: rgba(15,23,42,0.8);
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.product-card:hover .product-image::after {
    transform: translateY(0);
}

/* Enhanced badges */
.product-badge {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.badge-sale {
    background: #ef4444;
    animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 2px 8px rgba(239,68,68,0.3); }
    50% { box-shadow: 0 2px 16px rgba(239,68,68,0.5); }
}

/* --- Enhanced Section Headers --- */
.product-section .section-header {
    padding-bottom: 8px;
}

/* --- Enhanced Trust Badges --- */
.trust-badges {
    background: #f0fdf4;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid #bbf7d0;
}
.trust-item {
    flex: 1;
    min-width: 120px;
    flex-direction: column;
    text-align: center;
    gap: 6px;
}
.trust-item .material-icons-outlined {
    font-size: 28px;
    background: #22c55e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Enhanced Advantages (gradient already in base) --- */

/* --- Enhanced Newsletter button --- */
.newsletter-form button {
    background: var(--accent) !important;
    color: var(--secondary) !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
}
.newsletter-form button:hover {
    background: #d97706 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

/* --- Enhanced Product Detail --- */
.pd-gallery-main {
    background: var(--gray-50);
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.04);
}

/* --- Enhanced Tabs --- */
.pd-tab-btn.active {
    position: relative;
}
.pd-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* --- Enhanced Breadcrumb --- */
.breadcrumb {
    background: linear-gradient(90deg, rgba(248,250,252,0.6), transparent);
    margin: 16px 0;
}

/* --- Smooth scroll --- */
html { scroll-behavior: smooth; }

/* --- Page load animation --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-card { animation: fadeInUp 0.5s ease forwards; }
.product-card:nth-child(2) { animation-delay: 0.05s; }
.product-card:nth-child(3) { animation-delay: 0.1s; }
.product-card:nth-child(4) { animation-delay: 0.15s; }
.product-card:nth-child(5) { animation-delay: 0.2s; }
.product-card:nth-child(6) { animation-delay: 0.25s; }
.product-card:nth-child(7) { animation-delay: 0.3s; }
.product-card:nth-child(8) { animation-delay: 0.35s; }

/* --- Category Card Enhancement --- */
.category-card {
    position: relative;
    overflow: hidden;
}
.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.category-card:hover::after {
    transform: scaleX(1);
}

/* --- Stock Badge Pulse --- */
.stock-badge.in-stock::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* --- WhatsApp Button Enhancement --- */
.whatsapp-float {
    box-shadow: 0 4px 24px rgba(37,211,102,0.4) !important;
    animation: whatsapp-bounce 3s infinite;
}
@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* --- Review Stars Glow --- */
.star.filled {
    text-shadow: 0 0 8px rgba(245,158,11,0.4);
}

/* --- Price Old Styling --- */
.price-old, .price-old-detail {
    position: relative;
}
.price-old::after, .price-old-detail::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 2px;
    background: var(--danger);
    border-radius: 1px;
}

/* --- Mobile Enhancements → ana blokta mevcut --- */

/* ==========================================
   ADMIN PRODUCT FORM v3 — Compact & Polished
   ========================================== */

.product-form-page .page-header {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px; margin-bottom: 20px;
}
.page-header-left { display: flex; align-items: center; gap: 12px; }
.btn-back-icon {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--gray-100); color: var(--gray-600); text-decoration: none;
    transition: var(--transition);
}
.btn-back-icon:hover { background: var(--gray-200); color: var(--gray-900); }
.btn-back-icon .material-icons-outlined { font-size: 20px; }
.page-header-actions { display: flex; gap: 8px; align-items: center; }
.page-header-actions .btn .material-icons-outlined { font-size: 16px; vertical-align: middle; margin-right: 4px; }

/* Layout */
.pf-layout {
    display: grid; grid-template-columns: 1fr 340px;
    gap: 20px; align-items: start;
}

/* Cards */
.pf-card {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: 10px; margin-bottom: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    transition: box-shadow 0.2s;
}
.pf-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.pf-card-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; cursor: pointer; -webkit-user-select: none; user-select: none;
    border-bottom: 1px solid var(--gray-50);
}
.pf-card-title { display: flex; align-items: center; gap: 8px; }
.pf-card-title .material-icons-outlined { font-size: 18px; color: var(--primary); }
.pf-card-title h3 { font-size: 13.5px; font-weight: 700; margin: 0; color: var(--gray-800); }
.pf-chevron { font-size: 18px; color: var(--gray-400); transition: transform 0.25s ease; }
.pf-card.collapsed .pf-chevron { transform: rotate(-90deg); }
.pf-card.collapsed .pf-card-body { display: none; }
.pf-card-body { padding: 16px; }

/* Status card */
.pf-card-status { border-left: 3px solid var(--primary); }
.pf-card-status .pf-card-body { padding: 12px 16px; }

/* Toggle switch */
.pf-toggle-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.pf-toggle-row div strong { display: block; font-size: 13px; color: var(--gray-800); }
.pf-toggle-row div small { font-size: 11px; color: var(--gray-500); }
.pf-toggle {
    position: relative; display: inline-block;
    width: 40px; height: 22px; flex-shrink: 0;
}
.pf-toggle input { opacity: 0; width: 0; height: 0; }
.pf-toggle-slider {
    position: absolute; cursor: pointer; inset: 0;
    background: var(--gray-300); border-radius: 22px;
    transition: 0.3s;
}
.pf-toggle-slider::before {
    content: ''; position: absolute;
    height: 16px; width: 16px; left: 3px; bottom: 3px;
    background: var(--white); border-radius: 50%;
    transition: 0.3s;
}
.pf-toggle input:checked + .pf-toggle-slider { background: var(--primary); }
.pf-toggle input:checked + .pf-toggle-slider::before { transform: translateX(18px); }

/* ===== IMAGE GRID — Compact Thumbnails ===== */
.pf-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 130px));
    gap: 12px;
    padding: 4px;
}
.pf-image-item {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--gray-100);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: default;
}
.pf-image-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(10,26,47,0.14);
    transform: translateY(-2px);
}
.pf-image-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    background: #fff;
}
.pf-image-primary {
    position: absolute; bottom: 4px; left: 4px;
    font-size: 9px; font-weight: 700; text-transform: uppercase;
    background: var(--primary); color: #fff; padding: 2px 6px;
    border-radius: 4px; letter-spacing: 0.3px;
}
.pf-image-remove {
    position: absolute; top: 4px; right: 4px;
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(239,68,68,0.9); color: #fff; border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; transition: opacity 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.pf-image-remove .material-icons-outlined { font-size: 14px; }
.pf-image-item:hover .pf-image-remove { opacity: 1; }
.pf-image-upload {
    width: 130px;
    height: 130px;
    border: 2px dashed var(--gray-200);
    border-radius: 10px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 4px;
    cursor: pointer; color: var(--gray-400);
    transition: var(--transition);
    font-size: 11px; font-weight: 600;
}
.pf-image-upload:hover {
    border-color: var(--primary); color: var(--primary);
    background: rgba(10,26,47,0.03);
}
.pf-image-upload .material-icons-outlined { font-size: 28px; }

/* Notice */
.pf-notice {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; background: #eff6ff; border-radius: 8px;
    font-size: 12px; color: #1e40af;
}
.pf-notice .material-icons-outlined { font-size: 16px; }

/* Price indicator */
.pf-price-indicator {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600; color: #dc2626;
    background: #fef2f2; padding: 5px 12px; border-radius: 50px;
    margin-bottom: 12px;
}
.pf-price-indicator .material-icons-outlined { font-size: 14px; }

/* Input icon wrapper */
.input-icon-wrapper { position: relative; }
.input-icon {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    font-size: 13px; font-weight: 700; color: var(--gray-400);
}
.input-with-icon { padding-left: 30px !important; }

/* Form control large */
.form-control-lg { font-size: 15px !important; padding: 10px 14px !important; font-weight: 600; }

/* Hint & counter */
.form-hint { display: block; font-size: 11px; color: var(--gray-400); margin-top: 3px; }
.form-counter { float: right; font-size: 11px; color: var(--gray-500); font-weight: 400; }
.text-warning { color: #f59e0b !important; }
.required { color: #ef4444; }

/* SERP Preview */
.pf-serp-preview {
    background: #f8f9fa; border: 1px solid var(--gray-200);
    border-radius: 8px; padding: 14px; margin-bottom: 12px;
}
.pf-serp-label { font-size: 10px; color: #70757a; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.pf-serp-title { font-size: 15px; color: #1a0dab; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pf-serp-url { font-size: 12px; color: #006621; margin: 2px 0; }
.pf-serp-desc {
    font-size: 12px; color: #545454; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* SEO Score */
.pf-seo-score {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 8px; margin-bottom: 12px;
    font-weight: 600; font-size: 12px;
}
.pf-seo-score.seo-good { background: #dcfce7; color: #166534; }
.pf-seo-score.seo-warn { background: #fef3c7; color: #92400e; }
.pf-seo-score.seo-bad { background: #fee2e2; color: #991b1b; }

/* Progress bars */
.pf-progress-bar { height: 3px; margin-top: 3px; border-radius: 2px; background: var(--gray-200); }
.pf-progress-fill { height: 100%; border-radius: 2px; width: 0; transition: all 0.3s; background: #22c55e; }

/* Responsive */
@media (max-width: 992px) {
    .pf-layout { grid-template-columns: 1fr; }
    .pf-sidebar { order: -1; }
}
@media (max-width: 768px) {
    .product-form-page .page-header { flex-direction: column; align-items: stretch; gap: 10px; }
    .page-header-left { gap: 8px; }
    .page-header-left h1 { font-size: 18px; }
    .page-subtitle { font-size: 12px; }
    .page-header-actions { justify-content: flex-end; }
    .pf-image-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
    .pf-card-body { padding: 12px; }
    .pf-card-header { padding: 10px 12px; }
    .form-row-3col { grid-template-columns: 1fr !important; }
    .form-row-2col { grid-template-columns: 1fr !important; }
}

