/*
Theme Name:  OtoPart
Theme URI:   https://yoursite.com
Description: Hızlı, modern WooCommerce oto parça teması. Araç uyumluluk filtresi, AJAX sepet, mega menü.
Author:      Sizin Adınız
Version:     1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License:     GNU General Public License v2 or later
Text Domain: otopart
Tags:        woocommerce, e-commerce, auto-parts, two-columns, right-sidebar
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:        #1a56db;
    --blue-dark:   #1240a8;
    --blue-light:  #e8f0fe;
    --blue-mid:    #3b72f0;
    --red:         #e53e3e;
    --orange:      #f97316;
    --green:       #16a34a;
    --text:        #1a202c;
    --text-muted:  #6b7280;
    --text-light:  #9ca3af;
    --border:      #e5e7eb;
    --border-dark: #d1d5db;
    --bg:          #f9fafb;
    --bg-white:    #ffffff;
    --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
    --shadow-md:   0 4px 12px rgba(0,0,0,.10);
    --shadow-lg:   0 8px 24px rgba(0,0,0,.12);
    --radius:      6px;
    --radius-lg:   10px;
    --container:   1280px;
    --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition:  .2s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.main-content { flex: 1; padding: 30px 0; }

.layout-with-sidebar { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }
.layout-full { max-width: 100%; }

/* ============================================================
   TOPBAR
   ============================================================ */
.site-topbar {
    background: #0f3460;
    color: #cbd5e0;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-left span, .topbar-right a { color: #cbd5e0; display: flex; align-items: center; gap: 5px; }
.topbar-right a:hover { color: #fff; }
.topbar-right svg { width: 14px; height: 14px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-main {
    padding: 14px 0;
}
.header-main .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; }
.site-logo .logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.site-logo .logo-text span { color: var(--text); }

/* Arama */
.header-search { width: 100%; position: relative; }
.header-search form { display: flex; position: relative; }
.header-search .search-cat {
    background: var(--bg);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    padding: 0 12px;
    font-size: 13px;
    color: var(--text-muted);
    min-width: 130px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 28px;
}
.header-search input[type="search"] {
    flex: 1;
    border: 1px solid var(--border);
    border-right: none;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    background: var(--bg-white);
    transition: border-color var(--transition);
}
.header-search input[type="search"]:focus { border-color: var(--blue); }
.header-search .search-btn {
    background: var(--blue);
    color: #fff;
    border: 1px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background var(--transition);
    white-space: nowrap;
}
.header-search .search-btn:hover { background: var(--blue-dark); }
.header-search .search-btn svg { width: 16px; height: 16px; }

/* Canlı arama sonuçları */
.live-search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
    max-height: 420px;
    overflow-y: auto;
}
.live-search-results.active { display: block; }
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
    cursor: pointer;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--blue-light); }
.search-result-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.search-result-info { flex: 1; min-width: 0; }
.search-result-name { font-size: 13px; font-weight: 500; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-result-price { font-size: 13px; font-weight: 700; color: var(--blue); margin-top: 2px; }
.search-result-empty { padding: 20px; text-align: center; color: var(--text-muted); font-size: 14px; }
.search-result-loading { padding: 20px; text-align: center; color: var(--text-muted); font-size: 14px; }

/* Header aksiyonlar */
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 10px;
    border-radius: var(--radius);
    color: var(--text);
    font-size: 11px;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
    position: relative;
    white-space: nowrap;
}
.header-action-btn:hover { background: var(--blue-light); color: var(--blue); }
.header-action-btn svg { width: 22px; height: 22px; }
.header-action-btn .action-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ============================================================
   NAV / MEGA MENU
   ============================================================ */
.site-nav {
    background: var(--blue);
    border-bottom: 2px solid var(--blue-dark);
}
.site-nav .container {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

/* Kategori butonu */
.nav-categories-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-dark);
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background var(--transition);
    border: none;
    position: relative;
    z-index: 200;
}
.nav-categories-btn:hover,
.nav-categories-btn.active { background: #0c2d80; }
.nav-categories-btn svg { width: 18px; height: 18px; }

/* Ana menü */
.primary-menu {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex: 1;
}
.primary-menu > li { position: relative; }
.primary-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,.92);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 18px;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
    height: 100%;
}
.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li:hover > a { background: rgba(255,255,255,.12); color: #fff; }
.primary-menu > li > a .menu-arrow { width: 14px; height: 14px; opacity: .7; transition: transform var(--transition); }
.primary-menu > li:hover > a .menu-arrow { transform: rotate(180deg); }

/* Dropdown */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.primary-menu > li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-menu .sub-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--text);
    font-size: 13.5px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), color var(--transition);
}
.primary-menu .sub-menu li:last-child a { border-bottom: none; }
.primary-menu .sub-menu li a:hover { background: var(--blue-light); color: var(--blue); }

/* MEGA MENU */
.primary-menu > li.has-mega > .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 760px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.primary-menu > li.has-mega:hover > .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--blue-light);
}
.mega-menu-col ul li a {
    display: block;
    padding: 5px 0;
    color: var(--text);
    font-size: 13.5px;
    transition: color var(--transition), padding-left var(--transition);
}
.mega-menu-col ul li a:hover { color: var(--blue); padding-left: 6px; }

/* Kategori dropdown */
.nav-categories-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 600;
    display: none;
    overflow: hidden;
}
.nav-categories-dropdown.active { display: block; }
.nav-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 13.5px;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
    cursor: pointer;
    position: relative;
}
.nav-cat-item:hover { background: var(--blue-light); color: var(--blue); }
.nav-cat-item svg { width: 14px; height: 14px; color: var(--text-muted); }
.nav-cat-item:hover svg { color: var(--blue); }

/* ============================================================
   ARAÇ UYUMLULUK FİLTRESİ
   ============================================================ */
.vehicle-finder {
    background: linear-gradient(135deg, #0f3460 0%, var(--blue) 100%);
    padding: 28px 0;
    border-bottom: 3px solid var(--blue-dark);
}
.vehicle-finder-inner { max-width: 900px; margin: 0 auto; }
.vehicle-finder-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vehicle-finder-title svg { width: 24px; height: 24px; }
.vehicle-finder-subtitle {
    color: rgba(255,255,255,.7);
    font-size: 13px;
    margin-bottom: 18px;
}
.vehicle-finder-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 10px;
    align-items: end;
}
.vehicle-select-wrap { display: flex; flex-direction: column; gap: 5px; }
.vehicle-select-wrap label {
    color: rgba(255,255,255,.85);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.vehicle-select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--radius);
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 14px;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.vehicle-select:focus { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.2); }
.vehicle-select option { background: #1a202c; color: #fff; }
.vehicle-select:disabled { opacity: .4; cursor: not-allowed; }
.vehicle-finder-btn {
    background: #fff;
    color: var(--blue);
    border: none;
    padding: 11px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
    align-self: flex-end;
}
.vehicle-finder-btn:hover { background: #e8f0fe; transform: translateY(-1px); }
.vehicle-finder-btn svg { width: 16px; height: 16px; }
.vehicle-finder-result {
    margin-top: 14px;
    padding: 10px 16px;
    background: rgba(255,255,255,.12);
    border-radius: var(--radius);
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    display: none;
}
.vehicle-finder-result.active { display: flex; }
.vehicle-finder-result span { display: flex; align-items: center; gap: 6px; }
.vehicle-finder-result .clear-vehicle {
    background: rgba(255,255,255,.15);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.25);
    transition: background var(--transition);
}
.vehicle-finder-result .clear-vehicle:hover { background: rgba(255,255,255,.25); }

/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero-section { padding: 0; }
.hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2px; }
.hero-main {
    background: linear-gradient(135deg, #0f3460, var(--blue));
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}
.hero-main::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 280px;
    height: 280px;
    border: 40px solid rgba(255,255,255,.06);
    border-radius: 50%;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,.2);
}
.hero-main h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -.5px;
}
.hero-main h1 span { color: #93c5fd; }
.hero-main p { color: rgba(255,255,255,.75); font-size: 15px; margin-bottom: 28px; max-width: 400px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
    background: #fff;
    color: var(--blue);
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); color: var(--blue); }
.btn-hero-secondary {
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    padding: 11px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    transition: border-color var(--transition), background var(--transition);
}
.btn-hero-secondary:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

.hero-side { display: flex; flex-direction: column; gap: 2px; }
.hero-side-banner {
    flex: 1;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    min-height: 160px;
    overflow: hidden;
}
.hero-side-banner:first-child { background: linear-gradient(135deg, #1a365d, #2b6cb0); }
.hero-side-banner:last-child { background: linear-gradient(135deg, #744210, #d69e2e); }
.hero-side-banner h3 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.hero-side-banner p { color: rgba(255,255,255,.75); font-size: 13px; margin-bottom: 12px; }
.hero-side-link { color: #fff; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ============================================================
   KATEGORİ KARTLARI
   ============================================================ */
.section { padding: 48px 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--blue);
    border-radius: 2px;
    display: block;
}
.section-link { color: var(--blue); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.section-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.section-link:hover svg { transform: translateX(3px); }

.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.category-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 12px 16px;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    cursor: pointer;
}
.category-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(26,86,219,.12);
    transform: translateY(-3px);
}
.category-card-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: background var(--transition);
}
.category-card:hover .category-card-icon { background: var(--blue); }
.category-card-icon svg { width: 26px; height: 26px; color: var(--blue); transition: color var(--transition); }
.category-card:hover .category-card-icon svg { color: #fff; }
.category-card h3 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.category-card span { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   ÜRÜN KARTLARI
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.products-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.products-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }

/* WooCommerce grid override */
.woocommerce ul.products:not(.eael-post-appender) { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 18px !important; margin: 0 !important; padding: 0 !important; }
.woocommerce ul.products:not(.eael-post-appender) li.product { margin: 0 !important; float: none !important; width: auto !important; }

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--border-dark);
}

.product-card-badges { position: absolute; top: 10px; left: 10px; z-index: 2; display: flex; flex-direction: column; gap: 4px; }
.badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.4;
}
.badge-sale { background: var(--red); color: #fff; }
.badge-new { background: var(--green); color: #fff; }
.badge-out { background: var(--text-muted); color: #fff; }

.product-card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity var(--transition), transform var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
    width: 34px;
    height: 34px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-sm);
}
.product-action-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.product-action-btn svg { width: 16px; height: 16px; }

.product-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8fafc;
    display: block;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card-brand { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.product-card-title { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-sku { font-size: 11px; color: var(--text-light); }
.product-card-compat {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 11px;
    color: #15803d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}
.product-card-compat svg { width: 12px; height: 12px; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.product-card-price { display: flex; flex-direction: column; gap: 1px; }
.product-price { font-size: 17px; font-weight: 700; color: var(--blue); }
.product-price-old { font-size: 12px; color: var(--text-light); text-decoration: line-through; }

.btn-add-cart {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}
.btn-add-cart:hover { background: var(--blue-dark); }
.btn-add-cart.loading { background: var(--text-muted); cursor: not-allowed; }
.btn-add-cart svg { width: 15px; height: 15px; }

/* WooCommerce add to cart overrides */
.woocommerce .button.add_to_cart_button,
.woocommerce ul.products li.product .button {
    background: var(--blue) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius) !important;
    padding: 8px 14px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    transition: background var(--transition) !important;
}
.woocommerce .button.add_to_cart_button:hover,
.woocommerce ul.products li.product .button:hover {
    background: var(--blue-dark) !important;
}
.woocommerce .button.loading { background: var(--text-muted) !important; }
.woocommerce .button.added { background: var(--green) !important; }

/* ============================================================
   AJAX SEPETİ (DRAWER)
   ============================================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    backdrop-filter: blur(2px);
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: var(--bg-white);
    z-index: 9991;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0,0,0,.15);
}
.cart-drawer.active { transform: translateX(0); }

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 { font-size: 17px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.cart-drawer-header h3 svg { width: 20px; height: 20px; color: var(--blue); }
.cart-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}
.cart-close:hover { background: #fee2e2; color: var(--red); border-color: #fca5a5; }
.cart-close svg { width: 16px; height: 16px; }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); }
.cart-item-info { min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-item-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px;
    width: fit-content;
}
.cart-item-qty button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--text-muted);
    transition: background var(--transition), color var(--transition);
}
.cart-item-qty button:hover { background: var(--blue-light); color: var(--blue); }
.cart-item-qty span { font-size: 13px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--blue); white-space: nowrap; }
.cart-item-remove {
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
}
.cart-item-remove:hover { color: var(--red); background: #fee2e2; }
.cart-item-remove svg { width: 15px; height: 15px; }

.cart-empty { text-align: center; padding: 48px 20px; }
.cart-empty svg { width: 56px; height: 56px; color: var(--text-light); margin: 0 auto 16px; }
.cart-empty h4 { font-size: 16px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.cart-empty p { font-size: 13px; color: var(--text-light); }

.cart-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    background: #fafafa;
}
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
}
.cart-subtotal span:first-child { color: var(--text-muted); }
.cart-subtotal span:last-child { font-weight: 700; color: var(--text); font-size: 18px; }
.cart-buttons { display: flex; gap: 10px; }
.btn-cart { flex: 1; text-align: center; padding: 12px; border-radius: var(--radius); font-size: 14px; font-weight: 600; transition: background var(--transition), color var(--transition); cursor: pointer; border: none; display: block; }
.btn-view-cart { background: var(--bg-white); color: var(--blue); border: 2px solid var(--blue) !important; }
.btn-view-cart:hover { background: var(--blue-light); }
.btn-checkout { background: var(--blue); color: #fff; }
.btn-checkout:hover { background: var(--blue-dark); color: #fff; }

/* Sepet bildirim toast */
.cart-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--green);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    transform: translateY(80px);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }
.cart-toast svg { width: 18px; height: 18px; }

/* ============================================================
   ÖZELLİK BANTLARI
   ============================================================ */
.feature-bar {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.feature-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 16px;
    border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--blue); }
.feature-text h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.feature-text p { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   SHOP SAYFASI
   ============================================================ */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    gap: 12px;
}
.shop-result-count { font-size: 13px; color: var(--text-muted); }
.shop-toolbar-right { display: flex; align-items: center; gap: 12px; }
.shop-sort { padding: 7px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13px; color: var(--text); background: var(--bg-white); cursor: pointer; outline: none; }
.shop-sort:focus { border-color: var(--blue); }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius); color: var(--text-muted); cursor: pointer; transition: all var(--transition); }
.view-btn.active, .view-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.view-btn svg { width: 16px; height: 16px; }

/* Sidebar filtreler */
.shop-sidebar { display: flex; flex-direction: column; gap: 16px; }
.filter-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.filter-card-header {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid var(--border);
}
.filter-card-header h4 { font-size: 14px; font-weight: 700; color: var(--text); }
.filter-card-header svg { width: 16px; height: 16px; color: var(--text-muted); transition: transform var(--transition); }
.filter-card.collapsed .filter-card-header svg { transform: rotate(-90deg); }
.filter-card-body { padding: 14px 18px; }
.filter-card.collapsed .filter-card-body { display: none; }

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    cursor: pointer;
}
.filter-checkbox input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--blue); cursor: pointer; flex-shrink: 0; }
.filter-checkbox span { font-size: 13.5px; color: var(--text); flex: 1; }
.filter-checkbox .count { font-size: 11px; color: var(--text-light); }

.price-range { padding: 8px 0; }
.price-range input[type="range"] { width: 100%; accent-color: var(--blue); margin-bottom: 10px; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); }

/* ============================================================
   TEK ÜRÜN SAYFASI
   ============================================================ */
.single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.product-gallery { position: sticky; top: 100px; }
.product-main-image {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    background: #f8fafc;
    margin-bottom: 12px;
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.product-thumb {
    width: 72px;
    height: 72px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color var(--transition);
}
.product-thumb.active, .product-thumb:hover { border-color: var(--blue); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info {}
.product-info .product-brand { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.product-info h1 { font-size: 26px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 12px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.product-meta-item { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-muted); }
.product-meta-item svg { width: 14px; height: 14px; }
.product-meta-item strong { color: var(--text); font-weight: 600; }

.product-price-box { margin-bottom: 20px; }
.product-price-main { font-size: 32px; font-weight: 800; color: var(--blue); }
.product-price-old-main { font-size: 16px; color: var(--text-light); text-decoration: line-through; margin-left: 8px; }
.product-price-save { display: inline-block; background: #fef2f2; color: var(--red); padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 700; margin-top: 4px; }

.product-stock { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.stock-in { color: var(--green); }
.stock-out { color: var(--red); }
.stock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.stock-in .stock-dot { background: var(--green); }
.stock-out .stock-dot { background: var(--red); }

/* Araç uyumluluk (ürün sayfası) */
.compat-notice {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.compat-notice.fits { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.compat-notice.notfits { background: #fef2f2; color: var(--red); border: 1px solid #fca5a5; }
.compat-notice.unknown { background: var(--blue-light); color: var(--blue); border: 1px solid #bfdbfe; }
.compat-notice svg { width: 18px; height: 18px; flex-shrink: 0; }

.product-add-to-cart { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; }
.qty-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.qty-input button { width: 38px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: background var(--transition); }
.qty-input button:hover { background: var(--blue-light); color: var(--blue); }
.qty-input input { width: 52px; height: 44px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-size: 15px; font-weight: 600; outline: none; }
.btn-add-to-cart-main {
    flex: 1;
    background: var(--blue);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform var(--transition);
}
.btn-add-to-cart-main:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-add-to-cart-main svg { width: 20px; height: 20px; }

.product-secondary-actions { display: flex; gap: 10px; margin-bottom: 24px; }
.btn-wishlist, .btn-compare {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    background: var(--bg-white);
}
.btn-wishlist:hover { border-color: #fca5a5; color: var(--red); background: #fef2f2; }
.btn-compare:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.btn-wishlist svg, .btn-compare svg { width: 16px; height: 16px; }

/* ============================================================
   TABS
   ============================================================ */
.product-tabs { margin-top: 48px; }
.tabs-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 24px; overflow-x: auto; }
.tab-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: color var(--transition), border-color var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--blue); border-color: var(--blue); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   YORUM
   ============================================================ */
.review-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.review-item:last-child { border-bottom: none; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-name { font-weight: 600; font-size: 14px; }
.review-date { font-size: 12px; color: var(--text-muted); }
.star-rating { display: flex; gap: 2px; }
.star-rating svg { width: 15px; height: 15px; color: #f59e0b; fill: #f59e0b; }
.star-rating svg.empty { fill: none; color: var(--border-dark); }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar { padding: 12px 0; background: var(--bg-white); border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { color: var(--text-light); }
.breadcrumb span { color: var(--text); font-weight: 500; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; justify-content: center; gap: 6px; padding: 32px 0 16px; }
.page-btn {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0 10px;
}
.page-btn:hover, .page-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.woocommerce nav.woocommerce-pagination ul { display: flex; justify-content: center; gap: 6px; list-style: none; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted) !important;
    transition: all var(--transition);
    padding: 0 10px;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: var(--blue) !important;
    color: #fff !important;
    border-color: var(--blue) !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0f2040; color: #94a3b8; margin-top: 60px; }
.footer-top { padding: 52px 0 40px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-text { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand .logo-text span { color: #60a5fa; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    border: 1px solid rgba(255,255,255,.1);
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--blue); display: inline-block; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: #94a3b8; transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '›'; color: var(--blue); font-size: 16px; line-height: 1; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copyright { font-size: 13px; }
.footer-payments { display: flex; align-items: center; gap: 8px; }
.footer-payments span { font-size: 12px; margin-right: 4px; }
.payment-badge {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #cbd5e0;
}

/* ============================================================
   WooCommerce GENEL OVERRİDES
   ============================================================ */
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
    border-radius: var(--radius-lg);
    border-left-width: 4px;
    padding: 14px 18px;
    font-size: 14px;
}
.woocommerce .woocommerce-message { background: #f0fdf4; border-color: var(--green); color: #15803d; }
.woocommerce .woocommerce-error { background: #fef2f2; border-color: var(--red); color: #b91c1c; }
.woocommerce .woocommerce-info { background: var(--blue-light); border-color: var(--blue); color: var(--blue-dark); }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.08); }

/* ============================================================
   YÜKLEME / SPINNER
   ============================================================ */
.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .category-grid { grid-template-columns: repeat(4, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
    .layout-with-sidebar { grid-template-columns: 1fr; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-side { flex-direction: row; }
    .single-product-layout { grid-template-columns: 1fr; }
    .feature-bar .container { grid-template-columns: repeat(2, 1fr); }
    .vehicle-finder-form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .header-main .container { grid-template-columns: auto 1fr; }
    .header-actions { display: none; }
    .site-topbar { display: none; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
    .primary-menu { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .vehicle-finder-form { grid-template-columns: 1fr 1fr; }
    .feature-bar .container { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .vehicle-finder-form { grid-template-columns: 1fr; }
    .cart-drawer { width: 100vw; }
    .hero-side { flex-direction: column; }
}

/* ============================================================
   UTIL
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }


/* ================================================
   DÜZELTMELER - Bizim Parçacı
   ================================================ */

/* ---- Logo Düzeltme ---- */
.site-logo {
    display: flex;
    align-items: center;
}
.site-logo img.custom-logo {
    max-height: 60px;
    width: auto;
    display: block;
}
.site-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap;
}

/* ---- WooCommerce Yıldız Rating Düzeltme ---- */
/* WooCommerce'in kendi star-rating'ini gizle, sadece EAEL'i göster */
.eael-product-wrap .star-rating {
    display: none !important;
}
.eael-product-wrap .eael-star-rating.star-rating {
    display: flex !important;
    gap: 2px;
    align-items: center;
    overflow: hidden;
}
/* WooCommerce loop'ta .woocommerce-product-rating içindeki .star-rating düzelt */
.woocommerce ul.products li.product .woocommerce-product-rating .star-rating {
    display: inline-block;
    overflow: hidden;
    position: relative;
    height: 1em;
    width: 5.3em;
    font-size: 1em;
    font-family: 'star';
}
.woocommerce ul.products li.product .woocommerce-product-rating .star-rating::before {
    content: "sssss";
    color: #ddd;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    letter-spacing: 0.1em;
}
.woocommerce ul.products li.product .woocommerce-product-rating .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
    white-space: nowrap;
}
.woocommerce ul.products li.product .woocommerce-product-rating .star-rating span::before {
    content: "SSSSS";
    top: 0;
    position: absolute;
    color: #F5A623;
    left: 0;
    letter-spacing: 0.1em;
}

/* ---- Rating Metin Düzeltme (taşan "oy aldı" vb) ---- */
.eael-star-rating.star-rating span {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
}

/* ---- Ürün Kartı Düzeltme ---- */
.elementor-wc-products .products.columns-4,
.woocommerce ul.products.columns-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    align-items: start;
}
.elementor-wc-products .products.columns-3,
.woocommerce ul.products.columns-3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
}
.woocommerce ul.products li.product,
.eael-product-wrap {
    margin: 0 !important;
    float: none !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column;
}
.woocommerce-loop-product__title,
.eael-product-title {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    min-height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ---- Ürün Görseli Düzeltme ---- */
.woocommerce ul.products li.product img,
.eael-product-wrap .woocommerce-LoopProduct-link img {
    width: 100% !important;
    height: 200px !important;
    object-fit: contain !important;
    background: #f9fafb;
}

/* ---- Slider Alanı Placeholder ---- */
.home-slider-section {
    width: 100%;
    background: linear-gradient(135deg, #1a56db 0%, #1240a8 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

/* ---- Ana Sayfa Ürün Grid Düzeltme ---- */
.products-section .products-grid,
.products-section ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .elementor-wc-products .products.columns-4,
    .woocommerce ul.products.columns-4 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .elementor-wc-products .products.columns-4,
    .woocommerce ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .products-section ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .elementor-wc-products .products.columns-4,
    .woocommerce ul.products.columns-4 {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================================

/* ============================================================
   BİZİM PARÇACI - TASARIM DÜZELTMELERİ
   ============================================================ */

/* ==== BZM PARACI FIX ===*/
.floating-whatsapp{position:fixed!important;bottom:24px!important;right:24px!important;width:56px!important;height:56px!important;background:#25d366!important;border-radius:50%!important;display:flex!important;align-items:center!important;justify-content:center!important;z-index:9999!important;box-shadow:0 4px 12px rgba(0,0,0,.25)!important;overflow:hidden!important;text-decoration:none!important}
.floating-whatsapp:hover{transform:scale(1.1)!important}
.floating-whatsapp svg{width:30px!important;height:30px!important;fill:#fff!important;color:#fff!important}
body,html{overflow-x:hidden!important}


/* BZP FIX: EAEL Cat-Tab width override - Elementor post-63447.css was setting width:0% */
.elementor-63447 .elementor-element.elementor-element-0b3f4e3 .eael-cat-tab,
.elementor-63447 .elementor-element.elementor-element-6712868 .eael-cat-tab,
.elementor-63447 .elementor-element.elementor-element-b97f8a2 .eael-cat-tab,
.elementor-63447 .elementor-element.elementor-element-935dab9 .eael-cat-tab {
  width: 20% !important;
  min-width: 150px !important;
}

/* ============================================================
   Bizim Parcaci Premium Reset - 2026
   ============================================================ */
:root {
    --blue: #0b5fff;
    --blue-dark: #083b8f;
    --blue-light: #eef5ff;
    --ink: #111827;
    --muted: #667085;
    --line: #e6eaf0;
    --surface: #ffffff;
    --soft: #f6f8fb;
    --accent: #f4b000;
    --green: #15a46a;
    --radius: 8px;
    --radius-lg: 8px;
    --shadow-sm: 0 1px 2px rgba(16,24,40,.06);
    --shadow-md: 0 12px 28px rgba(16,24,40,.10);
    --shadow-lg: 0 18px 48px rgba(16,24,40,.14);
}

body { background: var(--soft); color: var(--ink); }
a { color: inherit; }
a:hover { color: var(--blue); }

.site-topbar {
    background: #0b1220;
    padding: 8px 0;
    color: #d8dee9;
}
.topbar-left, .topbar-right { gap: 10px; min-width: 0; }
.topbar-left span, .topbar-right a {
    color: #d8dee9;
    min-width: 0;
}
.topbar-left a[href^="tel:"],
.topbar-left a[href^="mailto:"],
.topbar-right a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}
.topbar-left a:hover,
.topbar-right a:hover { background: rgba(255,255,255,.12); color: #fff; }

.site-header {
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 28px rgba(15,23,42,.06);
}
.header-main { padding: 18px 0; }
.header-main .container { grid-template-columns: 210px minmax(340px, 1fr) auto; gap: 22px; }
.site-logo a { display: flex; align-items: center; min-width: 0; }
.site-logo img,
.site-logo img.custom-logo {
    max-width: 205px !important;
    max-height: 62px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.header-search form {
    height: 48px;
    border: 1px solid #d9e1ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.header-search .search-cat,
.header-search input[type="search"],
.header-search .search-btn {
    border: 0;
    height: 48px;
}
.header-search .search-cat {
    min-width: 160px;
    background-color: #f8fafc;
    border-right: 1px solid var(--line);
}
.header-search input[type="search"] { font-size: 15px; }
.header-search .search-btn {
    border-radius: 0;
    padding: 0 22px;
    background: linear-gradient(135deg, #0b5fff, #073fba);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.18);
}

.header-action-btn,
.nav-categories-btn,
.vehicle-finder-btn,
.btn-add-cart,
.filter-apply-btn,
.btn-cart {
    border-radius: 8px !important;
}
.header-action-btn {
    min-width: 74px;
    min-height: 48px;
    background: #f8fafc;
    border: 1px solid var(--line);
    color: #1f2937;
}
.header-action-btn:hover { background: var(--blue-light); color: var(--blue); border-color: #c7dcff; }

.site-nav {
    background: #111827;
    border-bottom: 0;
}
.nav-categories-btn {
    min-height: 46px;
    background: var(--accent);
    color: #111827;
    font-weight: 800;
}
.nav-categories-btn:hover,
.nav-categories-btn.active { background: #ffd166; color: #111827; }
.primary-menu > li > a {
    min-height: 46px;
    padding: 0 18px;
    color: #e5e7eb;
    font-weight: 650;
}
.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li:hover > a {
    background: rgba(255,255,255,.10);
    color: #fff;
}

.vehicle-finder {
    background: radial-gradient(circle at 20% 10%, rgba(244,176,0,.24), transparent 26%),
                linear-gradient(135deg, #111827 0%, #0b3b85 100%);
    border-bottom: 0;
}
.vehicle-finder-inner {
    max-width: 1120px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
}
.vehicle-select {
    min-height: 46px;
    background-color: rgba(255,255,255,.95);
    color: #111827;
    border-color: transparent;
}
.vehicle-select option { background: #fff; color: #111827; }
.vehicle-finder-btn {
    min-height: 46px;
    background: var(--accent);
    color: #111827;
}

.layout-with-sidebar { grid-template-columns: 292px minmax(0, 1fr); }
.shop-sidebar {
    position: sticky;
    top: 138px;
}
.filter-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.filter-card + .filter-card { margin-top: 14px; }
.filter-card-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 16px;
}
.filter-card-header h4 {
    color: #111827;
    font-size: 14px;
    font-weight: 800;
}
.filter-card-body { padding: 14px 16px; }
.filter-checkbox {
    min-height: 34px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f6;
}
.filter-checkbox:last-child { border-bottom: 0; }

.price-filter-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}
.price-filter-inputs label { display: grid; gap: 6px; font-size: 12px; font-weight: 700; color: var(--muted); }
.price-filter-inputs input {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 10px;
    background: #f8fafc;
    color: #111827;
    outline: none;
}
.price-filter-inputs input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,95,255,.12); }
.filter-apply-btn {
    width: 100%;
    min-height: 42px;
    background: #111827;
    color: #fff;
    font-weight: 800;
}
.filter-clear-link {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.shop-toolbar,
.product-card,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.product-card { overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.product-card:hover {
    transform: translateY(-3px);
    border-color: #c7dcff;
    box-shadow: var(--shadow-md);
}
.product-card-image { background: #f8fafc; }
.product-card-footer .btn-add-cart,
.btn-add-cart {
    background: var(--blue);
    color: #fff;
    font-weight: 800;
}
.product-card-footer .btn-add-cart:hover,
.btn-add-cart:hover { background: var(--blue-dark); color: #fff; }

.site-footer {
    background: #0b1220;
    margin-top: 64px;
}
.footer-grid { grid-template-columns: 1.35fr 1fr 1fr 1.25fr; }
.footer-logo {
    display: inline-flex;
    align-items: center;
    max-width: 220px;
    margin-bottom: 14px;
}
.footer-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}
.footer-brand .logo-text { display: none; }
.footer-col h4 {
    border-bottom: 0;
    padding-bottom: 0;
    color: #fff;
}
.footer-col ul li a {
    min-height: 28px;
    color: #cbd5e1;
}
.footer-col ul li a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex: 0 0 6px;
}
.footer-contact-item a,
.footer-contact-item span { color: #cbd5e1; }
.payment-badge {
    border-radius: 8px;
    background: rgba(255,255,255,.08);
}

.floating-whatsapp {
    width: 58px !important;
    height: 58px !important;
    border-radius: 999px !important;
    border: 2px solid rgba(255,255,255,.9) !important;
    box-shadow: 0 16px 36px rgba(21,164,106,.38) !important;
}
.floating-whatsapp span {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
}

@media (max-width: 1024px) {
    .header-main .container { grid-template-columns: 180px 1fr; }
    .header-search { grid-column: 1 / -1; }
    .shop-sidebar { position: static; }
}

@media (max-width: 768px) {
    .header-main .container { grid-template-columns: 1fr; }
    .site-logo { justify-content: center; }
    .header-search form { height: auto; flex-wrap: wrap; }
    .header-search .search-cat { width: 100%; border-right: 0; border-bottom: 1px solid var(--line); }
    .header-search input[type="search"] { min-width: 0; }
    .vehicle-finder-inner { padding: 18px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* EK OZELLIKLER */
.product-action-btn.btn-wishlist.active,.product-action-btn.btn-compare.active{background:var(--red);color:#fff;border-color:var(--red);}
.product-action-btn.btn-compare.active{background:var(--blue);border-color:var(--blue);}
.topbar-right .action-count{display:inline-flex;align-items:center;justify-content:center;min-width:18px;height:18px;padding:0 4px;border-radius:999px;background:var(--red);color:#fff;font-size:11px;font-weight:700;margin-left:2px;vertical-align:middle;}
.price-range-slider{position:relative;height:34px;margin-bottom:4px;}
.price-range-track{position:absolute;top:50%;left:0;right:0;height:4px;background:var(--border);border-radius:999px;transform:translateY(-50%);}
.price-range-track-fill{position:absolute;top:0;height:4px;background:linear-gradient(90deg,var(--blue-mid),var(--blue));border-radius:999px;}
.price-range-handle{position:absolute;top:50%;left:0;width:100%;height:4px;margin:0;background:transparent;pointer-events:none;-webkit-appearance:none;appearance:none;transform:translateY(-50%);}
.price-range-handle::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;pointer-events:auto;width:18px;height:18px;border-radius:50%;background:var(--blue);border:3px solid #fff;box-shadow:var(--shadow-md);cursor:pointer;transition:transform var(--transition);}
.price-range-handle::-webkit-slider-thumb:hover{transform:scale(1.15);}
.price-range-handle::-moz-range-thumb{pointer-events:auto;width:18px;height:18px;border-radius:50%;background:var(--blue);border:3px solid #fff;box-shadow:var(--shadow-md);cursor:pointer;}
.price-range-handle::-moz-range-track{background:transparent;}
.otopart-empty-list{text-align:center;padding:60px 20px;background:var(--bg-white);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);}
.otopart-empty-list p{color:var(--text-muted);margin-bottom:16px;font-size:15px;}
.btn-go-shop{display:inline-block;background:var(--blue);color:#fff;padding:10px 24px;border-radius:var(--radius);font-weight:600;font-size:14px;}
.otopart-mini-table{width:100%;border-collapse:collapse;background:var(--bg-white);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm);}
.otopart-mini-table th,.otopart-mini-table td{padding:14px 16px;text-align:left;border-bottom:1px solid var(--border);font-size:14px;}
.otopart-mini-table th{color:var(--text-muted);font-weight:700;font-size:12px;text-transform:uppercase;letter-spacing:.03em;}
.omt-product-link{display:flex;align-items:center;gap:12px;color:var(--text);font-weight:600;}
.omt-product-link img{width:56px;height:56px;object-fit:cover;border-radius:var(--radius);border:1px solid var(--border);}
.omt-stock .in-stock{color:var(--green);font-weight:600;}
.omt-stock .out-stock{color:var(--red);font-weight:600;}
.omt-remove{width:28px;height:28px;border-radius:50%;border:1px solid var(--border);background:var(--bg-white);color:var(--text-muted);font-size:16px;line-height:1;cursor:pointer;transition:var(--transition);}
.omt-remove:hover{background:var(--red);color:#fff;border-color:var(--red);}
.btn-add-cart.small{padding:6px 12px;font-size:12px;background:var(--blue);color:#fff;border:none;border-radius:var(--radius);cursor:pointer;font-weight:600;}
.btn-add-cart.small:hover{background:var(--blue-dark);}
.otopart-compare-table-wrap{overflow-x:auto;}
.otopart-compare-table{width:100%;border-collapse:collapse;background:var(--bg-white);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);min-width:600px;}
.otopart-compare-table th,.otopart-compare-table td{padding:14px 16px;border-bottom:1px solid var(--border);text-align:left;font-size:13.5px;vertical-align:top;}
.otopart-compare-table th{width:140px;color:var(--text-muted);font-weight:700;background:var(--bg);}
.otopart-compare-table .ct-row-image td{position:relative;text-align:center;}
.otopart-compare-table .ct-row-image img{width:110px;height:110px;object-fit:cover;border-radius:var(--radius);}
.otopart-compare-table .ct-row-image .omt-remove{position:absolute;top:6px;right:6px;}
.otopart-compare-table .ct-row-title td a{font-weight:700;color:var(--text);}
.otopart-compare-table .ct-desc{color:var(--text-muted);}
.otopart-compare-table .btn-add-cart{padding:8px 18px;background:var(--blue);color:#fff;border:none;border-radius:var(--radius);cursor:pointer;font-weight:600;font-size:13px;}
.otopart-compare-table .btn-add-cart:hover{background:var(--blue-dark);}
.otopart-contact-form-wrap{background:var(--bg-white);border-radius:var(--radius-lg);box-shadow:var(--shadow-md);padding:32px;max-width:760px;margin:0 auto;}
.otopart-contact-form .form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px;}
.otopart-contact-form .form-group{display:flex;flex-direction:column;gap:6px;}
.otopart-contact-form .form-group-full{margin-bottom:16px;}
.otopart-contact-form label{font-size:13px;font-weight:700;color:var(--text);}
.otopart-contact-form label .req{color:var(--red);}
.otopart-contact-form input,.otopart-contact-form textarea{border:1px solid var(--border);border-radius:var(--radius);padding:12px 14px;font-size:14px;font-family:var(--font);transition:var(--transition);background:var(--bg);}
.otopart-contact-form input:focus,.otopart-contact-form textarea:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 3px rgba(26,86,219,.12);background:var(--bg-white);}
.btn-contact-submit{background:var(--blue);color:#fff;border:none;padding:13px 32px;border-radius:var(--radius);font-weight:700;font-size:15px;cursor:pointer;transition:var(--transition);}
.btn-contact-submit:hover{background:var(--blue-dark);}
.btn-contact-submit:disabled{opacity:.6;cursor:not-allowed;}
.otopart-contact-msg{margin-top:14px;font-size:14px;font-weight:600;}
.otopart-contact-msg.success{color:var(--green);}
.otopart-contact-msg.error{color:var(--red);}
@media (max-width:640px){.otopart-contact-form .form-row{grid-template-columns:1fr;}.otopart-contact-form-wrap{padding:20px;}}
.otopart-garage-panel{max-width:800px;}
.garage-header h2{font-size:22px;margin-bottom:6px;}
.garage-header p{color:var(--text-muted);font-size:14px;margin-bottom:24px;}
.garage-current-vehicle{display:flex;align-items:center;justify-content:space-between;gap:16px;background:var(--blue-light);border:1px solid var(--blue);border-radius:var(--radius-lg);padding:16px 20px;margin-bottom:20px;font-size:14px;flex-wrap:wrap;}
.btn-garage-save-current{background:var(--blue);color:#fff;border:none;padding:10px 18px;border-radius:var(--radius);font-weight:700;font-size:13px;cursor:pointer;transition:var(--transition);white-space:nowrap;}
.btn-garage-save-current:hover{background:var(--blue-dark);}
.garage-list{display:flex;flex-direction:column;gap:12px;margin-bottom:28px;}
.garage-empty{background:var(--bg-white);border:1px dashed var(--border-dark);border-radius:var(--radius-lg);padding:24px;text-align:center;color:var(--text-muted);font-size:14px;}
.garage-vehicle-card{display:flex;align-items:center;gap:16px;background:var(--bg-white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:16px 20px;box-shadow:var(--shadow-sm);transition:var(--transition);}
.garage-vehicle-card:hover{box-shadow:var(--shadow-md);border-color:var(--blue);}
.garage-vehicle-icon{width:44px;height:44px;border-radius:50%;background:var(--blue-light);color:var(--blue);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.garage-vehicle-icon svg{width:24px;height:24px;}
.garage-vehicle-info{flex:1;display:flex;flex-direction:column;gap:2px;}
.garage-vehicle-info strong{font-size:15px;}
.garage-vehicle-info span{font-size:12.5px;color:var(--text-muted);}
.garage-vehicle-actions{display:flex;align-items:center;gap:10px;}
.btn-garage-select{background:var(--blue);color:#fff;border:none;padding:9px 16px;border-radius:var(--radius);font-weight:600;font-size:13px;cursor:pointer;transition:var(--transition);white-space:nowrap;}
.btn-garage-select:hover{background:var(--blue-dark);}
.btn-garage-remove{width:30px;height:30px;border-radius:50%;border:1px solid var(--border);background:var(--bg-white);color:var(--text-muted);font-size:16px;line-height:1;cursor:pointer;transition:var(--transition);flex-shrink:0;}
.btn-garage-remove:hover{background:var(--red);color:#fff;border-color:var(--red);}
.garage-add-new{background:var(--bg-white);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);padding:20px;}
.garage-add-new h3{font-size:16px;margin-bottom:14px;}
.garage-add-form{display:grid;grid-template-columns:1fr 1fr 1fr auto;gap:10px;}
.garage-add-form select{border:1px solid var(--border);border-radius:var(--radius);padding:11px 12px;font-size:14px;font-family:var(--font);background:var(--bg);}
.btn-garage-add{background:var(--blue);color:#fff;border:none;padding:11px 22px;border-radius:var(--radius);font-weight:700;font-size:14px;cursor:pointer;transition:var(--transition);white-space:nowrap;}
.btn-garage-add:hover:not(:disabled){background:var(--blue-dark);}
.btn-garage-add:disabled{opacity:.5;cursor:not-allowed;}
.garage-msg{margin-top:12px;font-size:13px;font-weight:600;}
.garage-msg.success{color:var(--green);}
.garage-msg.error{color:var(--red);}
@media (max-width:768px){.garage-add-form{grid-template-columns:1fr;}.garage-vehicle-card{flex-wrap:wrap;}}
