@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --green: #2eb92e;
  --green-dark: #1a9e1a;
  --green-light: #f0fbf0;
  --yellow: #f59e0b;
  --yellow-light: #fffbeb;
  --red: #e53e3e;
  --red-light: #fff5f5;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow: 0 2px 12px rgba(0,0,0,0.09);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Sora', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); background: var(--gray-100); color: var(--gray-800); line-height: 1.6; min-height: 100vh; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font); }
img { max-width: 100%; display: block; }

/* NAVBAR */
.navbar { background: var(--white); border-bottom: 2px solid var(--green); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; gap: 16px; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; color: var(--green); flex-shrink: 0; }
.brand-icon { font-size: 1.5rem; }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-user { font-size: 0.82rem; color: var(--gray-500); font-weight: 500; }
.nav-toggle { display: none; font-size: 1.5rem; padding: 4px; color: var(--gray-600); margin-left: auto; }
.nav-mobile { display: none; padding: 14px 24px; gap: 10px; border-top: 1px solid var(--gray-100); flex-direction: column; background: var(--white); }
@media (max-width: 640px) { .nav-actions { display: none; } .nav-toggle { display: block; } .nav-mobile.open { display: flex; } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.85rem; transition: all 0.15s; cursor: pointer; border: 2px solid transparent; white-space: nowrap; letter-spacing: 0.02em; text-transform: uppercase; }
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(46,185,46,0.3); }
.btn-ghost { background: transparent; color: var(--gray-500); border-color: var(--gray-300); }
.btn-ghost:hover { background: var(--gray-100); }
.btn-danger { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-danger:hover { background: #c53030; }
.btn-sm { padding: 7px 14px; font-size: 0.75rem; }

/* PAGE HEADER */
.page-header { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 20px 0 16px; }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.page-title { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--gray-900); }
.page-sub { margin-top: 2px; font-size: 0.85rem; color: var(--gray-400); }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.search-input { padding: 9px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200); background: var(--gray-50); color: var(--gray-800); font-size: 0.85rem; width: 210px; font-family: var(--font); transition: border-color 0.15s; }
.search-input:focus { outline: none; border-color: var(--green); background: var(--white); }
.filter-select { padding: 9px 12px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200); background: var(--gray-50); color: var(--gray-700); font-size: 0.85rem; font-family: var(--font); cursor: pointer; }
.filter-select:focus { outline: none; border-color: var(--green); }

/* STATS BAR */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); margin-bottom: 24px; }
.stats-grid { display: flex; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.stat-item { flex: 1; display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-right: 1px solid var(--gray-100); }
.stat-item:last-child { border-right: none; }
.stat-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.stat-green .stat-dot { background: var(--green); }
.stat-yellow .stat-dot { background: var(--yellow); }
.stat-red .stat-dot { background: var(--red); }
.stat-label { font-size: 0.72rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.stat-value { font-size: 1.4rem; font-weight: 800; color: var(--gray-800); line-height: 1; display: block; }
.stat-green .stat-value { color: var(--green); }
.stat-yellow .stat-value { color: var(--yellow); }
.stat-red .stat-value { color: var(--red); }

/* MAIN */
.main-content { padding: 0 0 60px; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; }
.container-detail { max-width: 1200px; }

/* CAR CARDS */
.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.car-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; border: 1px solid var(--gray-200); }
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-image-wrap { position: relative; width: 100%; padding-top: 58%; background: var(--gray-100); overflow: hidden; }
.card-image-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.car-card:hover .card-image-wrap img { transform: scale(1.04); }
.no-photo { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; color: var(--gray-300); }
.no-photo-icon { font-size: 3rem; }
.card-status { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.status-disponivel-badge { background: var(--green); color: white; }
.status-reservado-badge { background: var(--yellow); color: white; }
.status-vendido-badge { background: var(--red); color: white; }
.card-body { padding: 16px 18px 12px; flex: 1; display: flex; flex-direction: column; }
.card-title { font-size: 1.05rem; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: 0.01em; }
.card-model { font-size: 0.82rem; color: var(--gray-500); margin-top: 2px; font-weight: 500; }
.card-divider { height: 1px; background: var(--gray-100); margin: 12px 0; }
.card-specs { display: flex; gap: 14px; flex-wrap: wrap; }
.card-spec { display: flex; align-items: center; gap: 4px; font-size: 0.78rem; color: var(--gray-500); font-weight: 500; }
.card-plate { display: inline-block; background: var(--gray-100); color: var(--gray-600); font-weight: 700; font-size: 0.75rem; padding: 3px 10px; border-radius: 6px; margin-top: 8px; letter-spacing: 0.12em; border: 1px solid var(--gray-200); }
.card-price-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--gray-100); }
.card-price-label { font-size: 0.68rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.card-sell-price { font-size: 1.3rem; font-weight: 800; color: var(--gray-900); line-height: 1; }
.card-buy-price { font-size: 0.75rem; color: var(--gray-400); text-align: right; }
.card-footer { padding: 12px 18px 16px; display: flex; flex-direction: column; gap: 8px; }
.btn-card-primary { width: 100%; padding: 13px; background: var(--green); color: white; border: none; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 800; cursor: pointer; transition: all 0.15s; font-family: var(--font); letter-spacing: 0.06em; text-transform: uppercase; text-align: center; display: block; }
.btn-card-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(46,185,46,0.35); }
.card-actions-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.btn-card-sm { padding: 8px 4px; border-radius: var(--radius-sm); font-size: 0.72rem; font-weight: 700; cursor: pointer; transition: all 0.15s; font-family: var(--font); text-transform: uppercase; text-align: center; border: 1.5px solid var(--gray-200); color: var(--gray-600); background: var(--white); }
.btn-card-sm:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.btn-card-sm.danger:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }

/* STATUS BADGE */
.status-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.status-badge.disponivel { background: var(--green-light); color: var(--green); }
.status-badge.reservado { background: var(--yellow-light); color: #b45309; }
.status-badge.vendido { background: var(--red-light); color: var(--red); }

/* EMPTY STATE */
.empty-state { text-align: center; padding: 80px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.empty-icon { font-size: 4rem; opacity: 0.25; }
.empty-state h3 { font-size: 1.2rem; font-weight: 700; color: var(--gray-500); }
.empty-state p { color: var(--gray-400); font-size: 0.875rem; }

/* MODALS */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.modal { background: var(--white); border-radius: var(--radius); width: 100%; max-width: 400px; box-shadow: var(--shadow-lg); overflow: hidden; }
.modal-sm { max-width: 360px; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px 16px; border-bottom: 1px solid var(--gray-100); }
.modal-header h3 { font-size: 1rem; font-weight: 700; }
.modal-close { color: var(--gray-400); font-size: 1.1rem; padding: 4px; border-radius: 6px; }
.modal-close:hover { color: var(--gray-700); }
.modal-body { padding: 20px 24px 24px; }
.modal-car-name { font-weight: 600; color: var(--gray-600); margin-bottom: 14px; font-size: 0.875rem; }
.modal-actions { display: flex; gap: 8px; margin-top: 18px; justify-content: flex-end; }
.text-muted { color: var(--gray-500); font-size: 0.84rem; margin-top: 6px; }
.status-options { display: flex; flex-direction: column; gap: 8px; }
.status-opt { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 600; transition: all 0.15s; cursor: pointer; border: 2px solid transparent; }
.status-opt .status-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.status-disponivel { background: var(--green-light); color: var(--green); border-color: rgba(46,185,46,0.2); }
.status-disponivel:hover { border-color: var(--green); }
.status-disponivel .status-dot { background: var(--green); }
.status-reservado { background: var(--yellow-light); color: #b45309; border-color: rgba(245,158,11,0.2); }
.status-reservado:hover { border-color: var(--yellow); }
.status-reservado .status-dot { background: var(--yellow); }
.status-vendido { background: var(--red-light); color: var(--red); border-color: rgba(229,62,62,0.2); }
.status-vendido:hover { border-color: var(--red); }
.status-vendido .status-dot { background: var(--red); }

/* TOAST */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--gray-900); color: white; padding: 12px 20px; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600; z-index: 999; opacity: 0; transform: translateY(8px); transition: all 0.22s; pointer-events: none; max-width: 320px; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: var(--green); }
.toast.error { background: var(--red); }
.toast.warning { background: var(--yellow); color: var(--gray-900); }

/* FORM */
.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); padding: 24px; margin-bottom: 16px; }
.form-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-100); }
.form-card-icon { font-size: 1.2rem; }
.form-card-header h2 { font-size: 0.9rem; font-weight: 800; color: var(--gray-700); text-transform: uppercase; letter-spacing: 0.05em; }
.form-card-header small { font-size: 0.78rem; color: var(--gray-400); margin-left: 8px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.75rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; }
.required { color: var(--red); }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--gray-800); background: var(--white); transition: border-color 0.15s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,185,46,0.1); }
.form-group textarea { resize: vertical; min-height: 80px; }
.input-money-wrap { position: relative; display: flex; align-items: center; }
.money-prefix { position: absolute; left: 12px; font-size: 0.82rem; font-weight: 700; color: var(--gray-400); pointer-events: none; z-index: 1; }
.input-money-wrap input { padding-left: 34px; }

/* EXPENSES FORM */
.expense-row-fields { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.expense-desc-input { flex: 1; padding: 10px 12px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.875rem; color: var(--gray-800); font-family: var(--font); }
.expense-val-wrap { position: relative; display: flex; align-items: center; width: 150px; }
.expense-val-prefix { position: absolute; left: 10px; font-size: 0.78rem; font-weight: 700; color: var(--gray-400); pointer-events: none; }
.expense-val-input { width: 100%; padding: 10px 10px 10px 30px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.875rem; font-family: var(--font); }
.expense-desc-input:focus, .expense-val-input:focus { outline: none; border-color: var(--green); }
.btn-remove-exp { color: var(--gray-400); font-size: 0.8rem; padding: 8px 10px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); flex-shrink: 0; }
.btn-remove-exp:hover { color: var(--red); border-color: var(--red); background: var(--red-light); }
.btn-add-expense { margin-top: 10px; padding: 10px 14px; background: var(--gray-50); border: 2px dashed var(--gray-200); border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 700; color: var(--gray-400); cursor: pointer; width: 100%; transition: all 0.15s; font-family: var(--font); text-transform: uppercase; letter-spacing: 0.04em; }
.btn-add-expense:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }

/* UPLOAD */
.upload-area { border: 2px dashed var(--gray-200); border-radius: var(--radius); padding: 28px; text-align: center; cursor: pointer; transition: all 0.15s; color: var(--gray-400); background: var(--gray-50); }
.upload-area:hover { border-color: var(--green); background: var(--green-light); color: var(--green); }
.upload-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.upload-area p { font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.upload-area small { font-size: 0.76rem; }
.upload-preview img { max-height: 170px; width: auto; margin: 0 auto; border-radius: var(--radius-sm); pointer-events: none; }
.upload-area-gallery { padding: 18px; }
.gallery-previews { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.gallery-thumb-preview { position: relative; width: 88px; height: 66px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--gray-200); }
.gallery-thumb-preview img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb-preview .remove-thumb { position: absolute; top: 3px; right: 3px; background: rgba(229,62,62,0.9); color: white; border-radius: 4px; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; cursor: pointer; border: none; }
.form-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; padding-bottom: 40px; }

/* DETAIL PAGE */
.detail-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; margin-bottom: 24px; }
@media (max-width: 800px) { .detail-hero { grid-template-columns: 1fr; } }
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--gray-100); aspect-ratio: 16/11; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-badge { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.65); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.76rem; font-weight: 600; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.gallery-thumbs img { width: 72px; height: 54px; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent; transition: border-color 0.15s; }
.gallery-thumbs img:hover { border-color: var(--gray-300); }
.gallery-thumbs img.active { border-color: var(--green); }
.detail-status-wrap { margin-bottom: 10px; }
.detail-title { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; color: var(--green); text-transform: uppercase; line-height: 1.2; }
.detail-model { font-size: 1rem; color: var(--gray-500); margin-top: 4px; }
.detail-price-block { background: var(--gray-50); border-radius: var(--radius); padding: 18px 20px; margin: 18px 0; border: 1px solid var(--gray-200); }
.price-sell { margin-bottom: 8px; }
.price-label { display: block; font-size: 0.7rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 2px; }
.price-val { font-size: 2.1rem; font-weight: 800; color: var(--gray-900); line-height: 1; }
.price-val-sm { font-size: 1.05rem; font-weight: 700; color: var(--gray-500); }
.detail-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.spec-item { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--gray-200); }
.spec-icon { font-size: 1.2rem; flex-shrink: 0; }
.spec-label { display: block; font-size: 0.68rem; color: var(--gray-400); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.spec-val { display: block; font-size: 0.9rem; font-weight: 700; color: var(--gray-800); margin-top: 1px; }
.detail-notes-wrap { background: var(--gray-50); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 18px; border: 1px solid var(--gray-200); border-left: 3px solid var(--green); }
.detail-notes-text { font-size: 0.875rem; color: var(--gray-600); margin-top: 4px; }
.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.detail-btn-primary { flex: 1; padding: 14px; background: var(--green); color: white; border: none; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 800; cursor: pointer; transition: all 0.15s; font-family: var(--font); text-transform: uppercase; }
.detail-btn-primary:hover { background: var(--green-dark); }
.detail-btn-outline { flex: 1; padding: 14px; background: white; color: var(--gray-600); border: 2px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: all 0.15s; font-family: var(--font); text-transform: uppercase; }
.detail-btn-outline:hover { border-color: var(--green); color: var(--green); }
.detail-section { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); padding: 24px; margin-bottom: 20px; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-100); flex-wrap: wrap; gap: 10px; }
.section-header h2 { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-600); }
.expense-total-badge { background: var(--green-light); color: var(--green); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; }
.expense-form-row { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.expense-input { flex: 1; min-width: 130px; padding: 10px 12px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.875rem; font-family: var(--font); }
.expense-input:focus { outline: none; border-color: var(--green); }
.expense-value { max-width: 140px; }
.expenses-list { display: flex; flex-direction: column; gap: 8px; }
.expense-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: var(--gray-50); border-radius: var(--radius-sm); border: 1px solid var(--gray-100); gap: 10px; }
.expense-name { font-size: 0.875rem; font-weight: 500; color: var(--gray-700); flex: 1; }
.expense-value-tag { font-size: 0.9rem; font-weight: 700; color: var(--red); white-space: nowrap; }
.expense-del { color: var(--gray-300); font-size: 0.78rem; padding: 4px 8px; border-radius: var(--radius-sm); border: 1px solid var(--gray-200); transition: all 0.15s; }
.expense-del:hover { color: var(--red); border-color: var(--red); background: var(--red-light); }
.empty-expenses { color: var(--gray-400); font-size: 0.875rem; padding: 20px 0; text-align: center; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; cursor: zoom-out; }
.lightbox img { max-height: 90vh; max-width: 90vw; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close { position: fixed; top: 20px; right: 24px; color: white; font-size: 1.4rem; background: rgba(255,255,255,0.15); border: none; border-radius: 50%; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-title { font-size: 1.3rem; }
  .search-input { width: 100%; }
  .header-row { flex-direction: column; align-items: flex-start; }
  .filter-bar { width: 100%; }
  .cars-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; }
  .stats-grid { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--gray-100); }
}
