:root{
  --black:#0a0a0a;
  --gray-900:#171717;
  --gray-700:#3a3a3a;
  --gray-600:#525252;
  --gray-500:#737373;
  --gray-300:#d4d4d4;
  --gray-200:#e5e5e5;
  --gray-100:#f2f2f2;
  --gray-50:#f8f8f8;
  --white:#ffffff;
  --green:#1a7a3c;
  --red:#c0392b;
  --radius:10px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Helvetica Neue', Arial, sans-serif;
  color:var(--black);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}
input, select, textarea{font-family:inherit; font-size:14px;}
img,.ph-img{display:block; width:100%; height:100%; object-fit:cover;}

.wrap{max-width:1280px; margin:0 auto; padding:0 48px;}

/* ---------- HEADER ---------- */
header{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 48px; border-bottom:1px solid var(--gray-100);
  position:sticky; top:0; background:var(--white); z-index:50;
}
.logo{display:flex; align-items:center;}
.logo-img{height:28px; width:auto; display:block;}
nav ul{display:flex; gap:34px; font-size:15px; font-weight:500; color:#222;}
nav a{position:relative; padding-bottom:4px;}
nav a:hover{color:var(--black);}
nav a.active{color:var(--black);}
nav a.active::after{
  content:''; position:absolute; left:0; right:0; bottom:-2px; height:2px; background:var(--black);
}
.header-right{display:flex; align-items:center; gap:22px;}
.icon-btn{width:20px; height:20px; display:flex; align-items:center; justify-content:center; color:#222;}
.signin-btn{
  background:var(--black); color:var(--white); font-weight:600; font-size:14px;
  padding:10px 22px; border-radius:8px; white-space:nowrap;
}
.mobile-toggle{display:none;}

/* ---------- BUTTONS ---------- */
.btn-primary{
  background:var(--black); color:var(--white); font-weight:700; font-size:14px;
  padding:13px 26px; border-radius:8px; display:inline-block;
}
.btn-outline{
  background:transparent; color:var(--black); font-weight:700; font-size:14px;
  padding:13px 26px; border-radius:8px; border:1.5px solid var(--gray-300); display:inline-block;
}
.btn-primary.on-dark{color:var(--black); background:var(--white);}
.btn-outline.on-dark{color:var(--white); border-color:rgba(255,255,255,0.7);}
.btn-block{width:100%; text-align:center;}

/* ---------- PAGE HERO (secondary pages) ---------- */
.page-hero{
  padding:56px 48px 48px; background:var(--gray-50); text-align:left;
}
.breadcrumb{font-size:13px; color:var(--gray-500); margin-bottom:14px;}
.breadcrumb a:hover{color:var(--black);}
.page-hero h1{font-size:36px; font-weight:700; max-width:640px; line-height:1.15;}
.page-hero p.lead{font-size:16px; color:var(--gray-600); margin-top:12px; max-width:560px;}

/* ---------- HOME HERO ---------- */
.hero{
  position:relative; height:420px; overflow:hidden;
  background:linear-gradient(120deg,#1c1c1c 0%, #2b2b2b 45%, #3a3a3a 100%);
  display:flex; align-items:center;
}
.hero-content{position:relative; z-index:2; padding-left:48px; max-width:520px;}
.hero-content h1{font-size:44px; line-height:1.08; font-weight:700; color:var(--white);}
.hero-content h1 .thin{display:block; font-weight:400; color:#c9c9c9;}
.hero-sub{color:#d0d0d0; font-size:16px; margin-top:16px;}
.hero-buttons{display:flex; gap:14px; margin-top:26px;}
.car-silhouette{
  position:absolute; right:-40px; top:0; width:70%; height:100%;
  display:flex; align-items:center; justify-content:center; z-index:1; opacity:0.95;
}
.car-silhouette svg{width:100%; height:auto; max-height:340px;}

/* ---------- SEARCH BAR ---------- */
.search-bar{
  max-width:1184px; margin:0 auto; background:var(--white); border-radius:12px;
  box-shadow:0 8px 30px rgba(0,0,0,0.12); display:flex; align-items:center; padding:10px; gap:10px;
}
.search-bar.floating{margin-top:-38px; position:relative; z-index:5;}
.search-field{
  flex:2; display:flex; align-items:center; gap:8px; padding:10px 14px;
  border-right:1px solid var(--gray-100); font-size:14px; color:var(--gray-500);
}
.search-field input{border:none; outline:none; font-size:14px; width:100%; color:var(--black);}
.search-select{
  flex:1; display:flex; align-items:center; justify-content:space-between; gap:8px;
  padding:10px 14px; border-right:1px solid var(--gray-100); font-size:14px; color:var(--gray-600); white-space:nowrap;
}
.search-select:last-of-type{border-right:none;}
.search-btn{
  background:var(--black); color:var(--white); font-weight:600; font-size:14px;
  padding:14px 34px; border-radius:8px; white-space:nowrap;
}

/* ---------- FEATURE STRIP ---------- */
.feature-strip{
  background:var(--gray-50); margin-top:28px; padding:26px 48px; display:flex; justify-content:space-between;
}
.feature-item{display:flex; align-items:flex-start; gap:12px; max-width:230px;}
.feature-icon{
  width:34px; height:34px; border-radius:50%; background:var(--gray-100);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; color:#333;
}
.feature-item h4{font-size:14px; font-weight:700; margin-bottom:2px;}
.feature-item p{font-size:12.5px; color:var(--gray-500); line-height:1.4;}

/* ---------- SECTIONS ---------- */
.section{padding:44px 48px 0;}
.section-head{display:flex; align-items:baseline; justify-content:space-between; margin-bottom:20px;}
.section-head h2{font-size:22px; font-weight:700;}
.view-all{font-size:14px; font-weight:600; color:#222; display:flex; align-items:center; gap:5px;}

/* ---------- CATEGORY GRID ---------- */
.category-grid{display:grid; grid-template-columns:repeat(6,1fr); gap:16px;}
.cat-card{cursor:pointer;}
.cat-thumb{
  aspect-ratio:4/3; border-radius:10px; overflow:hidden; background:var(--gray-100);
  margin-bottom:10px; display:flex; align-items:center; justify-content:center;
}
.cat-card h4{font-size:14px; font-weight:700;}
.cat-card p{font-size:12px; color:var(--gray-500); margin-top:2px;}

/* ---------- VEHICLE CARDS ---------- */
.vehicle-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; padding-bottom:44px;}
.vehicle-grid.cols-3{grid-template-columns:repeat(3,1fr);}
.vcard{border-radius:12px; overflow:hidden; border:1px solid var(--gray-100); background:var(--white);}
.vcard-img{position:relative; aspect-ratio:4/3; background:var(--gray-900); display:flex; align-items:center; justify-content:center;}
.vcard-year{
  position:absolute; bottom:10px; left:10px; background:rgba(0,0,0,0.75); color:var(--white);
  font-size:11px; font-weight:700; padding:4px 9px; border-radius:5px;
}
.vcard-heart{
  position:absolute; top:10px; right:10px; width:30px; height:30px; border-radius:50%;
  background:rgba(255,255,255,0.9); display:flex; align-items:center; justify-content:center; color:#111;
}
.vcard-body{padding:14px 16px 18px;}
.vcard-body h3{font-size:15px; font-weight:700; margin-bottom:4px;}
.vcard-meta{font-size:12.5px; color:var(--gray-500); margin-bottom:10px;}
.vcard-bottom{display:flex; align-items:center; justify-content:space-between;}
.vcard-price{font-size:16px; font-weight:800;}
.vcard-deal{font-size:12px; font-weight:700; color:var(--green);}
.car-icon{width:60%; height:60%; opacity:0.35;}
.vcard-img .car-icon{opacity:0.5; color:#eee;}

/* ---------- CTA BANNER ---------- */
.cta-banner{
  margin:44px 48px 48px; background:var(--gray-50); border-radius:12px;
  display:flex; align-items:center; justify-content:space-between; padding:26px 34px; gap:20px; flex-wrap:wrap;
}
.cta-left{display:flex; align-items:center; gap:16px;}
.cta-icon{
  width:38px; height:38px; border-radius:8px; border:1.5px solid var(--gray-300);
  display:flex; align-items:center; justify-content:center; color:#222; flex-shrink:0;
}
.cta-left h3{font-size:16px; font-weight:700; margin-bottom:2px;}
.cta-left p{font-size:13px; color:var(--gray-500);}

/* ---------- SHOP: FILTER SIDEBAR + LAYOUT ---------- */
.shop-layout{display:grid; grid-template-columns:260px 1fr; gap:32px; padding:36px 48px 56px;}
.filter-panel{border:1px solid var(--gray-100); border-radius:12px; padding:20px; height:fit-content;}
.filter-panel h4{font-size:14px; font-weight:700; margin-bottom:12px;}
.filter-group{margin-bottom:22px; padding-bottom:22px; border-bottom:1px solid var(--gray-100);}
.filter-group:last-child{border-bottom:none; margin-bottom:0; padding-bottom:0;}
.filter-option{display:flex; align-items:center; gap:9px; font-size:13.5px; color:var(--gray-700); margin-bottom:9px;}
.filter-option input{accent-color:var(--black);}
.filter-clear{font-size:12.5px; color:var(--gray-500); text-decoration:underline; cursor:pointer;}
.results-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:18px;}
.results-count{font-size:14px; color:var(--gray-600);}
.sort-select{
  font-size:13.5px; border:1px solid var(--gray-200); border-radius:7px; padding:8px 12px; color:var(--gray-700);
}
.pagination{display:flex; justify-content:center; gap:8px; margin-top:34px;}
.page-btn{
  width:36px; height:36px; border-radius:8px; border:1px solid var(--gray-200);
  display:flex; align-items:center; justify-content:center; font-size:13.5px; font-weight:600;
}
.page-btn.active{background:var(--black); color:var(--white); border-color:var(--black);}

/* ---------- STEPS ---------- */
.steps-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.step-card{border:1px solid var(--gray-100); border-radius:12px; padding:26px;}
.step-num{
  width:34px; height:34px; border-radius:50%; background:var(--black); color:var(--white);
  display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; margin-bottom:16px;
}
.step-card h3{font-size:16px; font-weight:700; margin-bottom:8px;}
.step-card p{font-size:13.5px; color:var(--gray-500); line-height:1.5;}

/* ---------- FORMS ---------- */
.form-card{border:1px solid var(--gray-100); border-radius:14px; padding:32px; max-width:480px; background:var(--white);}
.form-row{margin-bottom:16px;}
.form-row label{display:block; font-size:13px; font-weight:600; margin-bottom:6px;}
.form-row input, .form-row select, .form-row textarea{
  width:100%; padding:11px 14px; border:1px solid var(--gray-200); border-radius:8px; outline:none;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{border-color:var(--black);}
.form-two-col{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
.form-note{font-size:12px; color:var(--gray-500); margin-top:10px; text-align:center;}
.divider-text{display:flex; align-items:center; gap:12px; margin:20px 0; color:var(--gray-500); font-size:12.5px;}
.divider-text::before, .divider-text::after{content:''; flex:1; height:1px; background:var(--gray-200);}
.social-btn{
  width:100%; border:1px solid var(--gray-200); border-radius:8px; padding:11px; font-size:14px; font-weight:600;
  display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:10px;
}

/* ---------- FAQ ---------- */
.faq-item{border-bottom:1px solid var(--gray-100); padding:18px 0;}
.faq-q{display:flex; align-items:center; justify-content:space-between; cursor:pointer; font-weight:600; font-size:15px;}
.faq-a{font-size:13.5px; color:var(--gray-600); margin-top:10px; line-height:1.6; display:none;}
.faq-item.open .faq-a{display:block;}
.faq-item.open .faq-q svg{transform:rotate(180deg);}
.faq-q svg{transition:transform .2s;}

/* ---------- RESOURCE CARDS ---------- */
.resource-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.resource-card{border:1px solid var(--gray-100); border-radius:12px; overflow:hidden;}
.resource-thumb{aspect-ratio:16/9; background:var(--gray-100); display:flex; align-items:center; justify-content:center;}
.resource-body{padding:16px 18px 20px;}
.resource-tag{font-size:11px; font-weight:700; color:var(--green); text-transform:uppercase; letter-spacing:0.4px;}
.resource-body h3{font-size:15.5px; font-weight:700; margin:8px 0 6px; line-height:1.35;}
.resource-body p{font-size:13px; color:var(--gray-500); line-height:1.5;}
.resource-meta{font-size:12px; color:var(--gray-500); margin-top:12px;}

/* ---------- FOOTER ---------- */
footer{background:var(--gray-900); color:#d4d4d4; padding:52px 48px 24px; margin-top:40px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1fr; gap:32px; padding-bottom:36px;}
.footer-brand .logo{color:var(--white);}
.footer-brand p{font-size:13px; color:var(--gray-500); margin-top:14px; max-width:240px; line-height:1.6;}
.footer-social{display:flex; gap:10px; margin-top:18px;}
.footer-social a{
  width:32px; height:32px; border-radius:50%; border:1px solid #333; display:flex; align-items:center; justify-content:center; color:#ccc;
}
footer h5{color:var(--white); font-size:13px; font-weight:700; margin-bottom:14px; text-transform:uppercase; letter-spacing:0.4px;}
footer ul li{margin-bottom:10px;}
footer ul a{font-size:13.5px; color:#a3a3a3;}
footer ul a:hover{color:var(--white);}
.footer-bottom{
  border-top:1px solid #262626; padding-top:20px; display:flex; justify-content:space-between; align-items:center;
  font-size:12.5px; color:#737373; flex-wrap:wrap; gap:10px;
}
.footer-bottom a{color:#a3a3a3;}
.footer-bottom a:hover{color:var(--white);}

/* ---------- ACCESSIBILITY: FOCUS STATES ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible{
  outline:3px solid #1a56ff; outline-offset:2px; border-radius:4px;
}
.vcard:focus-visible{ outline-offset:4px; }

/* ---------- ICON BADGE ---------- */
.icon-btn{ position:relative; }
.icon-badge{
  position:absolute; top:-6px; right:-8px; background:var(--black); color:var(--white); font-size:10px; font-weight:700;
  min-width:16px; height:16px; border-radius:8px; display:flex; align-items:center; justify-content:center; padding:0 3px;
}

/* ---------- CURRENCY PICKER ---------- */
.currency-picker{ position:relative; }
.currency-btn{
  display:flex; align-items:center; gap:5px; border:1px solid var(--gray-200); border-radius:20px;
  padding:6px 10px; font-size:12.5px; font-weight:600; color:var(--gray-700); background:#fff; cursor:pointer;
}
.currency-btn:hover{ border-color:var(--gray-400); }
.currency-menu{
  display:none; position:absolute; top:calc(100% + 8px); right:0; background:#fff; border:1px solid var(--gray-100);
  border-radius:12px; box-shadow:0 14px 32px rgba(0,0,0,0.12); padding:6px; width:220px; max-height:340px; overflow-y:auto; z-index:120;
}
.currency-menu.open{ display:block; }
.currency-option{
  width:100%; display:flex; align-items:baseline; gap:8px; padding:9px 10px; border-radius:8px; font-size:13px;
  text-align:left; color:var(--gray-700);
}
.currency-option:hover{ background:var(--gray-50); }
.currency-option.active{ background:var(--gray-900); color:#fff; }
.currency-option .currency-code{ font-weight:700; min-width:36px; }
.currency-option .currency-name{ color:inherit; opacity:0.75; font-size:12px; }
.currency-menu-mobile{
  display:flex; flex-wrap:wrap; gap:6px; position:static; box-shadow:none; border:none; padding:4px 0; width:auto; max-height:none;
}
.currency-menu-mobile .currency-option{
  width:auto; border:1px solid var(--gray-200); border-radius:20px; padding:7px 12px;
}
.mobile-currency-label{ font-size:12px; font-weight:700; color:var(--gray-500); text-transform:uppercase; letter-spacing:0.03em; margin:6px 4px 4px; }

/* ---------- MOBILE NAV ---------- */
.mobile-toggle{
  display:none; width:36px; height:36px; align-items:center; justify-content:center; color:var(--black); border-radius:8px;
}
.mobile-nav-panel{
  display:none; position:fixed; inset:64px 0 0 0; background:var(--white); z-index:60; padding:20px 24px; overflow-y:auto;
  border-top:1px solid var(--gray-100);
}
.mobile-nav-panel.open{ display:block; }
.mobile-nav-panel ul{ display:flex; flex-direction:column; gap:2px; }
.mobile-nav-panel a{ display:block; padding:14px 4px; font-size:16px; font-weight:600; border-bottom:1px solid var(--gray-100); }
.mobile-nav-divider{ height:14px; }

/* ---------- TOAST ---------- */
.ww-toast{
  position:fixed; bottom:22px; left:50%; transform:translateX(-50%) translateY(16px); background:var(--black); color:var(--white);
  padding:13px 22px; border-radius:999px; font-size:14px; font-weight:600; opacity:0; pointer-events:none;
  transition:all .25s ease; z-index:500; white-space:nowrap; box-shadow:0 10px 30px rgba(0,0,0,0.25);
}
.ww-toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

/* ---------- EMPTY STATE ---------- */
.empty-state{
  grid-column:1/-1; text-align:center; padding:60px 20px; color:var(--gray-500); border:1px dashed var(--gray-200); border-radius:12px;
}
.empty-state svg{ margin-bottom:12px; color:var(--gray-300); }
.empty-state h4{ font-size:16px; font-weight:700; color:var(--black); margin-bottom:6px; }
.empty-state p{ font-size:13.5px; max-width:360px; margin:0 auto; }
.empty-state .btn-primary, .empty-state .btn-outline{ margin-top:16px; }

/* ---------- FORM VALIDATION ---------- */
.form-row.has-error input, .form-row.has-error select, .form-row.has-error textarea{ border-color:var(--red); }
.field-error{ font-size:12px; color:var(--red); margin-top:5px; }
.form-success{
  display:flex; gap:14px; align-items:flex-start; background:#f0f8f2; border:1px solid #cdeada; border-radius:12px; padding:20px 22px;
}
.form-success svg{ color:var(--green); flex-shrink:0; margin-top:2px; }
.form-success h4{ font-size:15px; font-weight:700; margin-bottom:4px; }
.form-success p{ font-size:13.5px; color:var(--gray-600); line-height:1.5; }

/* ---------- VEHICLE DETAIL / GALLERY ---------- */
.vdetail-layout{ display:grid; grid-template-columns:1.35fr 0.95fr; gap:40px; padding:32px 48px 8px; align-items:start; }
@media(max-width:980px){ .vdetail-layout{ grid-template-columns:1fr; padding:24px 20px 0; } }
.gallery-main{ position:relative; aspect-ratio:16/10; border-radius:14px; overflow:hidden; background:var(--gray-900); }
.gallery-main .vcard-heart{ top:14px; right:14px; }
.gallery-badge{
  position:absolute; left:14px; bottom:14px; background:rgba(0,0,0,0.75); color:var(--white); font-size:12px; font-weight:700;
  padding:5px 11px; border-radius:6px;
}
.gallery-thumbs{ display:flex; gap:10px; margin-top:10px; }
.gallery-thumbs button{
  flex:1; aspect-ratio:4/3; border-radius:8px; overflow:hidden; border:2px solid transparent; padding:0; cursor:pointer;
}
.gallery-thumbs button.active{ border-color:var(--black); }
.vdetail-head{ display:flex; align-items:flex-start; justify-content:space-between; gap:16px; margin-top:22px; }
.vdetail-head h1{ font-size:26px; font-weight:700; line-height:1.2; }
.vdetail-sub{ font-size:13.5px; color:var(--gray-500); margin-top:6px; }
.vdetail-price{ font-size:28px; font-weight:800; white-space:nowrap; }
.vdetail-deal{ display:inline-block; font-size:12.5px; font-weight:700; color:var(--green); margin-top:4px; }
.spec-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px 20px; margin:22px 0; padding:20px 0; border-top:1px solid var(--gray-100); border-bottom:1px solid var(--gray-100); }
.spec-grid div b{ display:block; font-size:14px; font-weight:700; }
.spec-grid div span{ font-size:12.5px; color:var(--gray-500); }
.feature-list{ display:grid; grid-template-columns:1fr 1fr; gap:10px 20px; margin:16px 0 6px; }
.feature-list li{ font-size:13.5px; color:var(--gray-700); display:flex; align-items:center; gap:8px; }
.feature-list li svg{ color:var(--green); flex-shrink:0; }
.vdetail-desc{ font-size:14px; color:var(--gray-600); line-height:1.7; margin:14px 0; }

.buy-box{ border:1px solid var(--gray-100); border-radius:14px; padding:24px; position:sticky; top:88px; }
.buy-box .price{ font-size:26px; font-weight:800; }
.buy-box .deal-tag{ color:var(--green); font-weight:700; font-size:13px; margin-bottom:14px; display:block; }
.buy-box .btn-primary, .buy-box .btn-outline{ width:100%; text-align:center; margin-bottom:10px; }
.seller-card{ display:flex; gap:12px; align-items:flex-start; padding-top:18px; margin-top:18px; border-top:1px solid var(--gray-100); }
.seller-avatar{
  width:42px; height:42px; border-radius:50%; background:var(--gray-100); display:flex; align-items:center; justify-content:center;
  font-weight:700; flex-shrink:0; color:var(--gray-700);
}
.seller-card h4{ font-size:14px; font-weight:700; }
.seller-card .seller-meta{ font-size:12.5px; color:var(--gray-500); margin-top:2px; }
.seller-rating{ font-size:12.5px; color:var(--gray-700); margin-top:4px; font-weight:600; }
.mini-calc{ background:var(--gray-50); border-radius:10px; padding:16px; margin-top:16px; font-size:13px; }
.mini-calc-row{ display:flex; justify-content:space-between; padding:5px 0; }
.mini-calc-row.total{ font-weight:700; border-top:1px solid var(--gray-200); margin-top:6px; padding-top:10px; }

/* ---------- DASHBOARD / ACCOUNT ---------- */
.dash-layout{ display:grid; grid-template-columns:230px 1fr; gap:32px; padding:36px 48px 56px; align-items:start; }
@media(max-width:900px){ .dash-layout{ grid-template-columns:1fr; padding:24px 20px 48px; } }
.dash-profile{ display:flex; align-items:center; gap:12px; padding:16px; border:1px solid var(--gray-100); border-radius:12px; margin-bottom:16px; }
.dash-avatar{ width:44px; height:44px; border-radius:50%; background:var(--black); color:var(--white); display:flex; align-items:center; justify-content:center; font-weight:700; flex-shrink:0; }
.dash-profile h4{ font-size:14px; font-weight:700; }
.dash-profile p{ font-size:12px; color:var(--gray-500); }
.dash-nav{ border:1px solid var(--gray-100); border-radius:12px; overflow:hidden; }
.dash-nav button{
  width:100%; text-align:left; padding:13px 16px; font-size:13.5px; font-weight:600; color:var(--gray-700);
  border-bottom:1px solid var(--gray-100); display:flex; align-items:center; gap:10px;
}
.dash-nav button:last-child{ border-bottom:none; }
.dash-nav button.active{ background:var(--black); color:var(--white); }
.dash-nav button svg{ flex-shrink:0; }
.dash-panel{ display:none; }
.dash-panel.active{ display:block; }
.dash-panel-head{ display:flex; align-items:baseline; justify-content:space-between; margin-bottom:18px; }
.dash-panel-head h2{ font-size:20px; font-weight:700; }
.list-card{ border:1px solid var(--gray-100); border-radius:12px; padding:18px 20px; display:flex; align-items:center; gap:16px; margin-bottom:12px; }
.list-card-thumb{ width:72px; height:54px; border-radius:8px; overflow:hidden; flex-shrink:0; background:var(--gray-900); }
.list-card-body{ flex:1; min-width:0; }
.list-card-body h4{ font-size:14.5px; font-weight:700; }
.list-card-body p{ font-size:12.5px; color:var(--gray-500); margin-top:3px; }
.status-pill{ font-size:11.5px; font-weight:700; padding:4px 10px; border-radius:20px; white-space:nowrap; }
.status-pill.pending{ background:#fdf3dc; color:#8a6116; }
.status-pill.reserved, .status-pill.active{ background:#e8f0fe; color:#1a56ff; }
.status-pill.complete, .status-pill.delivered{ background:#e5f5ea; color:var(--green); }

/* ---------- CHECKOUT / STEPPER ---------- */
.stepper{ display:flex; align-items:center; gap:10px; padding:0 48px; margin-bottom:8px; flex-wrap:wrap; }
@media(max-width:700px){ .stepper{ padding:0 20px; } }
.step-pill{ display:flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:var(--gray-400); }
.step-pill .num{ width:24px; height:24px; border-radius:50%; background:var(--gray-100); color:var(--gray-500); display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; }
.step-pill.active{ color:var(--black); }
.step-pill.active .num{ background:var(--black); color:var(--white); }
.step-pill.done .num{ background:var(--green); color:var(--white); }
.step-sep{ width:24px; height:1px; background:var(--gray-200); }
.checkout-layout{ display:grid; grid-template-columns:1.3fr 0.9fr; gap:36px; padding:28px 48px 56px; align-items:start; }
@media(max-width:980px){ .checkout-layout{ grid-template-columns:1fr; padding:20px 20px 48px; } }
.summary-card{ border:1px solid var(--gray-100); border-radius:14px; padding:22px; position:sticky; top:88px; }
.summary-card h4{ font-size:14px; font-weight:700; margin-bottom:14px; }
.summary-vehicle{ display:flex; gap:12px; align-items:center; padding-bottom:16px; border-bottom:1px solid var(--gray-100); margin-bottom:14px; }
.summary-vehicle .thumb{ width:76px; height:56px; border-radius:8px; overflow:hidden; flex-shrink:0; }
.deliver-option{
  border:1.5px solid var(--gray-200); border-radius:10px; padding:14px 16px; display:flex; align-items:flex-start; gap:12px;
  cursor:pointer; margin-bottom:10px;
}
.deliver-option.selected{ border-color:var(--black); background:var(--gray-50); }
.deliver-option input{ margin-top:3px; accent-color:var(--black); }
.deliver-option h5{ font-size:14px; font-weight:700; }
.deliver-option p{ font-size:12.5px; color:var(--gray-500); margin-top:2px; }
.confirm-box{ text-align:center; padding:60px 20px; max-width:520px; margin:0 auto; }
.confirm-check{
  width:64px; height:64px; border-radius:50%; background:#e5f5ea; color:var(--green); display:flex; align-items:center;
  justify-content:center; margin:0 auto 20px;
}
.confirm-box h1{ font-size:26px; font-weight:700; margin-bottom:10px; }
.confirm-box p{ color:var(--gray-600); font-size:14.5px; line-height:1.6; margin-bottom:6px; }
.confirm-id{ font-family:monospace; font-size:13px; background:var(--gray-50); padding:8px 14px; border-radius:8px; display:inline-block; margin:14px 0 26px; }

/* ---------- ARTICLE PAGE ---------- */
.article-hero{ padding:44px 48px 0; max-width:760px; margin:0 auto; }
.article-hero .breadcrumb{ }
.article-body{ max-width:760px; margin:0 auto; padding:24px 48px 56px; font-size:16px; line-height:1.8; color:var(--gray-700); }
.article-body p{ margin-bottom:20px; }
.article-thumb{ aspect-ratio:16/8; border-radius:14px; overflow:hidden; margin:24px 0; background:var(--gray-900); }
.article-meta-row{ display:flex; gap:14px; align-items:center; font-size:13px; color:var(--gray-500); margin:14px 0 4px; }

/* ---------- ABOUT / CONTACT / SIMPLE PAGES ---------- */
.value-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media(max-width:800px){ .value-grid{ grid-template-columns:1fr; } }
.stat-block{ display:flex; gap:36px; flex-wrap:wrap; padding:36px 48px 8px; }
.legal-content{ max-width:760px; margin:0 auto; padding:40px 48px 64px; font-size:14.5px; line-height:1.8; color:var(--gray-700); }
.legal-content h2{ font-size:18px; font-weight:700; margin:28px 0 10px; color:var(--black); }
.legal-content p, .legal-content li{ margin-bottom:12px; }
.legal-content ul{ padding-left:20px; list-style:disc; }
.error-page{ text-align:center; padding:90px 20px; }
.error-page .code{ font-size:96px; font-weight:800; color:var(--gray-200); line-height:1; }
.error-page h1{ font-size:24px; font-weight:700; margin:12px 0 10px; }
.error-page p{ color:var(--gray-500); margin-bottom:26px; }
.contact-layout{ display:grid; grid-template-columns:1fr 1fr; gap:40px; padding:36px 48px 56px; }
@media(max-width:900px){ .contact-layout{ grid-template-columns:1fr; } }
.contact-info-item{ display:flex; gap:14px; margin-bottom:22px; }
.contact-info-item .ico{ width:38px; height:38px; border-radius:50%; background:var(--gray-100); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-info-item h4{ font-size:14.5px; font-weight:700; margin-bottom:2px; }
.contact-info-item p{ font-size:13.5px; color:var(--gray-500); }

/* ---------- RESPONSIVE ---------- */
@media (max-width:1100px){
  .category-grid{grid-template-columns:repeat(3,1fr);}
  .vehicle-grid{grid-template-columns:repeat(2,1fr);}
  .shop-layout{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr; row-gap:28px;}
  .steps-grid{grid-template-columns:1fr;}
  .resource-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:700px){
  header{padding:14px 16px;}
  nav{display:none;}
  .mobile-toggle{display:flex;}
  .header-right{gap:10px;}
  .header-right .search-icon-link{display:none;} /* search icon redundant with shop link on mobile */
  .currency-picker{display:none;} /* available via the mobile nav panel instead */
  .signin-btn{padding:9px 16px; font-size:13px;}
  .section{padding:32px 20px 0;}
  .page-hero{padding:36px 20px;}
  .feature-strip{flex-wrap:wrap; gap:20px; padding:20px;}
  .category-grid{grid-template-columns:repeat(2,1fr);}
  .vehicle-grid, .vehicle-grid.cols-3{grid-template-columns:1fr;}
  .search-bar{flex-wrap:wrap; margin:16px 20px 0;}
  .search-field, .search-select{flex:1 1 100%; border-right:none; border-bottom:1px solid var(--gray-100);}
  .cta-banner{flex-direction:column; align-items:flex-start; gap:16px; margin:32px 20px;}
  .hero-content h1{font-size:32px;}
  .hero{height:auto; padding:40px 0;}
  footer{padding:36px 20px 20px;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .resource-grid{grid-template-columns:1fr;}
  .wrap{padding:0 20px;}
  .vdetail-layout, .checkout-layout, .dash-layout{padding-left:16px; padding-right:16px;}
  .buy-box, .summary-card{position:static;}
  .stat-block{padding:28px 20px 0; gap:24px;}
  .contact-layout{padding:28px 20px 40px;}
  .article-body, .article-hero{padding-left:20px; padding-right:20px;}
  .legal-content{padding:28px 20px 48px;}
}
