/* ============================================================
   KKTC BID — Modern Ticari İhale Arayüzü (UI / UX 2026)
   Endüstriyel & Kurumsal Otomotiv Ticaret Tasarım Sistemi
   ============================================================ */

/* ---------- 01. TASARIM JETONLARI (TOKENS) ---------- */
:root {
    --ink: #050B20;
    --ink-2: #1E293B;
    --paper: #F8FAFC;
    --paper-2: #F1F5F9;
    --navy: #050B20;
    
    /* Canlı Ticaret Vurgu Renkleri */
    --accent: #405FF2;
    --accent-dk: #2B44C7;
    --accent-light: rgba(64, 95, 242, 0.05);
    
    --text: #0F172A;
    --text-muted: #64748B;
    --line: #E2E8F0;
    --line-dark: #334155;
    
    /* Durumlar */
    --success: #10B981;
    --success-bg: #ECFDF5;
    --danger: #EF4444;
    --danger-bg: #FEF2F2;
    --warning: #F59E0B;
    --warning-bg: #FFFBEB;

    --font-head: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --container: 1280px;
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 14px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 14px -2px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 32px -4px rgba(15, 23, 42, 0.12);
}

/* ---------- 02. TEMEL SIFIRLAMA & TİPOGRAFİ ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.975rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 .5em;
    color: var(--text);
    letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }

button { font: inherit; cursor: pointer; }

input, select, textarea {
    font: inherit;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 14px;
    width: 100%;
    transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(64, 95, 242, 0.15);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.icon { width: 20px; height: 20px; flex: none; }

.inline-form { display: inline; }

/* ---------- 03. BUTONLAR, ROZETLER & İKONLAR ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .02em;
    padding: 11px 22px;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}
.btn--primary {
    background: var(--accent) !important;
    color: #ffffff !important;
    border-color: var(--accent) !important;
}
.btn--primary:hover {
    background: var(--accent-dk) !important;
    border-color: var(--accent-dk) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(64, 95, 242, 0.3);
}
.btn--outline {
    background: #ffffff !important;
    color: var(--navy) !important;
    border-color: var(--line) !important;
}
.btn--outline:hover {
    border-color: var(--navy) !important;
    background: var(--navy) !important;
    color: #ffffff !important;
}
.btn--outline-light {
    background: rgba(255,255,255,0.08) !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.3) !important;
}
.btn--outline-light:hover {
    background: #ffffff !important;
    color: var(--ink) !important;
}
.btn--sm { padding: 7px 14px; font-size: .85rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text-muted);
    transition: all .15s ease;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.icon-btn.is-active { color: var(--accent); border-color: var(--accent); background: var(--accent-light); }
.icon-btn.is-active svg { fill: var(--accent); }

/* Rozetler */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.badge--live { background: #059669; }
.badge--ending { background: var(--danger); }
.badge--sold { background: var(--ink); }
.badge--soon { background: var(--navy); }
.badge--bids { background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(4px); }

/* Canlı Nabız Noktası */
.pulse-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.pulse-dot--green { background: #34D399; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); animation: pulseGreen 1.8s infinite; }
.pulse-dot--red { background: #F87171; box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.7); animation: pulseRed 1.8s infinite; }

@keyframes pulseGreen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

@keyframes pulseRed {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(248, 113, 113, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(248, 113, 113, 0); }
}

.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.dot--original { background: #E5E7EB; }
.dot--local-painted { background: #F97316; }
.dot--painted { background: #3B82F6; }
.dot--replaced { background: #EF4444; }

/* ---------- 04. HEADER (ÜST BİLGİ VE GEZİNME) ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--ink); }

.topbar {
    background: #060D17;
    color: #94A3B8;
    font-size: .825rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 12px; }
.topbar__contact { display: flex; gap: 20px; }
.topbar__link {
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    font-size: .825rem;
}
.topbar__link:hover { color: #fff; }
.topbar__link--accent { color: var(--accent); font-weight: 700; }
.topbar__link--accent:hover { color: #fff; }
.topbar__right { display: flex; align-items: center; gap: 16px; }

.mainbar {
    background: #0B192C;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.mainbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 20px; }

.logo { display: flex; align-items: center; line-height: 0; }
.site-logo { display: block; height: auto; }
.site-logo--header { width: 180px; max-height: 56px; }

.mainnav { display: flex; align-items: center; gap: 6px; }
.mainnav__link {
    color: #E2E8F0 !important;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .02em;
    padding: 10px 16px;
    border-radius: var(--radius);
    transition: all .15s ease;
}
.mainnav__link:hover { color: #ffffff !important; background: rgba(255,255,255,0.08); }
.mainnav__link.is-active { color: #ffffff !important; background: rgba(64, 95, 242, 0.2); border: 1px solid rgba(64, 95, 242, 0.4); }

.mainnav__link--compare { display: inline-flex; align-items: center; gap: 8px; }
.compare-count {
    background: var(--accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    min-width: 20px; height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    padding: 0 6px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    padding: 10px;
}
.hamburger span { width: 22px; height: 2px; background: #fff; display: block; }
.mobile-menu__utilities { display: none; }
.mobile-menu-backdrop { display: none; }

/* ---------- 05. HERO BÖLÜMÜ (NET GÖRÜNÜR YAZILAR & KOYU ZEMİN) ---------- */
.hero {
    background: #0B192C !important;
    background-image: 
        radial-gradient(circle at 85% 20%, rgba(64, 95, 242, 0.12) 0%, transparent 45%),
        repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(255,255,255,0.02) 48px),
        repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(255,255,255,0.02) 48px) !important;
    color: #ffffff !important;
    padding: 54px 0 54px;
    border-bottom: 1px solid var(--line-dark);
}
.hero__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }
.hero__title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 14px;
    border-left: 5px solid var(--accent);
    padding-left: 18px;
    line-height: 1.18;
}
.hero__subtitle {
    color: #CBD5E1 !important;
    font-size: 1.125rem;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.5;
}

.hero-search {
    background: #1E293B !important;
    border: 1px solid #334155 !important;
    border-top: 3px solid var(--accent) !important;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
    box-shadow: var(--shadow-lg);
}
.hero-search__field label {
    display: block;
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #94A3B8 !important;
    margin-bottom: 8px;
}
.hero-search__field input,
.hero-search__field select {
    background: #0F172A !important;
    border-color: #334155 !important;
    color: #ffffff !important;
    border-radius: var(--radius);
}

.hero__featured-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent) !important;
    margin-bottom: 10px;
}

/* ---------- 06. İSTATİSTİK & BÖLÜM YAPILARI ---------- */
.section { padding: 56px 0; }
.section--alt { background: #F1F5F9; }

/* NASIL ÇALIŞIR (KOYU BÖLÜM - TAM NET METİNLER) */
.section--dark {
    background: #0B192C !important;
    color: #ffffff !important;
}
.section-title--light {
    color: #ffffff !important;
    margin-bottom: 32px;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 40px; }
.step {
    background: #1E293B !important;
    border: 1px solid #334155;
    border-top: 4px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    transition: transform .2s ease;
}
.step:hover { transform: translateY(-3px); }
.step__no {
    font-family: var(--font-head);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent) !important;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}
.step__title {
    font-size: 1.25rem !important;
    color: #ffffff !important;
    margin-bottom: 10px;
    font-weight: 700;
}
.step__text {
    color: #CBD5E1 !important;
    margin: 0;
    font-size: 0.925rem;
    line-height: 1.55;
}
.steps-cta { display: flex; gap: 16px; justify-content: center; }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: none;
    margin-bottom: 36px;
    padding-bottom: 0;
}
.section-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.section-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    border-left: none;
    padding-left: 0;
    margin: 0;
    line-height: 1.2;
}
.section-subtitle {
    font-size: 0.775rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}
.section-link { font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: .95rem; text-decoration: none; }
.section-link:hover { text-decoration: underline; }

/* İstatistik Kartları */
.section--stats { background: #fff; border-bottom: 1px solid var(--line); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-card { padding: 16px; border-right: 1px solid var(--line); }
.stat-card:last-child { border-right: none; }
.stat-card__val { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-card__lbl { color: var(--text-muted); font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* Güven Bloğu */
.section--trust { background: #fff; border-top: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.trust-item {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: transform .2s ease;
}
.trust-item:hover { transform: translateY(-3px); border-color: var(--accent); }
.trust-item__icon {
    width: 44px; height: 44px;
    background: #fff;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}
.trust-item__icon svg { width: 24px; height: 24px; }
.trust-item__title { font-size: 1.1rem; margin-bottom: 8px; color: var(--text); }
.trust-item__text { color: var(--text-muted); font-size: .875rem; margin: 0; line-height: 1.5; }

/* ---------- 07. MARKALAR & LOGOLAR ---------- */
.brand-list {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.brand-list__item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}
.brand-list__item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.brand-logo-icon {
    width: 84px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-logo-image {
    display: block;
    width: 76px;
    height: 48px;
    object-fit: contain;
    object-position: center;
}
.brand-logo-fallback {
    width: 42px;
    height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #475569;
    background: #f8fafc;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
}
.brand-list__name {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}
.brand-list__count {
    color: var(--text-muted);
    font-size: .8rem;
    font-weight: 500;
}

/* ---------- 08. ARAÇ KARTLARI ---------- */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vehicle-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #CBD5E1;
}

.vehicle-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4/3;
    background: var(--paper-2);
    overflow: hidden;
}
.vehicle-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.vehicle-card:hover .vehicle-card__media img { transform: scale(1.04); }

.vehicle-card__badges {
    position: absolute;
    top: 12px; left: 12px; right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.vehicle-card__brand-pill {
    position: absolute;
    bottom: 10px; left: 12px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: .05em;
}

.vehicle-card__body { padding: 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.vehicle-card__title { font-size: 1.1rem; margin: 0; font-weight: 700; line-height: 1.3; }
.vehicle-card__title a { color: var(--text); }
.vehicle-card__title a:hover { color: var(--accent); }

.vehicle-card__spec-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.spec-pill {
    background: var(--paper-2);
    border: 1px solid var(--line);
    color: var(--text-muted);
    font-size: .775rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

.vehicle-card__pricing {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px dashed var(--line);
    padding-top: 12px;
    margin-top: auto;
}
.vehicle-card__price-label {
    display: block;
    font-size: .725rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    color: var(--text-muted);
}
.vehicle-card__price {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}
.vehicle-card__time { text-align: right; }
.countdown {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    font-variant-numeric: tabular-nums;
    color: var(--navy);
}

.vehicle-card__actions { display: flex; gap: 8px; align-items: center; }
.vehicle-card__actions .btn { flex: 1; }

/* ---------- 09. FİLTRELER VE LİSTE SAYFASI ---------- */
.page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 56px;
    align-items: start;
}

.filters-toggle { display: none; width: 100%; margin-bottom: 20px; }

.filters {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-sm);
}
.filters__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.filters__head h2 { font-size: 1.15rem; margin: 0; }
.filters__clear { font-size: .825rem; font-weight: 600; color: var(--accent); }
.filters__form { display: flex; flex-direction: column; gap: 14px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
    font-family: var(--font-head);
    font-size: .775rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.page-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}
.page-title { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; border-left: none; padding-left: 0; margin: 0; color: var(--navy); }
.page-head__meta { display: flex; align-items: center; gap: 16px; }
.results-count { color: var(--text-muted); font-size: .9rem; font-weight: 600; }
.sort-form select { width: auto; padding: 8px 12px; border-radius: var(--radius); }

.empty-state {
    background: #fff;
    border: 2px dashed var(--line);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 64px 24px;
}
.empty-state h2 { font-size: 1.4rem; color: var(--text); }
.empty-state p { color: var(--text-muted); }
.empty-state__code {
    font-family: var(--font-head);
    font-size: 4.5rem;
    font-weight: 800;
    color: #CBD5E1;
    display: block;
    line-height: 1;
}

/* ---------- 10. EKSPERTİZ DİYAGRAMI VE DETAY SAYFASI (ORANTILI VE UYUMLU) ---------- */
.vehicle-page { padding-top: 28px; padding-bottom: 56px; }

.breadcrumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.breadcrumbs span[aria-current] { color: var(--text); font-weight: 700; }

.vehicle-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.vehicle-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.vehicle-title { font-size: 2.1rem; margin: 0; color: var(--text); }
.vehicle-head__meta { display: flex; align-items: center; gap: 16px; }
.vehicle-views { color: var(--text-muted); font-size: .85rem; font-weight: 600; }

.plate {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 2px solid var(--navy);
    border-left: 8px solid var(--accent);
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-weight: 800;
    letter-spacing: .1em;
    padding: 4px 12px;
    font-size: .95rem;
    box-shadow: var(--shadow-sm);
}

.gallery__main {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: var(--shadow-md);
}
.gallery__main img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .2s ease;
}
.gallery__main img.is-active { opacity: 1; }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery__thumb {
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
    background: var(--paper-2);
    width: 96px;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    transition: all .15s ease;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(64, 95, 242, 0.3); }

.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 28px;
    box-shadow: var(--shadow-sm);
}
.panel__title { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; border-left: none; padding-left: 0; margin-bottom: 20px; color: var(--navy); }

/* ---------- TEKNİK ÖZELLİKLER (YENİ TASARIM) ---------- */
.technical-specs-panel {
    background: transparent;
    padding: 32px 0;
    margin-top: 32px;
    border-top: 1px solid var(--line);
}
.tech-main-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 28px;
}
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.tech-icon {
    width: 20px; height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}
.tech-list { margin: 0; padding: 0; }
.tech-item {
    display: flex; justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #E2E8F0;
}
.tech-item:last-child { border-bottom: none; }
.tech-item dt {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .825rem; font-weight: 700; color: #64748B;
    text-transform: uppercase; letter-spacing: .04em;
    margin: 0;
}
.tech-item dd {
    margin: 0;
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    text-align: right;
}

@media (max-width: 768px) {
    .tech-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* EKSPERTİZ ŞEMASI (ORANTILI & BOYUTLANDIRILMIŞ) */
.expertise-grid { display: grid; grid-template-columns: 320px 1fr; gap: 32px; align-items: start; }
.damage-diagram {
    background: #FAFAFA;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}
.damage-diagram .car-diagram-svg {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 340px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.04));
}
.damage-diagram__clean {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
}
.damage-diagram__clean svg {
    width: 40px !important;
    height: 40px !important;
    color: #10B981;
}
.damage-diagram__clean span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}
.car-part { transition: opacity .15s ease, filter .15s ease; cursor: pointer; }
.car-part:hover { opacity: 0.85; filter: brightness(1.1); }
.damage-diagram__legend-top {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--line);
}
.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 4px;
}
.dot--original { background: #D1D5DB; }
.dot--local-painted { background: #F97316; }
.dot--painted { background: #3B82F6; }
.dot--replaced { background: #EF4444; }
.damage-diagram__list { list-style: none; margin: 14px 0 0; padding: 10px 0 0; border-top: 1px solid var(--line); font-size: .85rem; text-align: left; }
.damage-diagram__list li { padding: 4px 0; display: flex; align-items: center; gap: 6px; }

@media (max-width: 900px) {
    .expertise-grid { grid-template-columns: 1fr; gap: 24px; }
    .damage-diagram { max-width: 320px; }
}

/* ---------- 11. TEKLİF KUTUSU (BID BOX) ---------- */
.vehicle-side { position: sticky; top: 100px; }

.bid-box {
    background: var(--ink);
    color: #fff;
    border-top: 5px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}
.bid-box__state {
    display: block;
    font-size: .775rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #94A3B8;
}
.bid-box__countdown {
    display: block;
    font-family: var(--font-head);
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
    margin: 4px 0 18px;
}
.bid-box__label {
    display: block;
    font-size: .775rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #94A3B8;
}
.bid-box__price {
    display: block;
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    margin-bottom: 16px;
    line-height: 1;
}
.bid-box__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border-top: 1px solid var(--line-dark);
    padding-top: 14px;
    margin-bottom: 18px;
    font-size: .78rem;
    color: #CBD5E1;
}
.bid-box__meta > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
    padding: 9px 10px;
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .035);
    overflow-wrap: anywhere;
}
.bid-box__meta strong {
    color: #fff;
    font-size: .86rem;
    line-height: 1.35;
}
@media (max-width: 420px) {
    .bid-box__meta { grid-template-columns: 1fr; }
}

.bid-form label {
    display: block;
    font-size: .775rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #94A3B8;
    margin-bottom: 8px;
}
.bid-form__row { display: flex; gap: 10px; }
.bid-form__row input {
    background: #1E293B;
    border-color: #334155;
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
}

.side-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

.bid-history { list-style: none; margin: 0; padding: 0; }
.bid-history__item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
}
.bid-history__item strong { font-family: var(--font-head); font-weight: 700; }
.bid-history__item time { color: var(--text-muted); font-size: .8rem; }

/* ---------- 12. METİN VE DİĞER SAYFALAR (PADDING & DÜZEN) ---------- */
.page-narrow {
    padding-top: 48px;
    padding-bottom: 64px;
    max-width: 860px;
    margin: 0 auto;
}

.page-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.prose {
    line-height: 1.8;
    color: var(--text);
    font-size: 1rem;
    margin-top: 24px;
}

.prose h1, .prose h2, .prose h3 {
    margin-top: 1.8em;
    margin-bottom: 0.75em;
    color: var(--navy);
    line-height: 1.3;
}

.prose p {
    margin-bottom: 1.25em;
    color: #334155;
}

.prose ol, .prose ul {
    margin-bottom: 1.25em;
    padding-left: 24px;
}

.about-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    padding: 20px 24px;
    overflow: hidden;
    border: 1px solid rgba(64, 95, 242, .28);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 88% 20%, rgba(64, 95, 242, .3), transparent 42%),
        #0c101f;
    box-shadow: var(--shadow-sm);
}
.about-brand img { width: min(290px, 52%); height: auto; }
.about-brand span {
    max-width: 250px;
    color: #b8c3d2;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: right;
}

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all .2s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #CBD5E1; }
.post-card__media { display: block; aspect-ratio: 16/9; background: var(--paper-2); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card__date { color: var(--text-muted); font-size: .8rem; font-weight: 600; text-transform: uppercase; }
.post-card__title { font-size: 1.1rem; margin: 0; color: var(--text); }

/* ---------- 12.5. AUTH SAYFALARI ---------- */
.auth-page {
    padding-top: 64px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 350px);
}
.auth-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-sm);
}
.auth-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 28px;
    text-align: center;
}
.auth-link {
    color: var(--accent);
    font-weight: 600;
    font-size: .875rem;
}
.auth-link:hover { text-decoration: underline; }
.auth-alt {
    text-align: center;
    margin-top: 24px;
    font-size: .95rem;
    color: var(--text-muted);
}
.auth-alt a {
    color: var(--navy);
    font-weight: 700;
}
.field--row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    margin-bottom: 24px;
}
.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: var(--text);
    cursor: pointer;
    font-weight: 500;
}
.checkbox input {
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* ---------- 08.1 BOXCAR ARAÇ KARTLARI (PREMIUM TASARIM) ---------- */
.boxcar-vehicle-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: relative;
}
.boxcar-vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.boxcar-image-wrapper {
    position: relative;
    display: block;
    aspect-ratio: 16/11;
    background: #F1F5F9;
    overflow: hidden;
}
.boxcar-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
}
.boxcar-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.boxcar-vehicle-card:hover .boxcar-thumbnail img {
    transform: scale(1.03);
}

.boxcar-card-top-label {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}
.boxcar-badges {
    display: flex;
    gap: 6px;
    pointer-events: auto;
}
.boxcar-badge {
    font-size: .725rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .02em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.boxcar-badge--live { background: #10B981; }
.boxcar-badge--ending { background: var(--danger); }
.boxcar-badge--sold { background: #0F172A; }
.boxcar-badge--soon { background: var(--navy); }
.boxcar-badge--bids { background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(4px); }

.boxcar-fav-action {
    pointer-events: auto;
}
.boxcar-fav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all .2s ease;
}
.boxcar-fav-btn:hover {
    color: var(--danger);
    transform: scale(1.1);
}
.boxcar-fav-btn.is-active {
    color: #fff;
    background: var(--danger);
}
.boxcar-fav-btn svg {
    width: 16px;
    height: 16px;
}

.boxcar-inner-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.boxcar-listing-title {
    font-size: 1.15rem;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
}
.boxcar-listing-title a {
    color: inherit;
    text-decoration: none;
}
.boxcar-listing-title a:hover {
    color: var(--accent);
}

.boxcar-tagline {
    font-size: .8rem;
    font-weight: 600;
    color: #64748B;
}

.boxcar-metas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
    padding-top: 4px;
}
.boxcar-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: .825rem;
    font-weight: 500;
}
.boxcar-meta svg {
    color: #94A3B8;
}

.boxcar-bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #F1F5F9;
    padding-top: 14px;
    margin-top: auto;
}
.boxcar-price-wrapper {
    display: flex;
    flex-direction: column;
}
.boxcar-price-label {
    font-size: .7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: .02em;
    margin-bottom: 2px;
}
.boxcar-price-val {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
}
.boxcar-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 700;
    font-size: .825rem;
    text-decoration: none;
    transition: transform .2s ease;
}
.boxcar-readmore:hover {
    transform: translateX(4px);
}
.boxcar-readmore svg {
    transition: transform .2s ease;
}

/* ---------- 05.1 BOXCAR HERO ARAMA ÇUBUĞU ---------- */
.boxcar-search-bar {
    background: #ffffff;
    border-radius: 40px;
    padding: 6px 6px 6px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 860px;
    margin: 28px 0 0;
}
.boxcar-search-field {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    border-right: 1px solid #E2E8F0;
    text-align: left;
}
.boxcar-search-field:nth-child(3) {
    border-right: none;
}
.boxcar-search-field label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #94A3B8;
    margin-bottom: 2px;
}
.boxcar-search-field select,
.boxcar-search-field input {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1E293B !important;
    height: auto !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
}
.boxcar-search-btn {
    background: var(--accent) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    font-size: .9rem !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none !important;
    cursor: pointer;
    transition: opacity 0.2s ease;
    height: 48px;
}
.boxcar-search-btn:hover {
    opacity: 0.95;
}

@media (max-width: 768px) {
    .boxcar-search-bar {
        grid-template-columns: 1fr;
        border-radius: var(--radius-lg);
        padding: 16px;
        gap: 16px;
    }
    .boxcar-search-field {
        border-right: none;
        padding: 0;
        border-bottom: 1px solid #E2E8F0;
        padding-bottom: 10px;
    }
    .boxcar-search-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- 05.2 BOXCAR HERO SECTION (CENTERED & LANDSCAPE BG) ---------- */
.boxcar-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 110px 0 130px;
    text-align: center;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}
.boxcar-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 11, 32, 0.5) 0%, rgba(5, 11, 32, 0.8) 100%);
    z-index: 1;
}
.boxcar-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.boxcar-hero__tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: #CBD5E1;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.boxcar-hero__title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 32px;
    line-height: 1.15;
}
.boxcar-hero__tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 8px;
}
.boxcar-hero__tab {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 8px;
    position: relative;
    transition: color 0.2s ease;
}
.boxcar-hero__tab:hover,
.boxcar-hero__tab.is-active {
    color: #ffffff;
}
.boxcar-hero__tab.is-active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffffff;
}
.boxcar-hero .boxcar-search-bar {
    margin-top: 10px;
    width: 100%;
}
.boxcar-hero__browse {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 36px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.boxcar-hero__categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.boxcar-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}
.boxcar-hero__pill:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}
.boxcar-hero__pill svg {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 640px) {
    .boxcar-hero__title {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }
    .boxcar-hero {
        padding: 60px 0 80px;
        min-height: auto;
    }
}

/* ---------- 12.6. BOXCAR İLETİŞİM SAYFASI ---------- */
.boxcar-map-section {
    width: 100%;
    height: 450px;
    background: #E2E8F0;
    overflow: hidden;
}
.boxcar-map-section iframe {
    display: block;
    width: 100%;
    height: 100%;
}
.boxcar-contact-page {
    padding-top: 64px;
    padding-bottom: 80px;
}
.boxcar-contact-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 64px;
    align-items: start;
}
.boxcar-contact-form-wrapper,
.boxcar-contact-sidebar {
    display: flex;
    flex-direction: column;
}
.boxcar-contact-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.boxcar-contact-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 16px;
}
.boxcar-contact-lead {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 32px;
}
.boxcar-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.boxcar-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.boxcar-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.boxcar-field label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.boxcar-field input,
.boxcar-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    background: #ffffff;
    font-size: 0.925rem;
    color: #050B20;
    outline: none;
    transition: all 0.2s ease;
}
.boxcar-field input:focus,
.boxcar-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(64, 95, 242, 0.08);
}
.boxcar-contact-btn {
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: var(--radius);
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s ease;
}
.boxcar-contact-btn:hover {
    background: var(--accent-dk);
}

/* Bilgi Kartları */
.boxcar-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.boxcar-info-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 4px 12px rgba(5, 11, 32, 0.02);
    transition: all 0.25s ease;
}
.boxcar-info-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 11, 32, 0.06);
}
.boxcar-info-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(64, 95, 242, 0.07);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.boxcar-info-icon-wrapper svg {
    width: 20px;
    height: 20px;
}
.boxcar-info-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.boxcar-info-details h3 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748B;
    letter-spacing: 0.05em;
}
.boxcar-info-details p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}
.boxcar-info-details a {
    color: inherit;
    text-decoration: none;
}
.boxcar-info-details a:hover {
    color: var(--accent);
}

@media (max-width: 900px) {
    .boxcar-contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
@media (max-width: 640px) {
    .boxcar-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .boxcar-map-section {
        height: 300px;
    }
}

/* ---------- 12.8 BOXCAR SATICI BİLGİLERİ (DEALER CARD) ---------- */
.boxcar-dealer-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.boxcar-dealer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.boxcar-dealer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(64, 95, 242, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.boxcar-avatar-svg {
    width: 24px;
    height: 24px;
}
.boxcar-dealer-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.boxcar-dealer-name {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
}
.boxcar-dealer-role {
    font-size: 0.775rem;
    color: #64748B;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.boxcar-dealer-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.boxcar-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: #475569;
}
.boxcar-meta-item .meta-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}
.boxcar-meta-item .meta-text {
    font-weight: 500;
}
.btn-show-phone {
    font-size: 0.775rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(64, 95, 242, 0.08);
    border: none;
    border-radius: var(--radius);
    padding: 4px 10px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.2s ease;
}
.btn-show-phone:hover {
    background: var(--accent);
    color: #ffffff;
}
.boxcar-dealer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.btn-message-dealer,
.btn-whatsapp-dealer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.925rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-message-dealer {
    background: var(--accent);
    color: #ffffff;
    border: none;
}
.btn-message-dealer:hover {
    background: var(--accent-dk);
}
.btn-whatsapp-dealer {
    background: #ffffff;
    color: #10B981;
    border: 1px solid #10B981;
}
.btn-whatsapp-dealer:hover {
    background: #10B981;
    color: #ffffff;
}
.btn-arrow-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}
.btn-message-dealer:hover .btn-arrow-icon,
.btn-whatsapp-dealer:hover .btn-arrow-icon {
    transform: translate(2px, -2px);
}
.boxcar-dealer-footer {
    border-top: 1px solid #E2E8F0;
    margin-top: 20px;
    padding-top: 16px;
    text-align: center;
}
.dealer-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s ease;
}
.dealer-footer-link:hover {
    color: var(--accent);
}
.link-arrow-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}
.dealer-footer-link:hover .link-arrow-icon {
    transform: translate(2px, -2px);
}

/* ---------- 12.9 ARAÇ KARŞILAŞTIRMA (VEHICLE COMPARE) ---------- */
.compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #ffffff;
    margin-top: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
}
.compare-table th, 
.compare-table td {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background-color 0.2s ease;
}
.compare-table tr:last-child td,
.compare-table tr:last-child th {
    border-bottom: none;
}
.compare-table th:last-child,
.compare-table td:last-child {
    border-right: none;
}

/* Sol taraftaki sabit başlık sütunu */
.compare-table .label-col {
    width: 180px;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    padding: 16px 24px;
    text-align: left;
    background: #FAFBFD;
    position: sticky;
    left: 0;
    z-index: 10;
    box-shadow: 2px 0 5px rgba(0,0,0,0.02);
    border-right: 1px solid var(--line);
}
.compare-table thead .label-col {
    background: #ffffff;
    z-index: 15;
}

/* Araç Sütunları */
.compare-table .vehicle-col {
    width: 280px;
    padding: 24px;
    vertical-align: top;
    background: #ffffff;
}
.compare-header-card {
    display: flex;
    flex-direction: column;
}
.compare-image-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}
.compare-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.compare-image-wrapper:hover .compare-image {
    transform: scale(1.04);
}

/* Kaldır Butonu (Köşede Yuvarlak Kapatma Butonu) */
.compare-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.compare-remove-btn .close-icon {
    width: 14px;
    height: 14px;
}
.compare-remove-btn:hover {
    background: #EF4444;
    color: #ffffff;
    border-color: #EF4444;
    transform: scale(1.08);
}

/* Araç Başlığı */
.compare-vehicle-title {
    display: block;
    margin-top: 14px;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}
.compare-vehicle-title:hover {
    color: var(--accent);
}

/* Hücre Değerleri */
.compare-table td {
    padding: 16px 24px;
    text-align: center;
    vertical-align: middle;
}
.compare-price {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
}
.compare-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1E293B;
}

/* Satır Renklendirmeleri */
.compare-table tbody tr:nth-child(even) td {
    background: #F8FAFC;
}
.compare-table tbody tr:nth-child(even) .label-col {
    background: #F1F5F9;
}
.compare-table tbody tr:hover td {
    background: rgba(64, 95, 242, 0.02) !important;
}

/* Eylem Hücresi (Detay Butonu) */
.compare-table .action-cell {
    padding: 24px;
}
.btn-view-compare {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(64, 95, 242, 0.08);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-view-compare:hover {
    background: var(--accent);
    color: #ffffff;
}
.btn-view-compare .btn-arrow-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}
.btn-view-compare:hover .btn-arrow-icon {
    transform: translate(2px, -2px);
}

/* ---------- 13. FOOTER (ALT BİLGİ) ---------- */
.site-footer { background: var(--navy); color: #94A3B8; margin-top: 64px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 40px;
}
.footer-title {
    color: #fff;
    font-size: 1rem;
    letter-spacing: .05em;
    margin-bottom: 16px;
}
.footer-col a { color: #94A3B8; display: block; padding: 5px 0; font-size: .9rem; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { margin-bottom: 8px; font-size: .9rem; }
.footer-col .footer-logo {
    display: inline-block;
    width: 210px;
    max-width: 100%;
    margin: -12px 0 8px;
    padding: 0;
    line-height: 0;
}
.site-logo--footer { width: 100%; }
.footer-bottom {
    border-top: 1px solid #1E293B;
    padding: 20px 0;
    font-size: .85rem;
    color: #64748B;
}

/* ---------- 14. RESPONSIVE ---------- */
@media (max-width: 1200px) {
    .vehicle-grid { grid-template-columns: repeat(3, 1fr); }
    .hero__inner { grid-template-columns: 1fr; }
    .brand-list { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .topbar { display: none; }
    .mainbar__inner { min-height: 64px; }
    .vehicle-layout { grid-template-columns: 1fr; }
    .vehicle-side { position: static; }
    .page-layout { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; justify-items: center; }
    
    .filters {
        position: fixed;
        inset: 0;
        z-index: 150;
        overflow-y: auto;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .filters.is-open { transform: translateX(0); }
    .filters-toggle { display: flex; justify-content: center; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-card { border-right: none; border-bottom: 1px solid var(--line); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    
    .mainnav {
        position: fixed;
        top: 64px;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(420px, 100%);
        overflow-y: auto;
        overscroll-behavior: contain;
        background:
            radial-gradient(circle at 100% 0, rgba(64, 95, 242, .16), transparent 35%),
            var(--ink);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 18px 20px 28px;
        box-shadow: -18px 20px 45px rgba(0, 0, 0, .35);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform .25s cubic-bezier(.4, 0, .2, 1), visibility 0s linear .25s;
        z-index: 90;
    }
    .mainnav.is-open { transform: translateX(0); visibility: visible; transition-delay: 0s; }
    .mainnav__link {
        min-height: 48px;
        padding: 13px 4px;
        border-bottom: 1px solid rgba(255,255,255,.09);
        border-radius: 0;
        font-size: 1rem;
    }
    .mainnav__link.is-active {
        padding-left: 12px;
        border: 0;
        border-left: 3px solid var(--accent);
        background: rgba(64, 95, 242, .12);
    }
    .hamburger {
        display: flex;
        z-index: 95;
        position: relative;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        transition: border-color .2s ease, background .2s ease;
    }
    .hamburger span { transition: transform .2s ease, opacity .2s ease; }
    .hamburger.is-open { border-color: rgba(64, 95, 242, .75); background: rgba(64, 95, 242, .14); }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu-backdrop.is-open {
        display: block;
        position: fixed;
        inset: 64px 0 0;
        z-index: 80;
        width: 100%;
        height: calc(100dvh - 64px);
        padding: 0;
        border: 0;
        background: rgba(3, 8, 17, .62);
        backdrop-filter: blur(2px);
    }
    .mobile-menu__utilities {
        display: grid;
        gap: 18px;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(255,255,255,.12);
    }
    .mobile-menu__section { display: grid; gap: 10px; }
    .mobile-menu__label {
        color: #7f8da3;
        font-size: .68rem;
        font-weight: 800;
        letter-spacing: .11em;
        text-transform: uppercase;
    }
    .mobile-lang-switcher {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
    }
    .mobile-lang-switcher a {
        display: grid;
        min-height: 42px;
        place-items: center;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 9px;
        color: #b8c3d2;
        font-size: .8rem;
        font-weight: 800;
    }
    .mobile-lang-switcher a.is-active {
        border-color: var(--accent);
        color: #fff;
        background: var(--accent);
    }
    .mobile-menu__account-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .mobile-menu__account-grid a {
        display: flex;
        min-height: 48px;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 11px 12px;
        border: 1px solid rgba(255,255,255,.11);
        border-radius: 10px;
        color: #e5eaf1;
        background: rgba(255,255,255,.035);
        font-size: .84rem;
        font-weight: 700;
    }
    .mobile-menu__account-grid a:first-child { grid-column: 1 / -1; }
    .mobile-menu__account-grid b { color: #7f8da3; font-size: 1rem; }
    .mobile-menu__account-grid em {
        display: inline-grid;
        min-width: 24px;
        height: 24px;
        place-items: center;
        padding: 0 6px;
        border-radius: 999px;
        color: #fff;
        background: var(--accent);
        font-size: .7rem;
        font-style: normal;
    }
    .mobile-menu__logout button {
        width: 100%;
        padding: 10px;
        border: 1px solid rgba(255,255,255,.11);
        border-radius: 9px;
        color: #b8c3d2;
        background: transparent;
        font-size: .8rem;
        font-weight: 700;
    }
    .mobile-menu__guest-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .mobile-menu__guest-actions .btn { justify-content: center; }
    .mobile-menu__contact {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,.12);
        color: #7f8da3;
        font-size: .75rem;
    }
    .mobile-menu__contact a { color: #fff; font-weight: 800; white-space: nowrap; }

    .hero-search { grid-template-columns: 1fr 1fr; }
    .hero-search__btn { grid-column: 1 / -1; }
    .post-grid { grid-template-columns: 1fr 1fr; }
    .brand-list { grid-template-columns: repeat(3, 1fr); }
    .steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .vehicle-grid { grid-template-columns: 1fr; }
    .post-grid { grid-template-columns: 1fr; }
    .brand-list { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr; }
    .hero { padding: 36px 0; }
    .hero__title { font-size: 2.1rem; }
    .hero-search { grid-template-columns: 1fr; }
    .site-logo--header { width: 158px; }
    .about-brand { align-items: flex-start; flex-direction: column; gap: 10px; padding: 18px; }
    .about-brand img { width: min(240px, 82%); }
    .about-brand span { max-width: none; text-align: left; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 36px 0; }
    .field-row { grid-template-columns: 1fr; }
    .vehicle-title { font-size: 1.6rem; }
}

/* ---------- 15. EK OLUŞTURULAN BOXCAR VE MİGARSYON CSS SINIFLARI ---------- */
.flash-message {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.flash-message--success {
    background: #DCFCE7;
    color: #15803D;
    border: 1px solid #86EFAC;
}
.flash-message--error {
    background: #FEE2E2;
    color: #B91C1C;
    border: 1px solid #FCA5A5;
}

.boxcar-page-header {
    background: #0F172A;
    color: #ffffff;
    padding: 32px 0;
    margin-bottom: 24px;
}
.boxcar-page-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 8px 0;
}
.boxcar-breadcrumb {
    font-size: 0.875rem;
    color: #94A3B8;
}
.boxcar-breadcrumb a {
    color: #CBD5E1;
    text-decoration: none;
}
.boxcar-breadcrumb a:hover {
    color: var(--accent);
}
.boxcar-breadcrumb .sep {
    margin: 0 8px;
    color: #64748B;
}

.boxcar-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}
@media (max-width: 992px) {
    .boxcar-layout-grid {
        grid-template-columns: 1fr;
    }
}

.boxcar-sidebar {
    background: #ffffff;
}
.boxcar-filter-box {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.boxcar-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}
.boxcar-filter-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
}
.boxcar-reset-link {
    font-size: 0.85rem;
    color: #EF4444;
    font-weight: 600;
    text-decoration: none;
}

.boxcar-filter-group {
    margin-bottom: 18px;
}
.boxcar-filter-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}
.boxcar-select, .boxcar-input, .boxcar-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: #0F172A;
    background: #ffffff;
    transition: border-color 0.2s;
}
.boxcar-select:focus, .boxcar-input:focus, .boxcar-textarea:focus {
    border-color: var(--accent);
    outline: none;
}
.boxcar-range-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}
.range-dash {
    color: #94A3B8;
}

.boxcar-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.boxcar-results-count {
    font-size: 0.95rem;
    color: #475569;
}
.boxcar-toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sort-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748B;
}

.boxcar-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.boxcar-empty-state {
    padding: 48px 24px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    color: #64748B;
}

.boxcar-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 36px;
}
@media (max-width: 992px) {
    .boxcar-detail-layout {
        grid-template-columns: 1fr;
    }
}

.vehicle-title-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vehicle-main-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}
.vehicle-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.v-pill {
    background: rgba(255,255,255,0.12);
    color: #E2E8F0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.825rem;
    font-weight: 600;
}

.gallery-main-frame {
    width: 100%;
    height: 460px;
    background: #000000;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.gallery-main-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-thumbs-row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
}
.gallery-thumb-btn {
    width: 90px;
    height: 65px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
}
.gallery-thumb-btn.is-active {
    border-color: var(--accent);
}
.gallery-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tramer-summary-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    padding: 16px 20px;
}
.tramer-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tramer-label {
    font-weight: 600;
    color: #475569;
}
.tramer-value {
    font-size: 1.1rem;
    color: var(--accent);
}

.specs-table-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}
.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.925rem;
}
.spec-label {
    color: #64748B;
}
.spec-value {
    font-weight: 700;
    color: #0F172A;
}

.boxcar-bidding-widget {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.bid-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.bids-badge-count {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748B;
}
.bid-countdown-box {
    background: #0F172A;
    color: #ffffff;
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.countdown-timer {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: #F97316;
}
.bid-price-box {
    margin-bottom: 20px;
}
.price-label {
    font-size: 0.85rem;
    color: #64748B;
    display: block;
    margin-bottom: 4px;
}
.price-amount {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}
.quick-bid-buttons {
    display: flex;
    gap: 8px;
}
.quick-bid-btn {
    flex: 1;
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    border-radius: var(--radius);
    padding: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s;
}
.quick-bid-btn:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.boxcar-auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.boxcar-auth-card {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.auth-card-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.auth-card-subtitle {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 24px;
}
.auth-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}
.auth-link:hover {
    text-decoration: underline;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-info-card {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
}
.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(64,95,242,0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.boxcar-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.boxcar-blog-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-card-thumb {
    height: 200px;
    display: block;
    overflow: hidden;
}
.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.blog-card-thumb:hover img {
    transform: scale(1.05);
}
.blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    margin: 8px 0;
    line-height: 1.4;
}
.blog-title a {
    color: #0F172A;
    text-decoration: none;
}
.blog-title a:hover {
    color: var(--accent);
}
.blog-read-more {
    margin-top: auto;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent);
    text-decoration: none;
}

.tag {
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius);
    white-space: nowrap;
}

.tag--success { background: #E3F0E9; color: var(--success); }

.tag--danger { background: #F6E4E3; color: var(--danger); }

.lang-switcher { display: flex; border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }

.lang-switcher__item {
    padding: 3px 9px;
    color: #B9BFC9;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    border-right: 1px solid var(--line-dark);
}

.lang-switcher__item:last-child { border-right: none; }

.lang-switcher__item:hover { color: #fff; }

.lang-switcher__item.is-active { background: var(--accent); color: #fff; }

.vehicle-card__specs {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    color: var(--text-muted);
    font-size: .85rem;
}

.vehicle-card__specs li + li::before { content: '·'; margin-right: 10px; color: var(--line); }

.field-error { color: var(--danger); font-size: .85rem; }

.page-lead { color: var(--text-muted); margin-bottom: 24px; max-width: 640px; }

.empty-note { color: var(--text-muted); }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(22, 24, 29, .94);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 24px;
}

.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }

.panel--flat { background: #fff; }

.spec-table { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }

.spec-table > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.spec-table > div:nth-child(odd) { background: transparent; }

.spec-table dt { color: var(--text-muted); }

.spec-table dd { margin: 0; font-weight: 700; text-align: right; }

.damage-diagram__legend { display: flex; gap: 14px; flex-wrap: wrap; font-size: .85rem; margin-top: 10px; }

.expertise-report { margin-bottom: 20px; }

.expertise-report h3 { font-size: 1rem; margin-bottom: 6px; }

.expertise-report small { color: var(--text-muted); font-weight: 400; text-transform: none; }

.tramer-box {
    border: 1px solid var(--line);
    border-left: 4px solid var(--success);
    border-radius: var(--radius);
    padding: 14px 16px;
}

.tramer-box--record { border-left-color: var(--warning); }

.tramer-box h3 { font-size: .95rem; margin-bottom: 6px; }

.tramer-box__amount { font-family: var(--font-head); font-size: 1.3rem; color: var(--warning); display: block; margin-bottom: 4px; }

.tramer-box p { margin: 0; }

.bid-box__dates { display: flex; flex-direction: column; gap: 6px; margin: 12px 0 18px; font-size: .9rem; color: #B9BFC9; }

.bid-box__winner { border-top: 1px solid var(--line-dark); padding-top: 12px; }

.bid-box__alert {
    background: var(--danger);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 8px 12px;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.bid-box__leading {
    background: var(--success);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 8px 12px;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.bid-form__hint { color: #8A919C; font-size: .8rem; margin: 8px 0 0; }

.bid-form__error { color: #FF8A80; font-size: .85rem; margin: 8px 0 0; }

.usage-source {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid #dbe3f0;
    border-radius: 16px;
    background: #f8faff;
}
.usage-source__head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.usage-source__head > span {
    flex: none;
    padding: 4px 8px;
    border-radius: 999px;
    color: #3152ce;
    background: #e9eeff;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.usage-source__head div { display: grid; gap: 2px; }
.usage-source__head strong { color: #152239; font-size: .9rem; }
.usage-source__head small { color: #69758a; font-size: .75rem; line-height: 1.4; }
.usage-source__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.usage-source__options--single { grid-template-columns: 1fr; }
.usage-source__option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 12px;
    border: 1px solid #cfd8e8;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.usage-source__option:hover { border-color: #5874df; }
.usage-source__option:has(input:checked),
.usage-source__option.is-selected {
    border-color: #3f5eea;
    background: #f2f5ff;
    box-shadow: 0 0 0 2px rgba(63, 94, 234, .12);
}
.usage-source__option input[type="radio"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.usage-source__icon {
    flex: none;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: #2aaf72;
    font-weight: 900;
}
.usage-source__icon--token { background: #263d9a; }
.usage-source__option > span:last-child { display: grid; gap: 2px; min-width: 0; }
.usage-source__option strong { color: #1b2941; font-size: .8rem; }
.usage-source__option small { color: #6b7689; font-size: .7rem; }
.usage-source__empty {
    padding: 11px 12px;
    border-radius: 10px;
    color: #9c2f26;
    background: #fff0ee;
    font-size: .78rem;
    line-height: 1.45;
}
.usage-source--compact {
    padding: 12px;
    margin: 12px 0;
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .18);
}
.usage-source--compact .usage-source__head > span { color: #dbe4ff; background: rgba(91, 119, 241, .3); }
.usage-source--compact .usage-source__head strong { color: #fff; }
.usage-source--compact .usage-source__head small { color: #b6c0d2; }
.usage-source--compact .usage-source__option { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .2); }
.usage-source--compact .usage-source__option:has(input:checked) { background: rgba(70, 96, 225, .25); border-color: #8298ff; }
.usage-source--compact .usage-source__option strong { color: #fff; }
.usage-source--compact .usage-source__option small { color: #bec8d9; }
.bid-form__usage-note {
    margin: 12px 0;
    padding: 10px 12px;
    border-radius: 10px;
    color: #b9f2d2;
    background: rgba(42, 175, 114, .15);
    font-size: .75rem;
    line-height: 1.45;
}

@media (max-width: 620px) {
    .usage-source__options { grid-template-columns: 1fr; }
}

.bid-history__item.is-viewer { background: #FBEEE5; margin: 0 -12px; padding-left: 12px; padding-right: 12px; }

.bid-history__empty { color: var(--text-muted); padding: 8px 0; }

.compare-vehicle { display: block; color: var(--paper); }

.compare-vehicle:hover { color: var(--accent); }

.compare-vehicle img { margin-bottom: 10px; border: 1px solid var(--line-dark); }

.compare-remove { background: none; border: none; color: #8A919C; font-size: .8rem; margin-top: 8px; padding: 0; }

.compare-remove:hover { color: var(--danger); }

/* ---------- 12. HESAP ---------- */
.account-list { list-style: none; margin: 0; padding: 0; }

.account-list__item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.account-list__item:last-child { border-bottom: none; }

.account-list__item > a { font-weight: 700; flex: 1; min-width: 200px; }

.account-list__bid { color: var(--text-muted); font-size: .9rem; }

.form-grid { display: flex; flex-direction: column; gap: 14px; max-width: 480px; }

.form-grid .btn { align-self: flex-start; }

.form-grid .btn--block { align-self: stretch; }

.flash {
    border: 1px solid;
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 16px;
}

.flash--success { background: #E3F0E9; border-color: var(--success); color: var(--success); }

.flash--warning { background: #F7EEDD; border-color: var(--warning); color: var(--warning); }

.auth-text { color: var(--text-muted); }

.auth-link--btn { background: none; border: none; color: var(--text-muted); display: block; margin: 14px auto 0; }


/* ---------- GERİ YÜKLENEN ORİJİNAL TASARIM BLOKLARI ---------- */

/* Sayfalama */
.pagination { margin-top: 32px; display: flex; justify-content: center; }
.pagination__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; flex-wrap: wrap; }
.pagination__item span,
.pagination__item a {
    display: flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px;
    border: 1px solid var(--line); border-radius: var(--radius);
    background: #fff; color: var(--text);
    font-family: var(--font-head); font-size: .9rem; font-weight: 600;
    text-decoration: none; transition: all .2s ease;
}
.pagination__item a:hover { border-color: var(--accent); color: var(--accent); }
.pagination__item.is-active span { background: var(--accent); border-color: var(--accent); color: #fff; }
.pagination__item.is-disabled span { color: var(--text-muted); background: var(--paper-2); cursor: default; }

/* Blog makale sayfası */
.blog-article { max-width: 820px; }
.blog-article__date { display: block; color: var(--text-muted); font-size: .9rem; margin: 8px 0 24px; }
.blog-article__cover { width: 100%; height: auto; border-radius: var(--radius-lg); margin-bottom: 32px; }
.blog-recent { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.blog-recent__list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 14px; }
.blog-recent__list li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.blog-recent__list a { font-weight: 600; color: var(--text); text-decoration: none; }
.blog-recent__list a:hover { color: var(--accent); }
.blog-recent__list time { color: var(--text-muted); font-size: .85rem; white-space: nowrap; }
.back-link { display: inline-block; margin-bottom: 20px; color: var(--text-muted); font-weight: 600; text-decoration: none; }
.back-link:hover { color: var(--accent); }

/* Post kartı devam linki */
.post-card__more { display: inline-block; margin-top: 12px; color: var(--accent); font-weight: 700; font-size: .9rem; text-decoration: none; }
.post-card__more:hover { text-decoration: underline; }

/* Teknik özellik kolonu + ekspertiz bilgi kolonu */
.tech-column { min-width: 0; }
.expertise-info { min-width: 0; }

/* Karşılaştır butonu aktif durumu */
.compare-btn.is-active { border-color: var(--accent); color: var(--accent); }
.fav-btn.is-active { border-color: var(--accent); color: var(--accent); }


/* Izgara çocukları taşma koruması */
.page-content { min-width: 0; }
.vehicle-main { min-width: 0; }

/* Dönüşüm sonrası tamamlanan ortak bloklar */
.topbar__link--btn {
    appearance: none;
    font-family: inherit;
    cursor: pointer;
}

.footer-col--about { max-width: 320px; }
.footer-social { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.footer-col .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    color: #fff;
}
.footer-col .footer-social a:hover { border-color: var(--accent); background: var(--accent); color: #fff; }
.footer-hours { color: #CBD5E1; }

.post-card__excerpt {
    margin: 0;
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.65;
}

.empty-state--404 {
    max-width: 720px;
    margin: 56px auto;
}

body.has-lightbox { overflow: hidden; }
.lightbox {
    cursor: default;
}
.lightbox__backdrop {
    position: absolute;
    inset: 0;
    cursor: zoom-out;
}
.lightbox img { position: relative; z-index: 1; }
.lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: var(--radius);
    background: #111827;
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
}
.lightbox__close:hover,
.lightbox__close:focus-visible { background: var(--accent); border-color: var(--accent); outline: none; }

.account-form-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.form-grid .account-form-actions .btn { align-self: auto; }

@media (max-width: 640px) {
    .stats-grid { grid-template-columns: 1fr; }
    .topbar__right { gap: 8px; }
    .vehicle-grid,
    .page-layout .vehicle-grid { grid-template-columns: 1fr; }
    .footer-col--about { max-width: none; }
    .account-list__item { align-items: flex-start; }
    .account-list__item > a { flex-basis: 100%; }
    .account-form-actions { flex-direction: column; }
    .account-form-actions .btn { width: 100%; }
    .blog-recent__list li { align-items: flex-start; }
}

@media (max-width: 420px) {
    .topbar__contact { display: none; }
    .topbar__inner { justify-content: center; }
}

@media (min-width: 641px) and (max-width: 900px) {
    .vehicle-grid,
    .page-layout .vehicle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .page-layout .vehicle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1201px) {
    .page-layout .vehicle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Platform üyelik, sözleşme ve işlem akışları */
.field--full { grid-column: 1 / -1; }
.form-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-help, .field small { color: var(--muted, #667085); font-size: .84rem; }
.check-row { display: flex; align-items: flex-start; gap: .65rem; font-size: .88rem; line-height: 1.45; }
.check-row input { flex: 0 0 auto; margin-top: .2rem; width: 1rem; height: 1rem; }
.check-row a { color: var(--accent, #e73c31); font-weight: 700; text-decoration: underline; }
.contract-acceptance { display: grid; gap: .8rem; border: 1px solid #d8dee8; border-radius: 12px; padding: 1rem; background: #f8fafc; }
.contract-acceptance legend { padding: 0 .35rem; font-weight: 800; }
.bid-consent {
    display: grid;
    gap: .55rem;
    margin-top: 1rem;
    padding: .8rem;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 10px;
    background: rgba(255, 255, 255, .035);
}
.bid-form .bid-consent__check {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin: 0;
    color: #E2E8F0;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.5;
    text-transform: none;
    cursor: pointer;
}
.bid-consent__check input {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    margin: .12rem 0 0;
    accent-color: var(--accent);
}
.bid-consent__details {
    padding-top: .45rem;
    border-top: 1px solid rgba(148, 163, 184, .16);
}
.bid-consent__details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9DABFF;
    font-size: .68rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}
.bid-consent__details summary::-webkit-details-marker { display: none; }
.bid-consent__details[open] summary span { transform: rotate(180deg); }
.bid-consent__details p {
    margin: .55rem 0 .35rem;
    color: #94A3B8;
    font-size: .65rem;
    line-height: 1.45;
}
.bid-consent__details ul {
    display: grid;
    gap: .3rem;
    margin: 0;
    padding-left: 1rem;
}
.bid-consent__details li { color: #64748B; font-size: .65rem; }
.bid-consent__details a { color: #9DABFF; font-weight: 700; text-decoration: underline; }
.legal-center, .legal-document, .packages-page, .listing-create-page, .transaction-page { padding-top: 2rem; padding-bottom: 4rem; }
.legal-notice { padding: 1rem 1.1rem; border-left: 4px solid #f59e0b; background: #fffbeb; color: #7c4a03; border-radius: 0 10px 10px 0; line-height: 1.55; }
.legal-notice--strong { margin-top: 1.5rem; border-left-color: #e73c31; background: #fff4f2; color: #7f1d1d; }
.legal-list { display: grid; gap: .7rem; margin-top: 1.5rem; }
.legal-list__item { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; background: #fff; border: 1px solid #e4e7ec; border-radius: 12px; color: #101828; font-weight: 750; transition: .2s ease; }
.legal-list__item:hover { border-color: #e73c31; transform: translateY(-1px); }
.legal-list__item small { color: #667085; font-weight: 500; }
.legal-document__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.legal-document__head h1 { margin: 0 0 .35rem; }
.legal-document__head p, .legal-document__record { color: #667085; font-size: .86rem; }
.legal-prose { margin-top: 1.5rem; line-height: 1.75; }
.page-heading-row, .panel-heading-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.token-pill { display: inline-flex; align-items: center; padding: .65rem 1rem; border-radius: 999px; background: #101828; color: #fff; font-weight: 800; white-space: nowrap; }
.packages-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    padding: 18px 0 24px;
}
.packages-hero__copy { max-width: 720px; }
.packages-hero__copy h1 { margin-top: .3rem; }
.packages-hero__copy p { margin: .55rem 0 0; color: #475467; line-height: 1.6; }
.packages-hero__eyebrow {
    color: var(--accent);
    font-size: .8rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.token-balance-card {
    display: grid;
    grid-template-columns: 1fr auto;
    min-width: 190px;
    padding: .85rem 1rem;
    border: 1px solid #29364d;
    border-radius: 14px;
    color: #fff;
    background: #101828;
    box-shadow: 0 10px 25px rgba(16, 24, 40, .14);
}
.token-balance-card span { grid-column: 1 / -1; margin-bottom: .15rem; color: #b4bfce; font-size: .78rem; font-weight: 600; }
.token-balance-card strong { font-size: 1.45rem; line-height: 1; }
.token-balance-card small { align-self: end; color: #dce3ec; font-size: .78rem; font-weight: 600; }
.token-cost-guide {
    display: grid;
    grid-template-columns: minmax(260px, 1.1fr) minmax(430px, 1.5fr);
    align-items: center;
    gap: 24px;
    padding: 20px 22px;
    border: 1px solid #202c40;
    border-radius: 18px;
    color: #fff;
    background:
        radial-gradient(circle at 95% 0, rgba(64, 95, 242, .25), transparent 38%),
        #101828;
}
.token-cost-guide__intro { display: flex; align-items: flex-start; gap: 13px; }
.token-cost-guide__mark {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: var(--accent);
    font-weight: 900;
}
.token-cost-guide h2 { margin: 0 0 .35rem; color: #fff; font-size: 1.08rem; }
.token-cost-guide p { margin: 0; color: #bec7d3; font-size: .86rem; font-weight: 500; line-height: 1.55; }
.token-cost-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}
.token-cost-list > div {
    display: grid;
    min-width: 0;
    gap: 7px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 11px;
    background: rgba(255,255,255,.045);
}
.token-cost-list dt { color: #d2d9e3; font-size: .78rem; font-weight: 600; line-height: 1.45; }
.token-cost-list dd { margin: 0; color: #fff; font-size: .78rem; font-weight: 600; }
.token-cost-list dd strong { margin-right: 2px; color: #9cacf9; font-size: 1.32rem; }
.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin: 1.5rem 0; }
.package-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dfe3ea;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(16,24,40,.055);
}
.package-card.is-popular { border-color: #aab6ff; box-shadow: 0 16px 38px rgba(64, 95, 242, .12); }
.package-card.is-current { border-color: #6ce9a6; box-shadow: 0 16px 38px rgba(16, 185, 129, .1); }
.package-card__ribbon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 0 17px 0 11px;
    color: #fff;
    background: var(--accent);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .02em;
}
.package-card.is-current .package-card__ribbon { background: #079455; }
.package-card__head {
    display: flex;
    min-height: 108px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 26px 22px 20px;
    border-bottom: 1px solid #e9edf3;
    background: linear-gradient(150deg, #fff 35%, #f5f7fb 100%);
}
.package-card:is(.is-popular, .is-current) .package-card__head { padding-top: 38px; }
.package-card__head > div:first-child > small {
    color: #536176;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.package-card__head h2 { margin: .22rem 0 0; font-size: 1.4rem; }
.package-price { display: flex; align-items: baseline; gap: 3px; color: #f04438; text-align: right; white-space: nowrap; }
.package-price strong { font-size: 1.42rem; }
.package-price small { color: #536176; font-size: .78rem; font-weight: 600; }
.package-price.is-free strong { color: #079455; font-size: 1.15rem; }
.package-card__description { min-height: 76px; margin: 0; padding: 19px 22px 13px; color: #344054; font-size: .95rem; font-weight: 500; line-height: 1.6; }
.package-card__section-label {
    margin: 7px 22px 8px;
    color: #667085;
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.package-benefits {
    display: grid;
    margin: 0 22px 13px;
    overflow: hidden;
    border: 1px solid #e8ebf0;
    border-radius: 12px;
    background: #fff;
}
.package-benefits > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 11px 12px;
    border-bottom: 1px solid #eef0f4;
}
.package-benefits > div:last-child { border-bottom: 0; }
.package-benefits dt { color: #344054; font-family: var(--font-head); font-size: .82rem; font-weight: 650; line-height: 1.4; }
.package-benefits dt small { display: block; margin-top: 3px; color: #7b8798; font-family: var(--font-body); font-size: .7rem; font-weight: 550; }
.package-benefits dd { display: flex; align-items: baseline; gap: 4px; margin: 0; color: #536176; font-size: .74rem; font-weight: 650; white-space: nowrap; }
.package-benefits dd strong { color: #101828; font-size: 1.12rem; }
.package-benefits > div.is-token { background: #f3f5ff; }
.package-benefits > div.is-token dt,
.package-benefits > div.is-token dd strong { color: #3448b9; }
.badge-list { display: flex; flex-wrap: wrap; gap: .45rem; margin: .5rem 0; }
.package-card .badge-list { min-height: 38px; margin: 0 22px 15px; }
.member-badge { display: inline-flex; padding: .4rem .72rem; border-radius: 999px; font-size: .82rem; font-weight: 800; }
.member-badge--membership { color: #6941c6; background: #f4ebff; border: 1px solid #e9d7fe; }
.member-badge--trust { color: #067647; background: #ecfdf3; border: 1px solid #abefc6; }
.package-order-form {
    display: grid;
    gap: .8rem;
    margin-top: auto;
    padding: 18px 22px 22px;
    border-top: 1px solid #eef0f4;
    background: #fbfcfd;
}
.package-consent {
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid #e0e5ed;
    border-radius: 11px;
    background: #fff;
}
.package-consent__title { margin: 0 2px 5px; color: #475467; font-family: var(--font-head); font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.package-consent__item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: flex-start;
    gap: 8px;
    padding: 9px 7px;
    border-radius: 8px;
    cursor: pointer;
}
.package-consent__item:hover { background: #f6f7f9; }
.package-consent__item > input[type="checkbox"] { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--accent); }
.package-consent__item span { min-width: 0; }
.package-consent__item a { color: #2941b8; font-family: var(--font-head); font-size: .82rem; font-weight: 750; line-height: 1.45; }
.package-consent__item small { display: block; margin-top: 3px; color: #59677a; font-size: .71rem; font-weight: 500; line-height: 1.5; }
.package-payment { gap: 12px; padding: 14px; }
.package-payment-fields { display: grid; gap: 11px; }
.package-payment-field { display: grid; gap: 6px; min-width: 0; color: #344054; font-size: .78rem; font-weight: 750; }
.package-payment-field > span { line-height: 1.35; }
.package-payment-field select,
.package-payment-field input[type="text"],
.package-payment-field input[type="file"],
.package-payment-field textarea {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #fff;
    color: #101828;
    font: inherit;
    font-weight: 550;
}
.package-payment-field select,
.package-payment-field input[type="text"],
.package-payment-field textarea { padding: 10px 11px; }
.package-payment-field textarea { min-height: 76px; resize: vertical; }
.package-payment-field input[type="file"] { padding: 6px; cursor: pointer; }
.package-payment-field input[type="file"]::file-selector-button {
    margin-right: 9px;
    padding: 7px 10px;
    border: 0;
    border-radius: 6px;
    background: #eef2ff;
    color: #3448b9;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}
.package-payment-field select:focus,
.package-payment-field input:focus,
.package-payment-field textarea:focus { border-color: #8098f9; outline: 3px solid rgba(68, 76, 231, .12); }
.package-payment-field small { color: #667085; font-size: .69rem; font-weight: 500; line-height: 1.45; }
.package-activation-note { color: #59677a; font-size: .72rem; font-weight: 500; line-height: 1.5; text-align: center; }
.package-card > .btn { width: calc(100% - 44px); margin: auto 22px 22px; }
.package-explainer {
    display: grid;
    grid-template-columns: minmax(190px, .5fr) minmax(0, 1.5fr);
    align-items: center;
    gap: 24px;
    margin-top: 1.5rem;
    border-left: 4px solid #7f56d9;
    background: #faf9ff;
}
.package-explainer h2,
.package-explainer p { margin: 0; }
.package-explainer p { color: #475467; line-height: 1.65; }
.quota-strip { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; margin: 1rem 0 1.5rem; padding: 1rem; background: #101828; color: #fff; border-radius: 12px; }
.listing-form { display: grid; gap: 1.25rem; }
.vehicle-catalog { overflow: hidden; }
.vehicle-catalog__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    margin: -22px -22px 1.1rem;
    padding: 1.35rem 1.4rem;
    border-bottom: 1px solid #e5eaf1;
    background: linear-gradient(125deg, #f8fafc 0%, #edf2ff 100%);
}
.vehicle-catalog__head h2 { margin: .18rem 0 .3rem; }
.vehicle-catalog__head p { max-width: 690px; margin: 0; color: #667085; font-size: .88rem; line-height: 1.55; }
.vehicle-catalog__eyebrow {
    color: var(--accent);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.vehicle-catalog__badge {
    flex: 0 0 auto;
    padding: .55rem .8rem;
    border: 1px solid #cbd5ff;
    border-radius: 999px;
    color: #2948d7;
    background: #fff;
    box-shadow: 0 5px 15px rgba(41, 72, 215, .08);
    font-size: .76rem;
    font-weight: 800;
    white-space: nowrap;
}
.vin-lookup {
    display: grid;
    grid-template-columns: auto minmax(180px, 1fr) minmax(330px, .85fr);
    align-items: center;
    gap: 1rem;
    margin-bottom: .65rem;
    padding: .9rem 1rem;
    border: 1px solid #dce3f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(16, 24, 40, .045);
}
.vin-lookup__icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: #101828;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
}
.vin-lookup__copy { display: grid; gap: .18rem; }
.vin-lookup__copy strong { color: #101828; }
.vin-lookup__copy small { color: #667085; line-height: 1.4; }
.vin-lookup__action { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .55rem; }
.vin-lookup__action input {
    min-width: 0;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.vin-lookup__action .btn { white-space: nowrap; }
.catalog-status {
    min-height: 1.25rem;
    margin: 0 0 .9rem;
    color: #667085;
    font-size: .78rem;
    font-weight: 650;
}
.catalog-status::before {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: .4rem;
    border-radius: 50%;
    background: #98a2b3;
    content: "";
}
.catalog-status.is-loading::before { background: #f59e0b; animation: catalog-pulse 1s ease-in-out infinite; }
.catalog-status.is-success { color: #067647; }
.catalog-status.is-success::before { background: #12b76a; }
.catalog-status.is-error { color: #b42318; }
.catalog-status.is-error::before { background: #f04438; }
@keyframes catalog-pulse { 50% { opacity: .28; } }
.catalog-field {
    padding: .8rem;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    background: #f8fafc;
}
.catalog-field .catalog-search {
    padding-top: .62rem;
    padding-bottom: .62rem;
    border-color: #d0d5dd;
    background: #fff;
    font-size: .85rem;
}
.catalog-field select { background-color: #fff; }
.catalog-field select:disabled,
.catalog-field input:disabled { color: #98a2b3; background-color: #f2f4f7; cursor: not-allowed; }
.catalog-field small { min-height: 1.2em; }
.damage-form-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: .85rem; }
.payment-options { display: grid; gap: .55rem; }
.field-label { font-weight: 700; }
.vehicle-videos { margin-top: 1.25rem; }
.vehicle-video { width: 100%; max-height: 520px; border-radius: 12px; background: #000; }
.account-summary-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: .8rem; margin-bottom: 1.25rem; }
.account-summary-card { display: grid; gap: .35rem; padding: 1rem; border-radius: 12px; background: #101828; color: #fff; }
.account-summary-card span { font-size: .78rem; color: #b9c0ce; }
.account-summary-card strong { font-size: 1.05rem; }
.account-summary-card a { color: #ffb3ad; font-size: .8rem; }
.notification-list { display: grid; gap: .75rem; }
.notification-item { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.15rem; border: 1px solid #e4e7ec; border-radius: 12px; background: #fff; }
.notification-item.is-unread { border-left: 4px solid #e73c31; }
.notification-item h2 { font-size: 1rem; margin: 0 0 .3rem; }
.notification-item p { margin: 0 0 .35rem; color: #475467; }
.notification-item time { font-size: .75rem; color: #98a2b3; }
.notification-item__actions { display: flex; align-items: center; gap: .5rem; }
.transaction-hero { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; padding: 1.4rem; color: #fff; background: #101828; border-radius: 16px; }
.transaction-hero h1 { color: #fff; margin: .25rem 0; }
.transaction-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.25rem; margin-bottom: 1.25rem; }
.detail-list { display: grid; gap: .8rem; }
.detail-list > div { display: grid; grid-template-columns: 150px 1fr; gap: 1rem; border-bottom: 1px solid #eef0f4; padding-bottom: .65rem; }
.detail-list dt { color: #667085; }
.detail-list dd { margin: 0; font-weight: 650; }
.process-list { display: grid; gap: .7rem; line-height: 1.55; }
.btn--danger { background: #b42318; color: #fff; border-color: #b42318; }

@media (max-width: 960px) {
    .package-grid, .form-grid--3, .damage-form-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .account-summary-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .token-cost-guide { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .packages-hero { align-items: stretch; flex-direction: column; gap: 16px; padding-top: 12px; }
    .token-balance-card { width: 100%; min-width: 0; }
    .token-cost-guide { gap: 16px; padding: 17px; }
    .token-cost-list { grid-template-columns: 1fr; }
    .token-cost-list > div { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; }
    .package-card__description { min-height: 0; }
    .package-explainer { grid-template-columns: 1fr; gap: 8px; }
    .vehicle-catalog__head { align-items: flex-start; flex-direction: column; margin: -16px -16px 1rem; padding: 1.1rem; }
    .vehicle-catalog__badge { white-space: normal; }
    .vin-lookup { grid-template-columns: auto 1fr; align-items: start; padding: .85rem; }
    .vin-lookup__action { grid-column: 1 / -1; grid-template-columns: 1fr; }
    .vin-lookup__action .btn { width: 100%; }
    .package-grid, .form-grid--3, .damage-form-grid, .transaction-grid, .account-summary-grid { grid-template-columns: 1fr; }
    .page-heading-row, .panel-heading-row, .notification-item, .transaction-hero, .legal-document__head { align-items: flex-start; flex-direction: column; }
    .detail-list > div { grid-template-columns: 1fr; gap: .25rem; }
}
.cookie-banner {
    position: fixed;
    z-index: 1200;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1060px;
    margin: 0 auto;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 15px;
    background: #121a2d;
    color: #fff;
    box-shadow: 0 22px 60px rgba(7, 16, 35, .28);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; margin-bottom: 4px; font-size: .83rem; }
.cookie-banner p { max-width: 690px; margin: 0; color: #c9d0dd; font-size: .68rem; line-height: 1.55; }
.cookie-banner p a { color: #fff; text-decoration: underline; }
.cookie-banner > div:last-child { display: flex; flex: 0 0 auto; gap: 8px; }
.cookie-banner .button { white-space: nowrap; }
.package-payment-instructions {
    display: grid;
    gap: 4px;
    padding: 11px;
    border-radius: 9px;
    background: #f6f8fc;
    font-size: .68rem;
}
.package-payment-instructions code { padding: 5px 7px; border-radius: 6px; background: #fff; color: #263d84; overflow-wrap: anywhere; }
.package-payment-instructions small { color: #697386; line-height: 1.45; }
.page-title-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 18px; }
.page-title-row .page-title { margin: 0; }

@media (max-width: 720px) {
    .cookie-banner { align-items: stretch; flex-direction: column; gap: 13px; right: 12px; bottom: 12px; left: 12px; }
    .cookie-banner > div:last-child { display: grid; grid-template-columns: 1fr 1fr; }
}
