/* ============================================================
   FindElectro — Laravel-only custom CSS
   ------------------------------------------------------------
   PURPOSE:
   This file is the ONLY place Laravel-specific styling may live.
   The existing frontend CSS (styles.css, pages.css, v3.css,
   custom.css, admin/admin.css) must NEVER be modified.

   RULES:
   - Use ONLY unique, namespaced classes: .lv-*  and  .adm-*
   - Reuse the admin theme tokens (--ad-*) already defined in
     admin.css so auth screens match the panel exactly.
   ============================================================ */

/* ---------- Auth screens (login / register / reset / verify) ---------- */
.lv-auth-body {
  margin: 0;
  min-height: 100vh;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ad-text, #0F1B2D);
  background: radial-gradient(1200px 600px at 80% -10%, rgba(0, 199, 191, .18), transparent 60%),
              radial-gradient(900px 500px at -10% 110%, rgba(122, 77, 255, .14), transparent 55%),
              #0B1424;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.lv-auth-wrap { width: 100%; max-width: 440px; }

.lv-auth-card {
  background: var(--ad-surface, #fff);
  border-radius: var(--ad-radius, 14px);
  box-shadow: 0 24px 60px rgba(3, 8, 20, .45);
  padding: 36px 32px;
}

.lv-auth-brand { text-align: center; margin-bottom: 22px; }
.lv-auth-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.5rem;
  text-decoration: none; color: var(--ad-text, #0F1B2D);
}
.lv-auth-logo i { color: var(--ad-primary, #00C7BF); }
.lv-auth-logo strong { color: var(--ad-primary, #00C7BF); font-weight: 800; }
.lv-auth-tagline { margin: 6px 0 0; font-size: .82rem; color: var(--ad-text-muted, #5B6B80); }

.lv-auth-title {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 1.5rem; margin: 0 0 4px; text-align: center;
}
.lv-auth-sub { text-align: center; color: var(--ad-text-muted, #5B6B80); font-size: .9rem; margin: 0 0 22px; }

.lv-auth-form { margin: 0; }
.lv-field { margin-bottom: 16px; }
.lv-label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: var(--ad-text, #0F1B2D); }
.lv-label-row { display: flex; align-items: center; justify-content: space-between; }
.lv-muted { color: var(--ad-text-muted, #5B6B80); font-weight: 400; }

.lv-input-group { position: relative; display: flex; align-items: center; }
.lv-input-group > i {
  position: absolute; left: 14px; color: var(--ad-text-muted, #5B6B80); font-size: 1rem; pointer-events: none;
}
.lv-input {
  width: 100%; padding: 12px 14px 12px 42px;
  border: 1px solid var(--ad-border, #E4EAF1); border-radius: 10px;
  font-size: .95rem; font-family: inherit; color: var(--ad-text, #0F1B2D);
  background: #fff; transition: border-color .15s, box-shadow .15s;
}
.lv-input:focus {
  outline: none; border-color: var(--ad-primary, #00C7BF);
  box-shadow: 0 0 0 3px rgba(0, 199, 191, .15);
}
.lv-input.is-invalid { border-color: var(--ad-danger, #FF5163); }
select.lv-input { appearance: none; cursor: pointer; }

.lv-pw-toggle {
  position: absolute; right: 8px; border: 0; background: transparent;
  color: var(--ad-text-muted, #5B6B80); padding: 6px 10px; cursor: pointer; border-radius: 8px;
}
.lv-pw-toggle:hover { color: var(--ad-primary, #00C7BF); }

.lv-checkbox { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--ad-text-muted, #5B6B80); margin-bottom: 18px; cursor: pointer; }
.lv-checkbox input { width: 16px; height: 16px; accent-color: var(--ad-primary, #00C7BF); }

.lv-btn {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 10px; border: 0; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: transform .06s, box-shadow .15s, background .15s;
}
.lv-btn:active { transform: translateY(1px); }
.lv-btn-primary { background: var(--ad-primary, #00C7BF); color: #042b29; box-shadow: 0 8px 20px rgba(0, 199, 191, .3); }
.lv-btn-primary:hover { background: var(--ad-primary-hover, #00A8A0); color: #042b29; }
.lv-btn-ghost { background: transparent; color: var(--ad-text-muted, #5B6B80); border: 1px solid var(--ad-border, #E4EAF1); margin-top: 10px; }
.lv-btn-ghost:hover { color: var(--ad-text, #0F1B2D); }

.lv-link-sm { font-size: .8rem; color: var(--ad-primary, #00C7BF); text-decoration: none; }
.lv-link-sm:hover { text-decoration: underline; }

.lv-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0 16px; color: var(--ad-text-muted, #5B6B80); font-size: .78rem; }
.lv-divider::before, .lv-divider::after { content: ""; flex: 1; height: 1px; background: var(--ad-border, #E4EAF1); }

.lv-social { display: flex; gap: 12px; justify-content: center; }
.lv-social-btn {
  width: 48px; height: 48px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ad-border, #E4EAF1); color: var(--ad-text, #0F1B2D); font-size: 1.2rem; text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.lv-social-btn:hover { border-color: var(--ad-primary, #00C7BF); color: var(--ad-primary, #00C7BF); }

.lv-auth-switch { text-align: center; margin: 22px 0 0; font-size: .88rem; color: var(--ad-text-muted, #5B6B80); }
.lv-auth-switch a { color: var(--ad-primary, #00C7BF); font-weight: 600; text-decoration: none; }
.lv-auth-switch a:hover { text-decoration: underline; }

.lv-auth-foot { text-align: center; color: rgba(255, 255, 255, .55); font-size: .78rem; margin: 18px 0 0; }

.lv-verify-icon {
  width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  color: var(--ad-primary, #00C7BF); background: rgba(0, 199, 191, .12);
}

/* ---------- Flash / validation alerts ---------- */
.lv-alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; border-radius: 10px; font-size: .85rem; margin-bottom: 18px;
}
.lv-alert i { margin-top: 1px; }
.lv-alert-success { background: rgba(0, 199, 111, .12); color: #067a48; }
.lv-alert-danger { background: rgba(255, 81, 99, .1); color: #c52b3b; }

/* ============================================================
   ADMIN (.adm-*) — additive layer on top of admin.css tokens.
   admin.css is NOT modified; these only add form/table helpers
   the static design didn't include.
   ============================================================ */

/* Flash messages inside admin content */
.adm-flash {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--ad-radius, 14px);
  margin-bottom: 16px; font-size: .9rem; box-shadow: var(--ad-shadow-sm);
  background: var(--ad-surface, #fff);
}
.adm-flash i { font-size: 1.1rem; }
.adm-flash-success { color: var(--ad-good, #00C76F); border-left: 3px solid var(--ad-good, #00C76F); }
.adm-flash-danger { color: var(--ad-danger, #FF5163); border-left: 3px solid var(--ad-danger, #FF5163); }

/* Inputs / selects / textarea / file — matches .ad-field input look */
.adm-input {
  width: 100%; min-height: 44px; padding: 10px 14px;
  border-radius: 10px; border: 1px solid var(--ad-border, #E4EAF1);
  background: var(--ad-surface, #fff); color: var(--ad-text, #0F1B2D);
  font-size: .92rem; font-family: inherit; outline: none; transition: border-color .15s, box-shadow .15s;
}
.adm-input:focus { border-color: var(--ad-primary, #00C7BF); box-shadow: 0 0 0 3px rgba(0,199,191,.12); }
select.adm-input { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235B6B80' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
textarea.adm-input { min-height: 110px; resize: vertical; }

/* Form layout */
.adm-form { display: block; }
.adm-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 640px) { .adm-form-grid { grid-template-columns: 1fr; } }
.adm-field { margin-bottom: 16px; }
.adm-field > label { display: block; font-size: .8rem; font-weight: 600; color: var(--ad-text-muted, #5B6B80); margin-bottom: 6px; }
.adm-hint, .adm-field small.adm-hint { display: block; margin-top: 6px; font-size: .76rem; color: var(--ad-text-muted, #5B6B80); }

.adm-form-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 8px; }
.adm-form-actions-sticky { position: sticky; bottom: 0; background: linear-gradient(transparent, var(--ad-bg, #F2F5F8) 40%); padding: 16px 0; }

/* Checkbox groups */
.adm-check { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--ad-text, #0F1B2D); cursor: pointer; }
.adm-check input { width: 16px; height: 16px; accent-color: var(--ad-primary, #00C7BF); }
.adm-checkgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px 16px; }

/* Filters bar */
.adm-filters { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 16px; }
.adm-filters .adm-field { margin: 0; min-width: 180px; flex: 1; }

/* Pagination */
.adm-pagination { margin-top: 18px; }
.adm-pagination nav { display: flex; justify-content: center; }
.adm-pagination .pagination { display: inline-flex; gap: 4px; list-style: none; padding: 0; flex-wrap: wrap; }
.adm-pagination .page-link {
  display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px;
  border: 1px solid var(--ad-border, #E4EAF1); border-radius: 9px; color: var(--ad-text, #0F1B2D);
  text-decoration: none; font-size: .85rem; background: var(--ad-surface, #fff);
}
.adm-pagination .page-item.active .page-link { background: var(--ad-primary, #00C7BF); border-color: var(--ad-primary, #00C7BF); color: #042b29; }
.adm-pagination .page-item.disabled .page-link { opacity: .45; pointer-events: none; }

/* Permission matrix + settings groups */
.adm-perm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.adm-perm-group { margin-bottom: 14px; padding: 16px; }
.adm-perm-title { display: block; font-family: 'Manrope', sans-serif; margin-bottom: 10px; font-size: .9rem; }
.adm-settings-group { margin-bottom: 18px; padding: 18px; }
.adm-file-preview { display: block; max-height: 64px; margin-bottom: 8px; border-radius: 8px; border: 1px solid var(--ad-border, #E4EAF1); padding: 4px; background: #fff; }

/* ============================================================
   PUBLIC CMS pages (.lv-cms-* / .lv-blog-* / .lv-faq-*)
   New dynamic templates (blog, pages, faqs). Brand fonts/colors
   reused; never overrides existing frontend selectors.
   ============================================================ */
.lv-cms-page { font-family: 'DM Sans', system-ui, sans-serif; color: #0F1B2D; }
.lv-cms-hero {
  background: radial-gradient(1000px 480px at 85% -20%, rgba(0,199,191,.16), transparent 60%), #0B1424;
  color: #fff; padding: 120px 0 48px;
}
.lv-cms-hero h1 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 2.4rem; margin: 8px 0 6px; }
.lv-cms-hero p { color: rgba(255,255,255,.7); margin: 0; }
.lv-crumb { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.lv-crumb a { color: #2EE6E0; text-decoration: none; }
.lv-cms-body { padding: 48px 16px 72px; }

.lv-blog-search { display: flex; max-width: 420px; margin: 18px 0 0; }
.lv-blog-search input { flex: 1; height: 46px; border: 0; border-radius: 12px 0 0 12px; padding: 0 16px; font-family: inherit; }
.lv-blog-search button { border: 0; background: #00C7BF; color: #042b29; padding: 0 18px; border-radius: 0 12px 12px 0; cursor: pointer; }
.lv-blog-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.lv-blog-cats a { font-size: .82rem; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.2); border-radius: 99px; padding: 6px 14px; text-decoration: none; }
.lv-blog-cats a.active, .lv-blog-cats a:hover { background: #00C7BF; color: #042b29; border-color: #00C7BF; }

.lv-blog-card { background: #fff; border: 1px solid #E4EAF1; border-radius: 16px; overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s; }
.lv-blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,27,45,.1); }
.lv-blog-thumb { display: block; aspect-ratio: 16/10; overflow: hidden; }
.lv-blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lv-blog-card-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.lv-blog-tag { align-self: flex-start; background: rgba(0,199,191,.12); color: #00A8A0; font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 99px; text-transform: uppercase; letter-spacing: .03em; }
.lv-blog-card-body h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.1rem; margin: 0; line-height: 1.3; }
.lv-blog-card-body h3 a { color: #0F1B2D; text-decoration: none; }
.lv-blog-card-body h3 a:hover { color: #00A8A0; }
.lv-blog-card-body p { color: #5B6B80; font-size: .9rem; margin: 0; }
.lv-blog-meta { display: flex; flex-wrap: wrap; gap: 14px; color: #5B6B80; font-size: .8rem; margin-top: auto; }
.lv-blog-hero-img { width: 100%; border-radius: 16px; margin-bottom: 24px; }
.lv-article { font-size: 1.05rem; line-height: 1.8; color: #2a3548; }
.lv-article p { margin: 0 0 18px; }
.lv-article h2, .lv-article h3 { font-family: 'Manrope', sans-serif; font-weight: 800; margin: 28px 0 12px; }
.lv-article img { max-width: 100%; border-radius: 12px; }
.lv-related { margin-top: 56px; }
.lv-related h2 { font-family: 'Manrope', sans-serif; font-weight: 800; margin-bottom: 18px; }

.lv-faq-cat { font-family: 'Manrope', sans-serif; font-weight: 800; margin: 28px 0 14px; font-size: 1.3rem; }
.lv-faq-acc .accordion-button { font-family: 'Manrope', sans-serif; font-weight: 600; }
.lv-faq-acc .accordion-button:not(.collapsed) { background: rgba(0,199,191,.08); color: #00A8A0; }

.lv-pagination { margin-top: 40px; display: flex; justify-content: center; }
.lv-pagination .pagination { display: inline-flex; gap: 6px; list-style: none; padding: 0; }
.lv-pagination .page-link { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; border: 1px solid #E4EAF1; border-radius: 10px; color: #0F1B2D; text-decoration: none; }
.lv-pagination .page-item.active .page-link { background: #00C7BF; border-color: #00C7BF; color: #042b29; }
.lv-pagination .page-item.disabled .page-link { opacity: .45; }

/* ============================================================
   LISTINGS / MARKETPLACE (.lv-*) — Step 7
   ============================================================ */
/* Counters */
.lv-counters { padding: 56px 0; background: #0B1424; color: #fff; }
.lv-counter i { font-size: 1.8rem; color: #2EE6E0; }
.lv-counter-val { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 2.2rem; margin-top: 6px; }
.lv-counter-label { color: rgba(255,255,255,.65); font-size: .9rem; }

/* Testimonials */
.lv-testimonial { background: #fff; border: 1px solid #E4EAF1; border-radius: 16px; padding: 24px; height: 100%; box-shadow: 0 6px 24px rgba(15,27,45,.05); }
.lv-stars { color: #FFB020; margin-bottom: 10px; }
.lv-testimonial p { color: #2a3548; font-size: .98rem; line-height: 1.6; }
.lv-testimonial-author { margin-top: 14px; }
.lv-testimonial-author strong { display: block; font-family: 'Manrope', sans-serif; }
.lv-testimonial-author span { color: #5B6B80; font-size: .85rem; }

/* Inventory filters */
.lv-filters { background: #fff; border: 1px solid #E4EAF1; border-radius: 16px; padding: 20px; position: sticky; top: 90px; }
.lv-filter-group { margin-bottom: 16px; }
.lv-filter-group > label { display: block; font-size: .8rem; font-weight: 600; color: #5B6B80; margin-bottom: 6px; }
.lv-filter-reset { display: block; text-align: center; margin-top: 10px; color: #5B6B80; font-size: .85rem; text-decoration: none; }
.lv-results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; color: #5B6B80; }
.lv-results-bar .lv-sort { max-width: 220px; }

/* Card state additions (do not override existing .fe-* rules) */
.fe-save-btn.is-saved i { color: #FF5163; }
.fe-icon-btn.is-active { background: #00C7BF; color: #042b29; }

/* Vehicle detail */
.lv-vehicle-hero { width: 100%; border-radius: 18px; margin-bottom: 22px; }
.lv-vehicle-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px; }
@media (max-width: 640px) { .lv-vehicle-specs { grid-template-columns: repeat(2, 1fr); } }
.lv-vspec { background: #fff; border: 1px solid #E4EAF1; border-radius: 12px; padding: 14px; text-align: center; }
.lv-vspec i { font-size: 1.2rem; color: #00C7BF; }
.lv-vspec span { display: block; font-size: .72rem; color: #5B6B80; margin: 4px 0 2px; }
.lv-vspec strong { font-family: 'Manrope', sans-serif; font-size: .95rem; }
.lv-vehicle-h { font-family: 'Manrope', sans-serif; font-weight: 800; margin: 26px 0 14px; }
.lv-features { display: flex; flex-wrap: wrap; gap: 10px; }
.lv-feature { background: rgba(0,199,191,.08); color: #00A8A0; border-radius: 99px; padding: 7px 14px; font-size: .85rem; font-weight: 600; }
.lv-feature i { margin-right: 4px; }

.lv-vehicle-buy { background: #fff; border: 1px solid #E4EAF1; border-radius: 18px; padding: 24px; position: sticky; top: 90px; box-shadow: 0 10px 30px rgba(15,27,45,.06); }
.lv-price { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 2rem; color: #0F1B2D; }
.lv-verified { display: inline-flex; align-items: center; gap: 6px; color: #00C76F; font-size: .82rem; font-weight: 600; margin-top: 4px; }
.lv-buy-actions { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.lv-btn-outline { border: 1px solid #E4EAF1; background: #fff; color: #0F1B2D; border-radius: 10px; padding: 10px; font-weight: 600; }
.lv-btn-outline:hover { border-color: #00C7BF; color: #00A8A0; }
.lv-btn-outline.is-active { background: #00C7BF; border-color: #00C7BF; color: #042b29; }
.lv-seller { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid #E4EAF1; }
.lv-seller-avatar { width: 46px; height: 46px; border-radius: 12px; background: rgba(0,199,191,.12); color: #00A8A0; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.lv-seller strong { display: block; font-family: 'Manrope', sans-serif; }
.lv-seller span { color: #5B6B80; font-size: .82rem; }

/* Compare table */
.lv-compare-table { background: #fff; border-radius: 12px; overflow: hidden; }
.lv-compare-table th, .lv-compare-table td { vertical-align: middle; text-align: center; }
.lv-compare-thumb { width: 120px; height: 72px; object-fit: cover; border-radius: 8px; }

/* Cash offer result */
.lv-offer-result { background: rgba(0,199,191,.08); border: 1px solid rgba(0,199,191,.25); border-radius: 12px; padding: 18px; }

/* Vehicle detail gallery strip */
.lv-gallery-strip { display: flex; gap: 10px; margin: 12px 0 24px; overflow-x: auto; padding-bottom: 4px; }
.lv-gallery-strip img { width: 96px; height: 70px; object-fit: cover; border-radius: 10px; cursor: pointer; border: 2px solid transparent; flex: 0 0 auto; }
.lv-gallery-strip img:hover { border-color: #00C7BF; }

/* ============================================================
   ADMIN MEDIA (.adm-media-*) — Step 9
   ============================================================ */
.adm-media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }
.adm-media-grid-lg { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.adm-media-item { position: relative; border: 1px solid var(--ad-border, #E4EAF1); border-radius: 12px; overflow: hidden; background: var(--ad-surface, #fff); }
.adm-media-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.adm-media-item .adm-media-meta { padding: 8px 10px; display: flex; flex-direction: column; }
.adm-media-item .adm-media-meta span { font-size: .78rem; font-weight: 600; }
.adm-media-item .adm-media-meta small { font-size: .7rem; color: var(--ad-text-muted, #5B6B80); }
.adm-media-item form { position: absolute; top: 6px; right: 6px; }
.adm-media-item form button { border: 0; background: rgba(255,81,99,.9); color: #fff; width: 26px; height: 26px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.adm-media-item form button:hover { background: var(--ad-danger, #FF5163); }

/* =========================================================================
   Cash-Offer multi-step flow + reusable VIN decoder (additive, .lv-* only).
   Built on the theme tokens (--fe-primary, teal #008C9D / #00B4C9,
   border #E4EAF1, soft #F4F7FB) so it matches the existing design.
   ========================================================================= */
:root {
  --lv-co-teal: #008C9D;
  --lv-co-teal-2: #00B4C9;
  --lv-co-border: #E4EAF1;
  --lv-co-soft: #F4F7FB;
  --lv-co-ink: #101A2B;
  --lv-co-muted: #000000;
}

/* --- progress bar --- */
.lv-co-progress { list-style: none; display: flex; gap: 8px; padding: 0; margin: 0 0 22px; flex-wrap: wrap; }
.lv-co-progress-item { flex: 1 1 0; min-width: 120px; }
.lv-co-progress-link { display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 10px 12px; border-radius: 12px; background: var(--lv-co-soft); border: 1px solid var(--lv-co-border); }
a.lv-co-progress-link:hover { border-color: var(--lv-co-teal-2); }
.lv-co-progress-dot { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; background: #fff; border: 1px solid var(--lv-co-border); color: var(--lv-co-muted); }
.lv-co-progress-label { font-weight: 600; font-size: .9rem; color: var(--lv-co-muted); }
.lv-co-progress-item.is-active .lv-co-progress-link { background: #fff; border-color: var(--lv-co-teal); box-shadow: 0 4px 16px rgba(0,140,157,.10); }
.lv-co-progress-item.is-active .lv-co-progress-dot { background: var(--lv-co-teal); border-color: var(--lv-co-teal); color: #fff; }
.lv-co-progress-item.is-active .lv-co-progress-label { color: var(--lv-co-ink); }
.lv-co-progress-item.is-done .lv-co-progress-dot { background: var(--lv-co-teal-2); border-color: var(--lv-co-teal-2); color: #fff; }

/* --- wizard cards --- */
.lv-co-wizard { max-width: 900px; margin: 0 auto 40px; }
.lv-co-card { margin-bottom: 18px; }
.lv-co-help { color: var(--lv-co-muted); margin: -4px 0 18px; }
.lv-req { color: #E23; }
.lv-co-field-err { color: #E23; font-size: .82rem; margin-top: 4px; }
.lv-co-hint { color: var(--lv-co-muted); font-size: .82rem; margin-top: 8px; }
.lv-co-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

/* --- step 1: intent options --- */
.lv-co-intent .lv-co-option { position: relative; display: flex; flex-direction: column; gap: 6px; height: 100%; padding: 20px 18px; border: 1.5px solid var(--lv-co-border); border-radius: 16px; cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.lv-co-intent .lv-co-option:hover { border-color: var(--lv-co-teal-2); }
.lv-co-intent .lv-co-option input { position: absolute; opacity: 0; pointer-events: none; }
.lv-co-intent .lv-co-option.is-selected,
.lv-co-intent .lv-co-option:has(input:checked) { border-color: var(--lv-co-teal); box-shadow: 0 6px 20px rgba(0,140,157,.12); }
.lv-co-option-ico { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--lv-co-teal); background: var(--lv-co-soft); }
.lv-co-option-title { font-weight: 700; color: var(--lv-co-ink); }
.lv-co-option-desc { font-size: .85rem; color: var(--lv-co-muted); }

/* --- VIN decoder (reusable) --- */
.lv-vin-decoder .lv-vin-row { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; }
.lv-vin-decoder .evx-vin-wrap { flex: 1 1 240px; }
.lv-vin-decoder .evx-btn-teal[disabled] { opacity: .7; cursor: progress; }
.lv-vin-result { margin-top: 14px; }
.lv-vin-card { border: 1px solid var(--lv-co-border); border-radius: 14px; padding: 14px 16px; background: #fff; }
.lv-vin-card.lv-vin-ok { border-color: #CDEDDA; background: #F3FBF6; }
.lv-vin-card.lv-vin-err { border-color: #F6D2D2; background: #FDF3F3; }
.lv-vin-card-head { font-weight: 600; color: var(--lv-co-ink); display: flex; align-items: center; gap: 8px; }
.lv-vin-card.lv-vin-ok .lv-vin-card-head i { color: #1C8F6E; }
.lv-vin-card.lv-vin-err .lv-vin-card-head i { color: #E23; }
.lv-vin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin-top: 12px; }
.lv-vin-field { display: flex; flex-direction: column; background: var(--lv-co-soft); border-radius: 10px; padding: 8px 10px; }
.lv-vin-field-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .03em; color: var(--lv-co-muted); }
.lv-vin-field-value { font-weight: 600; color: var(--lv-co-ink); font-size: .9rem; }
.lv-vin-card.lv-vin-err .lv-vin-card-head { margin-bottom: 10px; }

/* --- step 3: confirm --- */
.lv-co-vehicle-img { aspect-ratio: 4/3; border-radius: 16px; background: var(--lv-co-soft); border: 1px dashed var(--lv-co-border); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: var(--lv-co-muted); }
.lv-co-vehicle-img i { font-size: 2.4rem; color: var(--lv-co-teal); }
.lv-co-vehicle-head { margin-bottom: 14px; }
.lv-co-year { display: inline-block; background: var(--lv-co-teal); color: #fff; font-weight: 700; font-size: .78rem; padding: 2px 10px; border-radius: 20px; }
.lv-co-vehicle-head h4 { margin: 6px 0 4px; font-weight: 800; }
.lv-co-vin { color: var(--lv-co-muted); font-size: .85rem; }

/* --- step 4: collapsible cards --- */
.lv-co-accordion { display: flex; flex-direction: column; gap: 12px; }
.lv-co-collapse { border: 1px solid var(--lv-co-border); border-radius: 14px; overflow: hidden; background: #fff; }
.lv-co-collapse-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 15px 18px; border: 0; background: #fff; font-weight: 700; color: var(--lv-co-ink); cursor: pointer; }
.lv-co-collapse-head span i { color: var(--lv-co-teal); margin-right: 6px; }
.lv-co-chevron { transition: transform .2s; color: var(--lv-co-muted); }
.lv-co-collapse-head[aria-expanded="true"] .lv-co-chevron { transform: rotate(180deg); }
.lv-co-collapse-body { padding: 4px 18px 20px; }

/* --- step 5: summary --- */
.lv-co-summary { border: 1px solid var(--lv-co-border); border-radius: 16px; padding: 20px; background: var(--lv-co-soft); position: sticky; top: 96px; }
.lv-co-summary h4 { font-weight: 800; display: flex; align-items: center; gap: 8px; }
.lv-co-summary h4 i { color: var(--lv-co-teal); }
.lv-co-summary-vehicle { margin: 12px 0; }
.lv-co-summary-vehicle strong { display: block; font-size: 1.1rem; }
.lv-co-trim { color: var(--lv-co-muted); font-size: .85rem; }
.lv-co-summary-list { list-style: none; padding: 0; margin: 0; }
.lv-co-summary-list li { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--lv-co-border); font-size: .9rem; }
.lv-co-summary-list li span:first-child { color: var(--lv-co-muted); }
.lv-co-summary-list li span:last-child { font-weight: 600; color: var(--lv-co-ink); text-align: right; }
.lv-co-summary-edit { display: inline-block; margin-top: 12px; color: var(--lv-co-teal); text-decoration: none; font-weight: 600; font-size: .88rem; }

/* --- success --- */
.lv-co-done { max-width: 640px; margin: 0 auto; text-align: center; }
.lv-co-done-ico { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; background: #DCF6EA; color: #1C8F6E; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.lv-co-done h1 { font-weight: 800; }
.lv-co-done p { color: var(--lv-co-muted); }
.lv-co-ref { display: inline-block; margin: 14px 0 22px; padding: 8px 16px; border-radius: 12px; background: var(--lv-co-soft); border: 1px solid var(--lv-co-border); font-size: .9rem; }

/* =========================================================================
   Cash-Offer flow — modern look + AJAX transitions (additive, .lv-* only).
   Overrides the base .lv-co-* rules above with a more polished treatment.
   ========================================================================= */

/* Step transition animation */
@keyframes lvCoIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.lv-co-anim-in { animation: lvCoIn .38s cubic-bezier(.22,.61,.36,1) both; }

/* Busy overlay while an AJAX step is loading */
.lv-co-wizard { position: relative; }
.lv-co-wizard.is-busy .lv-co-inner { opacity: .45; filter: blur(.4px); transition: opacity .15s; pointer-events: none; }
.lv-co-overlay { position: absolute; inset: 0; display: flex; align-items: flex-start; justify-content: center; padding-top: 120px; z-index: 5; }
.lv-co-overlay .spinner-border { color: var(--lv-co-teal); width: 2.4rem; height: 2.4rem; }

/* Modern connected stepper */
.lv-co-progress { display: flex; gap: 0; margin: 4px 0 30px; padding: 0; list-style: none; }
.lv-co-progress-item { flex: 1; position: relative; text-align: center; min-width: 0; }
.lv-co-progress-item .lv-co-progress-link { display: flex; flex-direction: column; align-items: center; gap: 9px; background: none !important; border: 0 !important; box-shadow: none !important; padding: 0; position: relative; z-index: 1; }
.lv-co-progress-item::before { content: ""; position: absolute; top: 20px; right: 50%; width: 100%; height: 3px; background: var(--lv-co-border); z-index: 0; border-radius: 3px; }
.lv-co-progress-item:first-child::before { display: none; }
.lv-co-progress-item.is-done::before,
.lv-co-progress-item.is-active::before { background: linear-gradient(90deg, var(--lv-co-teal), var(--lv-co-teal-2)); }
.lv-co-progress-dot { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .95rem; background: #fff; border: 2px solid var(--lv-co-border); color: var(--lv-co-muted); transition: transform .2s, box-shadow .2s, background .2s; }
.lv-co-progress-label { font-weight: 600; font-size: .82rem; color: var(--lv-co-muted); }
.lv-co-progress-item.is-active .lv-co-progress-dot { background: linear-gradient(135deg, var(--lv-co-teal), var(--lv-co-teal-2)); border-color: transparent; color: #fff; transform: scale(1.08); box-shadow: 0 10px 24px rgba(0,140,157,.35); }
.lv-co-progress-item.is-active .lv-co-progress-label { color: var(--lv-co-ink); }
.lv-co-progress-item.is-done .lv-co-progress-dot { background: linear-gradient(135deg, var(--lv-co-teal), var(--lv-co-teal-2)); border-color: transparent; color: #fff; }
a.lv-co-progress-link:hover .lv-co-progress-dot { border-color: var(--lv-co-teal-2); }
@media (max-width: 575.98px) { .lv-co-progress-label { display: none; } }

/* Softer, more modern cards */
.lv-co-wizard { max-width: 940px; }
.lv-co-card.fe-form-card,
.fe-form-card.lv-co-card { border-radius: 22px; box-shadow: 0 18px 50px -24px rgba(16,26,43,.28); border: 1px solid var(--lv-co-border); }
.lv-co-collapse { border-radius: 16px; transition: box-shadow .2s, border-color .2s; }
.lv-co-collapse:hover { border-color: #d5dce6; }
.lv-co-collapse:has(.collapse.show) { box-shadow: 0 12px 30px -20px rgba(16,26,43,.3); border-color: var(--lv-co-teal-2); }

/* Intent options — lift on hover, gradient icon when selected */
.lv-co-intent .lv-co-option { border-radius: 20px; transition: transform .18s, border-color .18s, box-shadow .18s; }
.lv-co-intent .lv-co-option:hover { transform: translateY(-3px); }
.lv-co-intent .lv-co-option:has(input:checked) .lv-co-option-ico { background: linear-gradient(135deg, var(--lv-co-teal), var(--lv-co-teal-2)); color: #fff; }
.lv-co-option-ico { transition: background .2s, color .2s; }

/* Confirm + summary polish */
.lv-co-vehicle-img { border-radius: 20px; background: linear-gradient(135deg, #eef7f8, #f6fbfc); }
.lv-co-summary { border-radius: 20px; box-shadow: 0 14px 40px -26px rgba(16,26,43,.3); }

/* Primary CTA gets a subtle gradient inside the flow only */
.lv-co-wizard .btn-fe-primary,
.lv-co-done .btn-fe-primary { background-image: linear-gradient(135deg, var(--lv-co-teal), var(--lv-co-teal-2)); border: 0; }
.lv-co-wizard .btn-fe-primary:hover,
.lv-co-done .btn-fe-primary:hover { filter: brightness(1.05); }
.lv-co-done-ico { background: linear-gradient(135deg, #DCF6EA, #cdeee0); }

/* Auto vehicle photos (VIN decode → make/model/year image) */
.lv-co-vehicle-img { position: relative; overflow: hidden; padding: 10px; border: 1px solid var(--lv-co-border); }
.lv-co-vehicle-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lv-co-vehicle-fallback { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: var(--lv-co-muted); }
.lv-co-vehicle-fallback i { font-size: 2.4rem; color: var(--lv-co-teal); }
.lv-co-vehicle-img.is-fallback { display: flex; align-items: center; justify-content: center; }
.lv-co-vehicle-img.is-fallback .lv-co-vehicle-fallback { display: flex; }

.lv-vin-photo { margin: 12px 0 4px; text-align: center; background: linear-gradient(135deg, #eef7f8, #f6fbfc); border-radius: 12px; padding: 10px; }
.lv-vin-photo img { max-width: 100%; max-height: 180px; object-fit: contain; }

.lv-co-summary-photo { background: linear-gradient(135deg, #eef7f8, #f6fbfc); border-radius: 14px; padding: 12px; margin: 12px 0; text-align: center; }
.lv-co-summary-photo img { max-width: 100%; max-height: 150px; object-fit: contain; }

/* =========================================================================
   Seller account — "My Cash Offers" list/detail (additive, .lv-acc-* only).
   ========================================================================= */
.lv-acc-offer { display: flex; gap: 18px; align-items: center; padding: 16px; border: 1px solid var(--lv-co-border, #E4EAF1); border-radius: 18px; background: #fff; margin-bottom: 14px; box-shadow: 0 12px 34px -26px rgba(16,26,43,.3); }
.lv-acc-thumb { flex: 0 0 120px; width: 120px; height: 84px; border-radius: 12px; overflow: hidden; background: linear-gradient(135deg, #eef7f8, #f6fbfc); display: flex; align-items: center; justify-content: center; }
.lv-acc-thumb img { width: 100%; height: 100%; object-fit: contain; }
.lv-acc-thumb-fallback { display: none; color: var(--lv-co-teal, #008C9D); font-size: 1.8rem; }
.lv-acc-thumb.is-fallback .lv-acc-thumb-fallback { display: block; }
.lv-acc-info { flex: 1 1 auto; min-width: 0; }
.lv-acc-info h3 { font-size: 1.05rem; font-weight: 800; margin: 0 0 6px; color: var(--lv-co-ink, #101A2B); }
.lv-acc-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--lv-co-muted, #6B7480); font-size: .84rem; }
.lv-acc-meta i { margin-right: 4px; }
.lv-acc-side { flex: 0 0 auto; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.lv-acc-amount { font-weight: 800; color: var(--lv-co-ink, #101A2B); line-height: 1.1; }
.lv-acc-amount small { display: block; font-weight: 500; font-size: .72rem; color: var(--lv-co-muted, #6B7480); }
.lv-acc-status { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; background: #EEF2F7; color: #5B6B80; }
.lv-acc-status.is-new { background: #E1ECFD; color: #2F6FE0; }
.lv-acc-status.is-reviewing { background: #FCEEDD; color: #C9781F; }
.lv-acc-status.is-offered { background: #E1F2EC; color: #0E8C6B; }
.lv-acc-status.is-accepted { background: #DCF6EA; color: #1C8F6E; }
.lv-acc-status.is-declined, .lv-acc-status.is-expired { background: #FBE6E6; color: #C0392B; }
.lv-acc-status-box { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; padding: 14px 16px; border: 1px solid var(--lv-co-border, #E4EAF1); border-radius: 14px; background: var(--lv-co-soft, #F4F7FB); }
.lv-acc-empty { text-align: center; padding: 60px 20px; }
.lv-acc-empty i { font-size: 2.6rem; color: var(--lv-co-teal, #008C9D); }
.lv-acc-empty h3 { font-weight: 800; margin: 12px 0 4px; }
.lv-acc-empty p { color: var(--lv-co-muted, #6B7480); margin-bottom: 18px; }
@media (max-width: 575.98px) { .lv-acc-offer { flex-wrap: wrap; } .lv-acc-side { text-align: left; align-items: flex-start; width: 100%; flex-direction: row; justify-content: space-between; } }

/* =========================================================================
   Account dashboard (.lv-dash-*). Additive; reuses the .lv-co / .lv-acc tokens.
   ========================================================================= */
.lv-dash-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; border-bottom: 1px solid var(--lv-co-border, #E4EAF1); margin-bottom: 22px; }
.lv-dash-nav a { display: inline-flex; align-items: center; gap: 7px; padding: 12px 16px; font-weight: 700; font-size: .92rem; color: var(--lv-co-muted, #6B7480); text-decoration: none; border-bottom: 2.5px solid transparent; margin-bottom: -1px; transition: color .15s, border-color .15s; }
.lv-dash-nav a:hover { color: var(--lv-co-ink, #101A2B); }
.lv-dash-nav a.is-active { color: var(--lv-co-teal, #008C9D); border-bottom-color: var(--lv-co-teal, #008C9D); }
.lv-dash-nav-out { margin-left: auto; }
.lv-dash-nav-out button { background: none; border: 0; color: #C0392B; font-weight: 700; font-size: .9rem; padding: 12px 8px; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; }
.lv-dash-nav-out button:hover { text-decoration: underline; }

.lv-dash-flash { display: flex; align-items: center; gap: 9px; padding: 13px 18px; border-radius: 12px; background: #DCF6EA; color: #1C7A5B; font-weight: 600; margin-bottom: 20px; border: 1px solid #B7E8D3; }
.lv-dash-flash.is-error { background: #FBE6E6; color: #B0362B; border-color: #F1C9C4; }

.lv-dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
.lv-dash-stat { display: flex; align-items: center; gap: 14px; padding: 18px; background: #fff; border: 1px solid var(--lv-co-border, #E4EAF1); border-radius: 16px; box-shadow: 0 12px 34px -26px rgba(16,26,43,.3); }
.lv-dash-stat-ico { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; background: #EEF2F7; color: #5B6B80; }
.lv-dash-stat-ico.is-green { background: #DCF6EA; color: #1C8F6E; }
.lv-dash-stat-ico.is-amber { background: #FCEEDD; color: #C9781F; }
.lv-dash-stat-ico.is-teal { background: #E1F1F3; color: var(--lv-co-teal, #008C9D); }
.lv-dash-stat strong { display: block; font-size: 1.5rem; font-weight: 800; line-height: 1; color: var(--lv-co-ink, #101A2B); }
.lv-dash-stat span { font-size: .82rem; color: var(--lv-co-muted, #6B7480); }

.lv-dash-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 26px; }
.lv-dash-action { display: flex; align-items: center; gap: 14px; padding: 18px; background: #fff; border: 1px solid var(--lv-co-border, #E4EAF1); border-radius: 16px; text-decoration: none; transition: border-color .18s, transform .18s, box-shadow .18s; }
.lv-dash-action:hover { border-color: var(--lv-co-teal, #008C9D); transform: translateY(-3px); box-shadow: 0 14px 30px -18px rgba(0,140,157,.35); }
.lv-dash-action i { font-size: 1.5rem; color: var(--lv-co-teal, #008C9D); }
.lv-dash-action strong { display: block; color: var(--lv-co-ink, #101A2B); font-size: .98rem; }
.lv-dash-action span { font-size: .82rem; color: var(--lv-co-muted, #6B7480); }

.lv-dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.lv-dash-panel { background: #fff; border: 1px solid var(--lv-co-border, #E4EAF1); border-radius: 18px; padding: 20px 20px 8px; box-shadow: 0 12px 34px -26px rgba(16,26,43,.3); }
.lv-dash-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.lv-dash-panel-head h2 { font-size: 1.05rem; font-weight: 800; margin: 0; color: var(--lv-co-ink, #101A2B); }
.lv-dash-link { font-size: .84rem; font-weight: 700; color: var(--lv-co-teal, #008C9D); text-decoration: none; }
.lv-dash-link:hover { text-decoration: underline; }
.lv-dash-panel .lv-acc-offer { padding: 12px; }
.lv-dash-panel .lv-acc-thumb { flex: 0 0 88px; width: 88px; height: 62px; }

.lv-dash-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 4px; border-bottom: 1px solid var(--lv-co-border, #E4EAF1); text-decoration: none; }
.lv-dash-row:last-child { border-bottom: 0; }
.lv-dash-row-main strong { display: block; color: var(--lv-co-ink, #101A2B); font-size: .95rem; font-weight: 700; }
.lv-dash-row-main span { font-size: .78rem; color: var(--lv-co-muted, #6B7480); }
.lv-dash-row-side { display: flex; align-items: center; gap: 12px; }
.lv-dash-row-side b { color: var(--lv-co-ink, #101A2B); font-weight: 800; }

.lv-dash-empty { text-align: center; padding: 34px 16px; }
.lv-dash-empty i { font-size: 2rem; color: var(--lv-co-teal, #008C9D); }
.lv-dash-empty p { color: var(--lv-co-muted, #6B7480); margin: 10px 0 14px; }

.lv-dash-form { display: block; }
.lv-dash-form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lv-dash-field { margin-bottom: 15px; }
.lv-dash-field label { display: block; font-size: .82rem; font-weight: 700; color: var(--lv-co-ink, #101A2B); margin-bottom: 6px; }
.lv-dash-field input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--lv-co-border, #E4EAF1); border-radius: 11px; font-size: .95rem; transition: border-color .15s, box-shadow .15s; }
.lv-dash-field input:focus { outline: 0; border-color: var(--lv-co-teal, #008C9D); box-shadow: 0 0 0 3px rgba(0,140,157,.12); }
.lv-dash-hint { display: block; margin-top: 6px; font-size: .78rem; color: #C9781F; }

@media (max-width: 991.98px) {
  .lv-dash-stats { grid-template-columns: repeat(2, 1fr); }
  .lv-dash-actions { grid-template-columns: 1fr; }
  .lv-dash-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575.98px) {
  .lv-dash-stats { grid-template-columns: 1fr; }
  .lv-dash-form-row2 { grid-template-columns: 1fr; }
  .lv-dash-nav { flex-wrap: nowrap; overflow-x: auto; }
  .lv-dash-nav-out { margin-left: 0; }
}

/* =========================================================================
   Step 6 — selling method (Marketplace vs Exclusive Dealers). Additive,
   .lv-co-sell* scoped; reuses the .lv-co-option visual language from step 1.
   ========================================================================= */
.lv-co-sell .lv-co-option { position: relative; display: flex; flex-direction: column; gap: 8px; height: 100%; padding: 22px 20px; border: 1.5px solid var(--lv-co-border, #E4EAF1); border-radius: 18px; transition: border-color .18s, box-shadow .18s, transform .18s; }
.lv-co-sell .lv-co-option:hover { border-color: var(--lv-co-teal-2, #2BB6C4); transform: translateY(-3px); }
.lv-co-sell .lv-co-option.is-selected,
.lv-co-sell .lv-co-option:has(input:checked) { border-color: var(--lv-co-teal, #008C9D); box-shadow: 0 10px 28px -12px rgba(0,140,157,.28); }
.lv-co-sell .lv-co-option-ico { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; color: var(--lv-co-teal, #008C9D); background: var(--lv-co-soft, #F4F7FB); }
.lv-co-sell .lv-co-option-title { font-weight: 800; font-size: 1.1rem; color: var(--lv-co-ink, #101A2B); }
.lv-co-sell .lv-co-option-desc { font-size: .88rem; color: var(--lv-co-muted, #6B7480); }

.lv-co-fee { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; padding: 12px 14px; border-radius: 12px; background: var(--lv-co-soft, #F4F7FB); border: 1px dashed var(--lv-co-border, #E4EAF1); }
.lv-co-fee-label { font-size: .82rem; font-weight: 600; color: var(--lv-co-muted, #6B7480); text-transform: uppercase; letter-spacing: .03em; }
.lv-co-fee-amount { font-size: 1.35rem; font-weight: 800; color: var(--lv-co-ink, #101A2B); }

.lv-co-perks { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 8px; }
.lv-co-perks li { display: flex; align-items: flex-start; gap: 8px; font-size: .88rem; color: var(--lv-co-ink, #101A2B); }
.lv-co-perks li i { color: #1C8F6E; font-size: 1rem; line-height: 1.4; flex: 0 0 auto; }
.lv-co-sell-card .btn { margin-top: auto; }

/* =========================================================================
   Seller listing form — premium form UI (.sl-* scoped).
   Purely presentational: reuses the --ad-* panel tokens, styles the existing
   .ad-input / .ad-lbl controls, and adds a responsive 12-col grid. No field
   names, ids, validation, or routes are touched by this layer.
   ========================================================================= */
.sl-form { max-width: 1160px; margin: 0 auto; }

/* Section cards */
.sl-form .ad-card { padding: 24px 26px; margin-bottom: 20px; box-shadow: var(--ad-shadow-sm); }
.sl-sec-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--ad-border); }
.sl-sec-ico { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; background: rgba(0,199,191,.1); color: var(--ad-primary); }
.sl-sec-head h3 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; margin: 0; color: var(--ad-text); }
.sl-sec-head p { margin: 3px 0 0; font-size: .82rem; color: var(--ad-text-muted); }

/* Responsive 12-column grid */
.sl-grid { display: grid; gap: 16px 18px; grid-template-columns: repeat(12, 1fr); }
.sl-col-12 { grid-column: span 12; }
.sl-col-8  { grid-column: span 8; }
.sl-col-6  { grid-column: span 6; }
.sl-col-4  { grid-column: span 4; }
.sl-col-3  { grid-column: span 3; }
@media (max-width: 900px) { .sl-col-4, .sl-col-3, .sl-col-8 { grid-column: span 6; } }
@media (max-width: 560px) { .sl-col-6, .sl-col-4, .sl-col-3, .sl-col-8 { grid-column: span 12; } }

/* Field + label */
.sl-field { display: flex; flex-direction: column; min-width: 0; }
.sl-form .ad-lbl { display: block; font-family: 'Manrope', sans-serif; font-size: .8rem; font-weight: 700; color: var(--ad-text); margin: 0 0 7px; letter-spacing: .01em; }
.sl-req { color: var(--ad-danger); margin-left: 3px; }
.sl-opt { color: var(--ad-text-muted); font-weight: 500; font-size: .72rem; margin-left: 6px; }

/* Controls — input / select / textarea share one premium look */
.sl-form .ad-input {
  width: 100%; height: 46px; padding: 0 14px;
  border: 1.5px solid var(--ad-border); border-radius: 10px;
  background: var(--ad-surface); color: var(--ad-text);
  font-family: inherit; font-size: .92rem; line-height: 1.4;
  outline: none; transition: border-color .16s, box-shadow .16s, background .16s;
  -webkit-appearance: none; appearance: none;
}
.sl-form textarea.ad-input { height: auto; min-height: 98px; padding: 12px 14px; resize: vertical; }
.sl-form .ad-input::placeholder { color: #9AA7B6; }
.sl-form .ad-input:hover { border-color: #C7D2DE; }
.sl-form .ad-input:focus { border-color: var(--ad-primary); box-shadow: 0 0 0 4px rgba(0,199,191,.15); }
.sl-form .ad-input:disabled { background: var(--ad-surface-2); color: var(--ad-text-muted); cursor: not-allowed; }

/* Select caret (custom, matches theme) */
.sl-form select.ad-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235B6B80' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 40px; cursor: pointer;
}

/* Error state */
.sl-form .ad-input.is-invalid { border-color: var(--ad-danger); }
.sl-form .ad-input.is-invalid:focus { box-shadow: 0 0 0 4px rgba(255,81,99,.16); }
.sl-err { display: flex; align-items: center; gap: 6px; margin: 6px 0 0; font-size: .78rem; color: var(--ad-danger); }

/* Error summary */
.sl-alert { display: flex; gap: 12px; padding: 15px 18px; border-radius: 12px; background: rgba(255,81,99,.07); border: 1px solid rgba(255,81,99,.25); margin-bottom: 20px; }
.sl-alert > i { color: var(--ad-danger); font-size: 1.15rem; line-height: 1.4; }
.sl-alert strong { display: block; font-size: .9rem; color: var(--ad-text); margin-bottom: 4px; }
.sl-alert ul { margin: 0; padding-left: 16px; font-size: .82rem; color: var(--ad-text-muted); }

/* Upload dropzone */
.sl-upload-wrap { position: relative; }
.sl-upload { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 26px; border: 1.6px dashed var(--ad-border); border-radius: 12px; background: var(--ad-surface-2); text-align: center; transition: border-color .16s, background .16s; }
.sl-upload:hover { border-color: var(--ad-primary); background: rgba(0,199,191,.04); }
.sl-upload i { font-size: 1.7rem; color: var(--ad-primary); }
.sl-upload span { font-size: .88rem; font-weight: 700; color: var(--ad-text); }
.sl-upload small { font-size: .76rem; color: var(--ad-text-muted); }
.sl-upload-wrap input[type="file"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.sl-upload-wrap:focus-within .sl-upload { border-color: var(--ad-primary); box-shadow: 0 0 0 4px rgba(0,199,191,.15); }

/* Existing photos grid */
.sl-photos { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; margin-bottom: 16px; }
.sl-photo { position: relative; border-radius: 10px; overflow: hidden; border: 1px solid var(--ad-border); }
.sl-photo img { width: 100%; height: 92px; object-fit: cover; display: block; }
.sl-photo-del { position: absolute; top: 6px; right: 6px; width: 28px; height: 28px; border: 0; border-radius: 8px; background: rgba(15,27,45,.72); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; }
.sl-photo-del:hover { background: var(--ad-danger); }

/* Sticky action bar */
.sl-actions { position: sticky; bottom: 12px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 16px 20px; background: var(--ad-surface); border: 1px solid var(--ad-border); border-radius: 14px; box-shadow: 0 8px 30px -14px rgba(15,27,45,.28); margin-top: 4px; z-index: 5; }
.sl-actions .sl-field { flex: 1; min-width: 200px; max-width: 260px; }
.sl-actions-btns { display: flex; gap: 10px; }

/* Button loading state (progressive enhancement — see _form script) */
.ad-btn.is-loading { pointer-events: none; opacity: .8; }
.ad-btn.is-loading .sl-spin { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.5); border-top-color: #fff; border-radius: 50%; animation: sl-spin .6s linear infinite; }
@keyframes sl-spin { to { transform: rotate(360deg); } }

/* ============================================================= *
 |  AI Concierge — chat result cards, FAQ chips & rich replies
 |  Rendered dynamically by assets/script.js on every page.
 * ============================================================= */

/* Preserve line breaks in multi-line concierge answers (FAQ / capabilities). */
.fe-chat-msg.bot .fe-chat-bubble { white-space: pre-wrap; }

/* FAQ quick-question chips shown under the greeting. */
.fe-chat-faqs { display: flex; flex-wrap: wrap; gap: .4rem; }
.fe-chat-faq {
  border: 1px solid #e4eaf1; background: #fff; color: #253449;
  border-radius: 999px; padding: .4rem .85rem; font-size: .8rem; font-weight: 600;
  cursor: pointer; transition: border-color .15s ease, color .15s ease, background .15s ease, box-shadow .15s ease;
}
.fe-chat-faq:hover {
  border-color: #00c7bf; color: #00897f; background: rgba(0,199,191,.07);
  box-shadow: 0 4px 12px rgba(0,199,191,.14);
}

/* Result card list (providers / vehicles / services). */
.fe-chat-results-row { align-items: flex-start; }
.fe-chat-results-row > .fe-chat-avatar { visibility: hidden; }
.fe-chat-cards { display: flex; flex-direction: column; gap: .55rem; width: 100%; max-width: 470px; }

.fe-chat-card {
  display: flex; align-items: center; gap: .85rem; position: relative;
  background: #fff; border: 1px solid #e6ebf1; border-radius: 16px;
  padding: .7rem .8rem; text-decoration: none; color: #0f1b2d;
  box-shadow: 0 1px 2px rgba(15,27,45,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.fe-chat-card:hover {
  border-color: #00c7bf; transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15,27,45,.13);
}

.fe-chat-card-thumb, .fe-chat-card-ico { width: 54px; height: 54px; border-radius: 12px; flex: none; }
.fe-chat-card-thumb {
  background-size: cover; background-position: center; background-color: #eef2f6;
  box-shadow: inset 0 0 0 1px rgba(15,27,45,.06);
}
.fe-chat-card-ico {
  display: grid; place-items: center; font-size: 1.35rem;
  background: linear-gradient(135deg, rgba(0,199,191,.16), rgba(233,30,128,.12)); color: #00a8a0;
}
.fe-chat-card--vehicle .fe-chat-card-ico { background: rgba(37,99,235,.12); color: #2563eb; }

.fe-chat-card-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1 1 auto; }
.fe-chat-card-title {
  font-weight: 700; font-size: .92rem; line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fe-chat-card-sub {
  font-size: .78rem; color: #6b7a8d; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Trailing badge — teal price for vehicles, amber rating for providers. */
.fe-chat-card-meta {
  flex: none; font-weight: 700; font-size: .8rem; white-space: nowrap;
  padding: .28rem .55rem; border-radius: 8px;
  background: rgba(0,199,191,.12); color: #00897f;
}
.fe-chat-card--provider .fe-chat-card-meta,
.fe-chat-card--service  .fe-chat-card-meta { background: rgba(245,158,11,.15); color: #b45309; }

.fe-chat-card-arrow { color: #b4c0cd; font-size: .8rem; flex: none; }
.fe-chat-card:hover .fe-chat-card-arrow { color: #00c7bf; }

/* "See all …" pill button below the cards. */
.fe-chat-seeall {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  align-self: flex-start; margin-top: .1rem;
  font-size: .82rem; font-weight: 700; text-decoration: none; color: #00897f;
  border: 1px solid #cfe9e7; border-radius: 999px; padding: .45rem .95rem;
  background: rgba(0,199,191,.06); transition: background .15s ease, border-color .15s ease;
}
.fe-chat-seeall:hover { background: rgba(0,199,191,.14); border-color: #00c7bf; }
