:root{
  --bg:#f2f1ec;
  --surface:#fbfaf6;
  --surface-2:#f6f5f0;
  --ink:#121512;
  --muted:#737970;
  --line:rgba(18,21,18,.10);
  --accent:#6da943;
  --accent-deep:#4e7d31;
  --accent-soft:#e7f1df;
  --danger:#c62828;
  --shadow:0 22px 60px rgba(24,29,24,.09);
  --shadow-soft:0 10px 32px rgba(24,29,24,.06);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:15px;
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  color:var(--ink);
  background:
    radial-gradient(circle at 12% 8%,rgba(109,169,67,.08),transparent 28%),
    radial-gradient(circle at 88% 20%,rgba(18,21,18,.04),transparent 24%),
    var(--bg);
  -webkit-font-smoothing:antialiased;
}
button,input,select{font:inherit}
button{border:0}
.shell{width:min(1180px,calc(100% - 36px));margin-inline:auto}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(242,241,236,.80);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(18,21,18,.07);
}
.header-inner{
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand-mark{
  color:var(--ink);
  text-decoration:none;
  font-weight:800;
  letter-spacing:-.035em;
  font-size:21px;
  display:flex;
  align-items:center;
  gap:9px;
}
.brand-mark-dot{
  width:11px;height:11px;border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(109,169,67,.12);
}
.header-copy{display:flex;gap:18px;align-items:center}
.eyebrow{
  font-size:10px;font-weight:800;letter-spacing:.16em;color:var(--accent-deep);
}
.header-note{font-size:12px;color:var(--muted)}

/* Page / Hero */
.page{padding:28px 0 70px}
.vehicle-stage{
  min-height:390px;
  position:relative;
  overflow:hidden;
  border-radius:34px;
  padding:44px 48px;
  background:
    linear-gradient(118deg,rgba(10,13,11,.97),rgba(26,31,26,.94));
  color:#fff;
  box-shadow:0 28px 70px rgba(17,20,17,.17);
  display:grid;
  grid-template-columns:minmax(300px,.8fr) minmax(440px,1.2fr);
  align-items:center;
  isolation:isolate;
}
.stage-glow{position:absolute;border-radius:999px;filter:blur(1px);z-index:-1}
.stage-glow-a{
  width:420px;height:420px;right:-120px;top:-180px;
  background:radial-gradient(circle,rgba(109,169,67,.24),rgba(109,169,67,0) 67%);
}
.stage-glow-b{
  width:340px;height:340px;left:35%;bottom:-280px;
  background:radial-gradient(circle,rgba(255,255,255,.10),rgba(255,255,255,0) 68%);
}
.stage-copy{z-index:2;align-self:center}
.stage-kicker{
  color:#a6d486;font-weight:800;font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  margin-bottom:14px;
}
.stage-copy h1{
  margin:0;max-width:470px;font-size:clamp(34px,4vw,55px);
  line-height:.98;letter-spacing:-.055em;font-weight:750;
}
.stage-copy p{
  margin:17px 0 0;max-width:440px;color:rgba(255,255,255,.61);
  font-size:14px;line-height:1.55;
}
.hero-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:25px}
.hero-chip{
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.77);
  padding:8px 11px;border-radius:999px;font-size:11px;font-weight:650;
}
.hero-wrap{min-width:0;display:flex;align-items:center;justify-content:center}
.hero-card{
  position:relative;width:115%;height:315px;
  display:flex;align-items:center;justify-content:center;
  margin-left:-7%;
}
.hero-card img{
  position:relative;z-index:2;
  width:96%;height:92%;object-fit:contain;object-position:center center;
  display:block;
  filter:drop-shadow(0 26px 25px rgba(0,0,0,.32));
  transition:opacity .25s ease,transform .25s ease;
}
#carImage.is-changing{opacity:.12;transform:translateX(8px) scale(.985)}
.car-shadow{
  position:absolute;z-index:1;bottom:27px;left:18%;right:12%;height:27px;
  background:rgba(0,0,0,.35);filter:blur(18px);border-radius:50%;
}
.stage-index{
  position:absolute;right:27px;bottom:21px;
  font-size:9px;letter-spacing:.18em;color:rgba(255,255,255,.32);
}

/* Step progress */
.config-progress{
  margin:20px 0;
  min-height:86px;
  background:rgba(251,250,246,.72);
  backdrop-filter:blur(12px);
  border:1px solid rgba(18,21,18,.07);
  border-radius:22px;
  display:flex;align-items:center;padding:15px 22px;
  box-shadow:var(--shadow-soft);
}
.progress-item{display:flex;align-items:center;gap:10px;min-width:135px}
.progress-number{
  width:31px;height:31px;border-radius:50%;
  display:grid;place-items:center;
  border:1px solid var(--line);color:var(--muted);font-size:11px;font-weight:800;
  transition:.2s ease;
}
.progress-item strong{display:block;font-size:12px}
.progress-item small{
  display:block;max-width:112px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  margin-top:2px;color:var(--muted);font-size:10px;
}
.progress-item.is-done .progress-number{
  color:white;background:var(--accent);border-color:var(--accent);
}
.progress-item.is-done .progress-number::before{content:"✓"}
.progress-item.is-done .progress-number{font-size:0}
.progress-item.is-done .progress-number::before{font-size:12px}
.progress-line{height:1px;flex:1;min-width:20px;background:var(--line);margin:0 10px}

/* Workspace */
.workspace{
  display:grid;grid-template-columns:minmax(0,1.55fr) minmax(330px,.75fr);
  gap:20px;align-items:start;
}
.panel{
  background:rgba(251,250,246,.92);
  border:1px solid rgba(18,21,18,.07);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
}
.form-panel{padding:28px}
.panel-heading,.result-heading{
  display:flex;align-items:flex-start;justify-content:space-between;gap:20px;
  padding-bottom:22px;margin-bottom:22px;border-bottom:1px solid var(--line);
}
.panel-heading>div,.result-heading>div{display:flex;align-items:baseline;gap:11px}
.panel-heading h2,.result-heading h2{
  margin:0;font-size:20px;letter-spacing:-.025em;font-weight:750;
}
.panel-kicker{font-size:10px;color:var(--accent-deep);font-weight:850;letter-spacing:.12em}
.panel-badge{
  font-size:9px;font-weight:850;letter-spacing:.12em;
  color:var(--accent-deep);background:var(--accent-soft);
  padding:7px 9px;border-radius:999px;
}

/* Form */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field-block{min-width:0}
.field-block-wide{grid-column:1/-1}
.field-block label{
  display:flex;align-items:center;min-height:18px;
  margin:0 0 7px;color:#4d534d;font-size:11px;font-weight:700;letter-spacing:.015em;
}
.label-note{margin-left:5px;color:#969b95;font-weight:500}
input,select,.brand-button,.extras-toggle{
  width:100%;min-height:48px;
  border:1px solid rgba(18,21,18,.11);
  border-radius:var(--radius-md);
  background:#fff;
  color:var(--ink);
  padding:0 14px;
  outline:none;
  box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
  transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease,background .18s ease;
}
input:focus,select:focus,.brand-button:focus-visible,.extras-toggle:focus-visible{
  border-color:rgba(109,169,67,.8);
  box-shadow:0 0 0 4px rgba(109,169,67,.12);
}
input::placeholder{color:#b2b5b0}
select{cursor:pointer}
.section-break{
  display:flex;align-items:center;gap:10px;
  margin:28px 0 17px;padding-top:25px;border-top:1px solid var(--line);
}
.section-break span{
  width:27px;height:27px;border-radius:8px;display:grid;place-items:center;
  color:var(--accent-deep);background:var(--accent-soft);
  font-size:9px;font-weight:850;
}
.section-break strong{font-size:13px;letter-spacing:-.01em}

/* Actions */
.actions{
  display:flex;gap:10px;align-items:center;margin-top:26px;
  padding-top:22px;border-top:1px solid var(--line);
}
.actions button{
  min-height:48px;border-radius:14px;padding:0 18px;cursor:pointer;
  font-weight:750;transition:transform .13s ease,box-shadow .18s ease,background .18s ease;
}
.actions button:hover{transform:translateY(-1px)}
.primary-action{
  flex:1;justify-content:space-between;display:flex;align-items:center;
  color:#fff;background:var(--ink);box-shadow:0 12px 28px rgba(18,21,18,.17);
}
.primary-action:hover{background:#242924}
.button-arrow{
  width:28px;height:28px;border-radius:50%;display:grid;place-items:center;
  background:rgba(255,255,255,.10);font-size:15px;
}
button.secondary{
  background:#fff;color:var(--ink);border:1px solid var(--line);
}

/* Brand picker */
.brand-picker{position:relative;width:100%}
.brand-button{
  text-align:left;display:flex;align-items:center;justify-content:space-between;gap:10px;cursor:pointer;
}
.brand-button-logo{
  width:28px;height:28px;border-radius:999px;background:#f0f1ed;
  flex-shrink:0;background-size:contain;background-repeat:no-repeat;background-position:center;
}
.brand-button-logo.has-logo{background-color:transparent}
.brand-button-label{flex:1;font-size:13px}
.brand-button-arrow,.extras-toggle-arrow{font-size:14px;color:#7f857e}
.brand-menu{
  position:absolute;top:calc(100% + 7px);left:0;right:0;z-index:160;
  max-height:300px;overflow:auto;display:none;
  padding:7px;background:#fff;border:1px solid var(--line);border-radius:18px;
  box-shadow:0 24px 55px rgba(18,21,18,.18);
}
.brand-menu.open{display:block}
.brand-option{
  width:100%;min-height:47px;padding:6px 9px;border-radius:12px;
  background:transparent;color:var(--ink);display:flex;align-items:center;gap:10px;cursor:pointer;
}
.brand-option:hover{background:#f4f5f1;transform:none;box-shadow:none}
.brand-option-logo{
  width:33px;height:33px;border-radius:999px;background-size:contain;background-repeat:no-repeat;background-position:center;
}
.brand-option-label{flex:1;text-align:left;font-size:12px}
.brand-select-native{display:none}

/* Extras */
.extras-dropdown{position:relative;width:100%}
.extras-toggle{
  display:flex;align-items:center;justify-content:space-between;cursor:pointer;color:var(--ink);
}
.extras-toggle:disabled{cursor:not-allowed;opacity:.55}
.extras-panel{
  position:absolute;top:calc(100% + 7px);left:0;right:0;z-index:150;
  max-height:300px;overflow-y:auto;display:none;
  padding:7px;background:#fff;border:1px solid var(--line);border-radius:18px;
  box-shadow:0 24px 55px rgba(18,21,18,.18);
}
.extras-dropdown.open .extras-panel{display:block}
.extras-option{
  position:relative;width:100%;display:flex;align-items:flex-start;gap:12px;
  padding:10px 11px;border-radius:12px;cursor:pointer;transition:background .15s ease;
}
.extras-option:hover{background:#f4f5f1}
.extras-option-text{flex:1;font-size:12px;color:var(--ink);line-height:1.4}
.extras-option input[type="checkbox"]{
  appearance:none;-webkit-appearance:none;width:20px;height:20px;min-height:20px;padding:0;
  border-radius:6px;border:1.5px solid #c9cdc6;background:#fff;position:relative;margin-top:1px;cursor:pointer;
}
.extras-option input[type="checkbox"]::after{
  content:"";position:absolute;left:5px;top:2px;width:6px;height:10px;
  border-right:2px solid white;border-bottom:2px solid white;
  opacity:0;transform:rotate(40deg) scale(.7);transition:.14s ease;
}
.extras-option input[type="checkbox"]:checked{background:var(--accent);border-color:var(--accent)}
.extras-option input[type="checkbox"]:checked::after{opacity:1;transform:rotate(40deg) scale(1)}

/* Tooltips / warnings */
.tooltip{
  display:inline-grid;place-items:center;position:relative;cursor:help;margin-left:5px;
  width:16px;height:16px;border-radius:50%;background:#e9ebe6;color:#686e67;font-size:10px;font-weight:850;
}
.tooltip .tooltiptext,.category-warning-text,.field-warning-text{
  visibility:hidden;opacity:0;position:absolute;z-index:180;
  width:300px;padding:10px 12px;border-radius:13px;background:#171a17;color:#f5f6f4;
  font-size:11px;font-weight:500;line-height:1.45;text-align:left;
  box-shadow:0 16px 38px rgba(0,0,0,.22);pointer-events:none;transition:opacity .16s ease;
}
.tooltip .tooltiptext{left:50%;bottom:calc(100% + 9px);transform:translateX(-50%)}
.tooltip:hover .tooltiptext{visibility:visible;opacity:.97}
.required-field-wrap,.category-field-wrap{position:relative;display:flex;align-items:center;gap:8px;width:100%}
.required-field-wrap input,.category-field-wrap select{flex:1;min-width:0}

/* Composite first-registration date */
.first-reg-wrap{align-items:center}
.first-reg-grid{display:grid;grid-template-columns:.72fr 1.35fr .82fr;gap:8px;flex:1;min-width:0}
.first-reg-grid select,.first-reg-grid input{min-width:0;width:100%}
.first-reg-grid input[readonly]{background:#f6f7f4;color:#3f463e;font-weight:750;cursor:default}
.required-field-wrap.has-warning .first-reg-grid select,
.required-field-wrap.has-warning .first-reg-grid input{
  border:1.5px solid var(--danger);box-shadow:0 0 0 4px rgba(198,40,40,.09);
}
@media (max-width:620px){
  .first-reg-grid{grid-template-columns:.7fr 1.35fr .85fr;gap:6px}
  .first-reg-grid select,.first-reg-grid input{padding:0 9px;font-size:12px}
}
.required-field-wrap.has-warning input,.category-field-wrap.has-warning select{
  border:1.5px solid var(--danger);box-shadow:0 0 0 4px rgba(198,40,40,.09);
}
.field-warning,.category-warning{
  display:none;position:relative;width:25px;height:25px;flex:0 0 25px;border-radius:50%;
  align-items:center;justify-content:center;background:var(--danger);color:#fff;font-weight:850;font-size:13px;cursor:help;
}
.required-field-wrap.has-warning .field-warning,.category-field-wrap.has-warning .category-warning{display:inline-flex}
.category-warning-text,.field-warning-text{right:0;bottom:calc(100% + 9px)}
.category-warning:hover .category-warning-text,.field-warning:hover .field-warning-text{visibility:visible;opacity:.97}
.category-error-message{color:#a22121;margin:0;font-size:13px}

/* Results column */
.side-column{
  position:static;
  display:block;
}
.compatibility-summary{display:none}

/* Results */
.result-panel{padding:24px}
.result-heading{margin:0 0 15px;padding-bottom:16px}
.result-icon{
  width:33px;height:33px;border-radius:10px;background:var(--accent-soft);color:var(--accent-deep);
  display:grid;place-items:center;font-size:14px;font-weight:850;
}
#results{font-size:12px;color:#4f554e}
#results p{
  display:flex;justify-content:space-between;gap:12px;
  margin:0;padding:9px 0;border-bottom:1px solid rgba(18,21,18,.07);line-height:1.35;
}
#results p strong{font-weight:650;color:#282d28}
#results h3{
  position:relative;
  margin:16px 0 0;
  padding:24px 22px;
  border-radius:16px;
  background:#171a17;
  color:#fff;
  font-size:26px;
  line-height:1.18;
  letter-spacing:-.04em;
  font-weight:800;
}
.empty-result{
  min-height:112px;display:flex;align-items:center;gap:13px;color:var(--muted);
}
.empty-result p{border:0!important;display:block!important;padding:0!important;margin:0!important}
.empty-result-icon{
  width:35px;height:35px;flex:0 0 35px;border-radius:11px;background:#eff1ec;color:#7d837b;display:grid;place-items:center;
}
.legal{padding:0 10px;color:#81867f;font-size:9px;line-height:1.45}
.legal strong{color:#4a5049;font-size:11px}
.legal p{margin:5px 0}
.legal span{color:#a0a49f}


/* Intro / site explanation */
.intro-block{
  padding:30px 4px 28px;
  max-width:820px;
}
.intro-kicker{
  display:block;
  margin-bottom:10px;
  color:var(--accent-deep);
  font-size:10px;
  line-height:1;
  font-weight:850;
  letter-spacing:.16em;
}
.intro-block h1{
  margin:0;
  max-width:760px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.03;
  letter-spacing:-.05em;
  font-weight:780;
}
.intro-block p{
  max-width:720px;
  margin:15px 0 0;
  color:#666d65;
  font-size:14px;
  line-height:1.65;
}

/* Responsive */
@media(max-width:980px){
  .vehicle-stage{grid-template-columns:1fr 1fr;padding:38px 34px;min-height:350px}
  .workspace{grid-template-columns:1fr}
  .side-column{position:static;display:grid;grid-template-columns:1fr 1fr;align-items:start}
  .legal{grid-column:1/-1}
}
@media(max-width:760px){
  .shell{width:min(100% - 22px,1180px)}
  .header-inner{min-height:62px}.header-copy{display:none}
  .page{padding-top:15px}
  .vehicle-stage{
    min-height:500px;padding:28px 22px 18px;
    grid-template-columns:1fr;grid-template-rows:auto 1fr;
  }
  .stage-copy h1{font-size:38px}
  .hero-card{height:270px;width:108%;margin-left:-4%}
  .hero-wrap{margin-top:5px}
  .stage-index{display:none}
  .config-progress{
    overflow-x:auto;justify-content:flex-start;padding:13px 14px;border-radius:17px;
  }
  .progress-item{min-width:110px}
  .progress-line{min-width:24px}
  .form-panel{padding:20px;border-radius:22px}
  .form-grid{grid-template-columns:1fr}
  .field-block-wide{grid-column:auto}
  .side-column{display:flex}
  .actions{align-items:stretch;flex-direction:column}
  .actions button{width:100%}
  .result-panel{border-radius:22px}
}
@media(max-width:430px){
  .stage-copy h1{font-size:34px}
  .vehicle-stage{min-height:475px}
  .hero-card{height:235px;width:108%;margin-left:-4%}
  .hero-chips{gap:6px}.hero-chip{font-size:10px}
  .panel-heading h2,.result-heading h2{font-size:18px}
  .tooltip .tooltiptext,.category-warning-text,.field-warning-text{width:250px}
}


/* =========================================================
   Integrated 01 + 02 configurator inside the dark hero stage
   ========================================================= */
.vehicle-stage-integrated{
  min-height:650px;
  grid-template-columns:minmax(0,1.42fr) minmax(340px,.78fr);
  gap:18px;
  padding:38px 42px 34px;
  align-items:stretch;
}
.integrated-stage-copy{align-self:stretch;position:relative;z-index:4;min-width:0}
.integrated-stage-copy h1{font-size:clamp(38px,4.1vw,62px);max-width:720px;margin-bottom:8px}
.integrated-stage-copy > p{margin:0 0 20px;max-width:700px}
.integrated-config{max-width:820px}
.integrated-config #calcForm{margin:0}
.integrated-config .form-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px 12px;
}
.integrated-config .field-block,.integrated-config .field-block-wide{grid-column:auto;min-width:0}
.integrated-config label{
  color:rgba(255,255,255,.82);
  font-size:10px;
  font-weight:750;
  margin:0 0 5px;
}
.integrated-config .label-note{color:rgba(255,255,255,.4)}
.integrated-config select,
.integrated-config input,
.integrated-config .brand-button,
.integrated-config .extras-toggle{
  width:100%;
  min-height:44px;
  height:44px;
  border-radius:11px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.055);
  color:#f5f7f3;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035);
  font-size:11px;
}
.integrated-config select{color-scheme:dark;padding-left:12px}
.integrated-config input{padding:0 12px}
.integrated-config input::placeholder{color:rgba(255,255,255,.34)}
.integrated-config select:focus,
.integrated-config input:focus,
.integrated-config .brand-button:focus,
.integrated-config .extras-toggle:focus{border-color:rgba(167,224,126,.65);box-shadow:0 0 0 3px rgba(167,224,126,.08);outline:none}
.integrated-config .brand-button{padding:0 12px}
.integrated-config .brand-button-label,.integrated-config .extras-toggle-label{color:rgba(255,255,255,.78)}
.integrated-config .brand-button-arrow,.integrated-config .extras-toggle-arrow{color:#d9dfd5}
.integrated-config .brand-menu,.integrated-config .extras-panel{z-index:30;background:#1b201c;border-color:rgba(255,255,255,.13);color:#fff}
.integrated-config .section-break{
  margin:17px 0 12px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.15);
  color:rgba(255,255,255,.7);
}
.integrated-config .section-break span{color:var(--accent);font-size:9px}
.integrated-config .section-break strong{font-size:10px;letter-spacing:.14em;text-transform:uppercase}
.integrated-config .first-reg-grid{grid-template-columns:.7fr 1.35fr .85fr;gap:5px}
.integrated-config .first-reg-grid select,.integrated-config .first-reg-grid input{min-width:0;padding-left:7px;padding-right:7px;font-size:9px}
.integrated-config .actions{margin-top:18px;display:flex;gap:10px;align-items:center}
.integrated-config .primary-action{
  min-height:50px;
  padding:0 24px;
  border-radius:14px;
  background:linear-gradient(135deg,#b9ef98,#8fd46b);
  color:#11170f;
  box-shadow:0 12px 28px rgba(119,185,80,.18);
}
.integrated-config .primary-action span:first-child::after{content:' Τέλους Ταξινόμησης'}
.integrated-config .secondary{
  min-height:44px;border-radius:999px;padding:0 18px;
  color:rgba(255,255,255,.68);background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.12)
}
.integrated-hero-wrap{align-self:center;position:relative;z-index:2;min-width:0}
.integrated-hero-wrap .hero-card{width:118%;height:430px;margin-left:-18%;overflow:visible}
.integrated-hero-wrap #carImage{max-width:100%;max-height:100%;object-fit:contain;filter:drop-shadow(0 28px 22px rgba(0,0,0,.38))}
.vehicle-stage-integrated .stage-index{right:30px;bottom:22px;color:rgba(255,255,255,.42)}
.workspace-results-only{display:block;max-width:1180px;margin:22px auto 0}
.workspace-results-only .side-column{position:static;display:block}
.workspace-results-only .legal{margin-top:18px}

@media(max-width:1050px){
  .vehicle-stage-integrated{grid-template-columns:1fr;min-height:auto;padding:34px 30px 28px}
  .integrated-config{max-width:none}
  .integrated-hero-wrap{position:absolute;right:0;top:35px;width:42%;opacity:.28;pointer-events:none}
  .integrated-hero-wrap .hero-card{width:100%;height:270px;margin:0}
}
@media(max-width:760px){
  .vehicle-stage-integrated{display:block;padding:28px 20px 24px}
  .integrated-stage-copy h1{font-size:38px}
  .integrated-config .form-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .integrated-hero-wrap{display:none}
  .workspace-results-only .side-column{display:block}
}
@media(max-width:480px){
  .integrated-config .form-grid{grid-template-columns:1fr}
  .integrated-config .actions{flex-direction:column;align-items:stretch}
  .integrated-config .actions button{width:100%}
}

/* =========================================================
   Configurator v2 — split vehicle / image / registration
   Inspired by the approved Cartelonio dark configurator mockup
   ========================================================= */
.vehicle-configurator-v2{
  display:block;
  min-height:0;
  padding:34px 38px 30px;
  overflow:visible;
}
.vehicle-configurator-v2 .integrated-form{position:relative;z-index:4;margin:0}
.vehicle-configurator-v2 .config-upper{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(390px,.95fr);
  gap:34px;
  align-items:stretch;
}
.vehicle-configurator-v2 .vehicle-config-panel{min-width:0;padding:2px 0 0}
.vehicle-configurator-v2 .vehicle-config-intro{margin-bottom:21px}
.vehicle-configurator-v2 .vehicle-config-intro h1{
  margin:5px 0 6px;
  max-width:650px;
  color:#f5f7f3;
  font-size:clamp(34px,3.7vw,58px);
  line-height:.98;
  letter-spacing:-.045em;
}
.vehicle-configurator-v2 .vehicle-config-intro p{
  margin:0;
  max-width:610px;
  color:rgba(255,255,255,.54);
  font-size:11px;
}
.vehicle-configurator-v2 .config-heading,
.vehicle-configurator-v2 .registration-strip-heading>div{
  display:flex;align-items:center;gap:10px;
}
.vehicle-configurator-v2 .config-heading{
  margin:0 0 13px;padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.11);
  color:#fff;
}
.vehicle-configurator-v2 .config-heading span,
.vehicle-configurator-v2 .registration-strip-heading span{
  color:#a9ea80;font-size:10px;font-weight:850;letter-spacing:.12em;
}
.vehicle-configurator-v2 .config-heading strong,
.vehicle-configurator-v2 .registration-strip-heading strong{
  color:rgba(255,255,255,.86);font-size:10px;font-weight:800;letter-spacing:.13em;text-transform:uppercase;
}
.vehicle-configurator-v2 .vehicle-fields{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 14px;
}
.vehicle-configurator-v2 .vehicle-fields .field-block-wide{grid-column:1/-1}
.vehicle-configurator-v2 .vehicle-fields #colorRow{grid-column:auto}
.vehicle-configurator-v2 .vehicle-fields #colorRow + .field-block-wide{grid-column:auto}

.vehicle-configurator-v2 .field-block label{
  display:flex;align-items:center;gap:6px;
  min-height:18px;margin:0 0 6px;
  color:rgba(255,255,255,.78);
  font-size:10px;font-weight:750;letter-spacing:.015em;
}
.vehicle-configurator-v2 .field-icon{
  display:inline-grid;place-items:center;
  width:17px;height:17px;
  font-size:12px;line-height:1;
  filter:saturate(.7);
  opacity:.82;
}
.vehicle-configurator-v2 .label-note{color:rgba(255,255,255,.36)}

.vehicle-configurator-v2 select,
.vehicle-configurator-v2 input,
.vehicle-configurator-v2 .brand-button,
.vehicle-configurator-v2 .extras-toggle{
  width:100%;
  min-height:50px;height:50px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:12px;
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.04));
  color:#f6f8f4;
  padding:0 13px;
  font-size:11px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035),0 8px 22px rgba(0,0,0,.08);
}
.vehicle-configurator-v2 select{color-scheme:dark;cursor:pointer}
.vehicle-configurator-v2 select option,
.vehicle-configurator-v2 select optgroup{
  background:#171c18 !important;
  color:#f6f8f4 !important;
}
.vehicle-configurator-v2 select:disabled,
.vehicle-configurator-v2 input:disabled,
.vehicle-configurator-v2 .extras-toggle:disabled{opacity:.48}
.vehicle-configurator-v2 input::placeholder{color:rgba(255,255,255,.30)}
.vehicle-configurator-v2 select:focus,
.vehicle-configurator-v2 input:focus,
.vehicle-configurator-v2 .brand-button:focus-visible,
.vehicle-configurator-v2 .extras-toggle:focus-visible{
  border-color:rgba(166,232,124,.78);
  box-shadow:0 0 0 3px rgba(152,222,107,.10),0 12px 28px rgba(0,0,0,.12);
  outline:none;
}
.vehicle-configurator-v2 .brand-button{padding:0 13px}
.vehicle-configurator-v2 .brand-button-logo{
  width:24px;height:24px;background-color:rgba(255,255,255,.08)
}
.vehicle-configurator-v2 .brand-button-label,
.vehicle-configurator-v2 .extras-toggle-label{color:rgba(255,255,255,.82)}
.vehicle-configurator-v2 .brand-menu,
.vehicle-configurator-v2 .extras-panel{
  z-index:80;
  background:#171c18;
  border:1px solid rgba(255,255,255,.13);
  color:#fff;
  box-shadow:0 25px 58px rgba(0,0,0,.42);
}
.vehicle-configurator-v2 .brand-option{color:#fff}
.vehicle-configurator-v2 .brand-option:hover,
.vehicle-configurator-v2 .extras-option:hover{background:rgba(255,255,255,.07)}
.vehicle-configurator-v2 .extras-option-text{color:#f5f7f3}

.vehicle-configurator-v2 .integrated-hero-wrap{
  position:relative;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border-left:1px solid rgba(255,255,255,.08);
}
.vehicle-configurator-v2 .integrated-hero-wrap::before{
  content:"";
  position:absolute;inset:10% 3% 10% 0;
  background:radial-gradient(circle at 55% 48%,rgba(124,198,84,.16),transparent 58%);
  filter:blur(8px);
  pointer-events:none;
}
.vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
  width:112%;height:470px;margin:0 0 0 -10%;overflow:visible;
}
.vehicle-configurator-v2 .integrated-hero-wrap #carImage{
  max-width:100%;max-height:100%;object-fit:contain;
  filter:drop-shadow(0 30px 25px rgba(0,0,0,.42));
}

.vehicle-configurator-v2 .registration-strip{
  position:relative;
  margin-top:27px;
  padding:18px 20px 17px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:17px;
  background:linear-gradient(180deg,rgba(255,255,255,.047),rgba(255,255,255,.026));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.025);
}
.vehicle-configurator-v2 .registration-strip::before{
  content:"";position:absolute;left:20px;right:20px;top:0;height:1px;
  background:linear-gradient(90deg,rgba(165,230,121,.0%),rgba(255,255,255,.06),transparent);
}
.vehicle-configurator-v2 .registration-strip-heading{
  display:flex;justify-content:space-between;align-items:center;gap:20px;
  margin-bottom:13px;
}
.vehicle-configurator-v2 .registration-strip-heading small{
  color:rgba(255,255,255,.34);font-size:9px;letter-spacing:.04em;
}
.vehicle-configurator-v2 .registration-fields{
  display:grid;
  grid-template-columns:1.05fr 1.7fr 1.15fr 1.05fr .8fr;
  gap:12px;
  align-items:end;
}
.vehicle-configurator-v2 .registration-fields .field-block,
.vehicle-configurator-v2 .registration-fields .field-block-wide{grid-column:auto;min-width:0}
.vehicle-configurator-v2 .registration-fields #categoryRow{grid-column:auto}
.vehicle-configurator-v2 .first-reg-wrap{width:100%}
.vehicle-configurator-v2 .first-reg-grid{
  display:grid;
  grid-template-columns:minmax(72px,.78fr) minmax(125px,1.35fr) minmax(82px,.9fr);
  gap:7px;
  width:100%;
}
.vehicle-configurator-v2 .first-reg-grid select,
.vehicle-configurator-v2 .first-reg-grid input{
  min-width:0;width:100%;height:50px;min-height:50px;
  padding:0 10px;font-size:10px;
}
.vehicle-configurator-v2 .first-reg-grid input[readonly]{
  background:rgba(255,255,255,.035);color:rgba(255,255,255,.7)
}
.vehicle-configurator-v2 input[type="date"]{min-width:145px;color:#f6f8f4}
.vehicle-configurator-v2 input[type="date"]::-webkit-calendar-picker-indicator{filter:invert(1);opacity:.67;cursor:pointer}

.vehicle-configurator-v2 .actions{
  display:flex;align-items:center;justify-content:flex-end;gap:10px;
  margin:15px 0 0;padding:14px 0 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.vehicle-configurator-v2 .primary-action{
  flex:0 1 420px;
  min-height:50px;
  padding:0 22px;
  border:0;border-radius:12px;
  background:linear-gradient(135deg,#a9ea80,#85cf61);
  color:#10150e;
  box-shadow:0 14px 34px rgba(117,190,73,.19);
}
.vehicle-configurator-v2 .primary-action span:first-child::after{content:' Ταξινόμησης'}
.vehicle-configurator-v2 .secondary{
  min-height:46px;padding:0 18px;border-radius:12px;
  color:rgba(255,255,255,.67);background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.11)
}
.vehicle-configurator-v2 .stage-index{right:28px;bottom:10px;color:rgba(255,255,255,.2)}

@media(max-width:1100px){
  .vehicle-configurator-v2{padding:30px 28px 27px}
  .vehicle-configurator-v2 .config-upper{grid-template-columns:minmax(0,1.12fr) minmax(320px,.88fr);gap:18px}
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{height:390px}
  .vehicle-configurator-v2 .registration-fields{grid-template-columns:repeat(3,minmax(0,1fr))}
  .vehicle-configurator-v2 .registration-fields #categoryRow{grid-column:auto}
}
@media(max-width:820px){
  .vehicle-configurator-v2{padding:27px 20px 24px}
  .vehicle-configurator-v2 .config-upper{grid-template-columns:1fr}
  .vehicle-configurator-v2 .integrated-hero-wrap{border-left:0;border-top:1px solid rgba(255,255,255,.08);min-height:270px}
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{height:290px;width:100%;margin:0}
  .vehicle-configurator-v2 .registration-fields{grid-template-columns:repeat(2,minmax(0,1fr))}
  .vehicle-configurator-v2 .registration-strip-heading{align-items:flex-start;flex-direction:column;gap:4px}
}
@media(max-width:560px){
  .vehicle-configurator-v2 .vehicle-fields,
  .vehicle-configurator-v2 .registration-fields{grid-template-columns:1fr}
  .vehicle-configurator-v2 .vehicle-fields #colorRow,
  .vehicle-configurator-v2 .vehicle-fields #colorRow + .field-block-wide{grid-column:1}
  .vehicle-configurator-v2 .first-reg-grid{grid-template-columns:.78fr 1.35fr .9fr;gap:6px}
  .vehicle-configurator-v2 .registration-strip{padding:16px 14px 15px}
  .vehicle-configurator-v2 .actions{flex-direction:column;align-items:stretch}
  .vehicle-configurator-v2 .actions button{width:100%;flex:none}
}

/* Cartelonio readability refinement — larger labels, controls and brand mark */
.vehicle-configurator-v2 .field-block label{
  min-height:22px;
  margin-bottom:7px;
  gap:8px;
  font-size:13px;
  font-weight:780;
}
.vehicle-configurator-v2 .field-icon{
  width:21px;
  height:21px;
  font-size:15px;
}
.vehicle-configurator-v2 select,
.vehicle-configurator-v2 input,
.vehicle-configurator-v2 .brand-button,
.vehicle-configurator-v2 .extras-toggle{
  min-height:54px;
  height:54px;
  padding-left:15px;
  padding-right:15px;
  font-size:14px;
}
.vehicle-configurator-v2 select option,
.vehicle-configurator-v2 select optgroup{
  font-size:14px;
}
.vehicle-configurator-v2 .brand-button-logo{
  width:34px;
  height:34px;
  max-width:44px;
  flex:0 0 34px;
  object-fit:contain;
}
.vehicle-configurator-v2 .brand-button-label,
.vehicle-configurator-v2 .extras-toggle-label{
  font-size:14px;
}
.vehicle-configurator-v2 .brand-option-logo{
  width:36px;
  height:36px;
  object-fit:contain;
}
.vehicle-configurator-v2 .brand-option-label{
  font-size:14px;
}
.vehicle-configurator-v2 .first-reg-grid select,
.vehicle-configurator-v2 .first-reg-grid input{
  height:54px;
  min-height:54px;
  padding-left:11px;
  padding-right:11px;
  font-size:13px;
}


/* =========================================================
   Cartelonio dropdown card layout
   Title lives inside the control; icon/logo sits on the second row.
   ========================================================= */
.vehicle-configurator-v2 .dropdown-card{
  position:relative;
  min-width:0;
  min-height:78px;
  border:1px solid rgba(219,231,224,.24);
  border-radius:15px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04),0 10px 24px rgba(0,0,0,.08);
  transition:border-color .18s ease,box-shadow .18s ease,background .18s ease;
}
.vehicle-configurator-v2 .dropdown-card:hover{
  border-color:rgba(219,231,224,.34);
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.032));
}
.vehicle-configurator-v2 .dropdown-card:focus-within{
  border-color:rgba(166,232,124,.72);
  box-shadow:0 0 0 3px rgba(152,222,107,.09),0 14px 30px rgba(0,0,0,.14);
}
.vehicle-configurator-v2 .dropdown-card > label{
  position:absolute;
  z-index:4;
  left:16px;
  top:10px;
  width:auto;
  min-height:0;
  margin:0;
  display:block;
  color:#f4f7f3;
  font-size:14px;
  font-weight:760;
  line-height:1.05;
  letter-spacing:.005em;
  pointer-events:none;
}
.vehicle-configurator-v2 .dropdown-card > label .field-icon{
  position:absolute;
  left:0;
  top:28px;
  width:27px;
  height:27px;
  display:grid;
  place-items:center;
  font-size:20px;
  line-height:1;
  opacity:.96;
  filter:saturate(.55) brightness(1.25);
}
.vehicle-configurator-v2 .dropdown-card > label .label-note{
  margin-left:5px;
  font-size:10px;
  font-weight:600;
}

/* The actual dropdown/button becomes the second line of the same card. */
.vehicle-configurator-v2 .dropdown-card > select,
.vehicle-configurator-v2 .dropdown-card > .brand-picker,
.vehicle-configurator-v2 .dropdown-card > .extras-dropdown,
.vehicle-configurator-v2 .dropdown-card > .category-field-wrap{
  position:relative;
  z-index:2;
  width:100%;
  margin:0;
}
.vehicle-configurator-v2 .dropdown-card > select,
.vehicle-configurator-v2 .dropdown-card .brand-button,
.vehicle-configurator-v2 .dropdown-card .extras-toggle,
.vehicle-configurator-v2 .dropdown-card .category-field-wrap > select{
  width:100%;
  height:76px;
  min-height:76px;
  margin:0;
  border:0;
  border-radius:15px;
  background:transparent;
  box-shadow:none;
  color:#c9d1ce;
  font-size:15px;
  font-weight:520;
  line-height:1;
  padding-top:25px;
  padding-bottom:0;
  padding-left:54px;
  padding-right:42px;
}
.vehicle-configurator-v2 .dropdown-card > select:focus,
.vehicle-configurator-v2 .dropdown-card .brand-button:focus-visible,
.vehicle-configurator-v2 .dropdown-card .extras-toggle:focus-visible,
.vehicle-configurator-v2 .dropdown-card .category-field-wrap > select:focus{
  border:0;
  box-shadow:none;
  outline:none;
}
.vehicle-configurator-v2 .dropdown-card > select option,
.vehicle-configurator-v2 .dropdown-card > select optgroup,
.vehicle-configurator-v2 .dropdown-card .category-field-wrap > select option,
.vehicle-configurator-v2 .dropdown-card .category-field-wrap > select optgroup{
  background:#151b17 !important;
  color:#f5f7f3 !important;
  font-size:15px;
}

/* Brand uses the actual brand-logo slot as its lower-row icon. */
.vehicle-configurator-v2 .brand-dropdown-card > label .field-icon{display:none}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button{
  display:flex;
  align-items:center;
  gap:12px;
  padding-left:16px;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-logo{
  width:30px;
  height:30px;
  max-width:42px;
  flex:0 0 30px;
  margin-top:22px;
  display:grid;
  place-items:center;
  background-color:transparent;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-logo:empty::before{
  content:"🚘";
  font-size:22px;
  filter:grayscale(1) brightness(1.55);
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-label{
  margin-top:22px;
  color:#c9d1ce;
  font-size:15px;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-arrow{
  margin-left:auto;
  margin-top:20px;
  font-size:22px;
}

/* For the remaining cards, reserve the lower-left slot for the label icon. */
.vehicle-configurator-v2 .dropdown-card:not(.brand-dropdown-card) > select,
.vehicle-configurator-v2 .dropdown-card .extras-toggle,
.vehicle-configurator-v2 .dropdown-card .category-field-wrap > select{
  padding-left:54px;
}
.vehicle-configurator-v2 .dropdown-card .extras-toggle{
  display:flex;
  align-items:center;
  padding-top:25px;
}
.vehicle-configurator-v2 .dropdown-card .extras-toggle-label{font-size:15px;color:#c9d1ce}
.vehicle-configurator-v2 .dropdown-card .extras-toggle-arrow{margin-left:auto;font-size:21px}

/* Menus open cleanly below the unified card. */
.vehicle-configurator-v2 .dropdown-card .brand-menu,
.vehicle-configurator-v2 .dropdown-card .extras-panel{
  top:calc(100% + 8px);
  border-radius:14px;
}

/* Category card in the registration strip follows the same visual language. */
.vehicle-configurator-v2 .registration-fields .dropdown-card{min-height:78px}
.vehicle-configurator-v2 .registration-fields .dropdown-card .category-warning{
  right:38px;
  top:38px;
}

@media(max-width:820px){
  .vehicle-configurator-v2 .dropdown-card{min-height:74px}
  .vehicle-configurator-v2 .dropdown-card > select,
  .vehicle-configurator-v2 .dropdown-card .brand-button,
  .vehicle-configurator-v2 .dropdown-card .extras-toggle,
  .vehicle-configurator-v2 .dropdown-card .category-field-wrap > select{
    height:72px;min-height:72px;
  }
}

/* =========================================================
   Dropdown interaction fix — stable two-row cards
   Keeps native selects fully clickable/scrollable and gives
   custom menus a solid, scrollable surface.
   ========================================================= */
.vehicle-configurator-v2 .dropdown-card{
  min-height:88px;
  padding:10px 14px 9px;
  overflow:visible;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  isolation:isolate;
}
.vehicle-configurator-v2 .dropdown-card > label{
  position:static;
  z-index:auto;
  display:flex;
  align-items:center;
  width:100%;
  min-height:20px;
  margin:0 0 5px;
  color:#f4f7f3;
  font-size:14px;
  font-weight:760;
  line-height:1.15;
  pointer-events:auto;
}
.vehicle-configurator-v2 .dropdown-card > label .field-icon{display:none}
.vehicle-configurator-v2 .dropdown-card > label .label-note{
  position:static;
  margin-left:6px;
  font-size:10px;
  color:rgba(255,255,255,.38);
}
.vehicle-configurator-v2 .dropdown-control-row{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:32px minmax(0,1fr);
  align-items:center;
  gap:10px;
  min-height:47px;
  width:100%;
  overflow:visible;
}
.vehicle-configurator-v2 .dropdown-leading-icon{
  display:grid;
  place-items:center;
  width:32px;
  height:32px;
  font-size:21px;
  line-height:1;
  opacity:.96;
  filter:grayscale(.25) brightness(1.2);
  pointer-events:none;
}
.vehicle-configurator-v2 .dropdown-control-row > select,
.vehicle-configurator-v2 .dropdown-control-row .brand-button,
.vehicle-configurator-v2 .dropdown-control-row .extras-toggle{
  width:100%;
  height:44px;
  min-height:44px;
  padding:0 38px 0 2px;
  margin:0;
  border:0;
  border-radius:9px;
  background:transparent;
  color:#cbd3cf;
  box-shadow:none;
  font-size:15px;
  font-weight:520;
  line-height:1.2;
  cursor:pointer;
}
.vehicle-configurator-v2 .dropdown-control-row > select{
  display:block;
  position:relative;
  z-index:3;
  color-scheme:dark;
}
.vehicle-configurator-v2 .dropdown-control-row > select:focus,
.vehicle-configurator-v2 .dropdown-control-row .brand-button:focus-visible,
.vehicle-configurator-v2 .dropdown-control-row .extras-toggle:focus-visible{
  outline:none;
  border:0;
  box-shadow:none;
}
.vehicle-configurator-v2 .dropdown-control-row > select option,
.vehicle-configurator-v2 .dropdown-control-row > select optgroup{
  background-color:#111713 !important;
  color:#f7faf7 !important;
  font-size:15px;
}

/* Brand picker: no nested oversized button; menu stays above everything. */
.vehicle-configurator-v2 .brand-dropdown-card > label .field-icon{display:none}
.vehicle-configurator-v2 .dropdown-control-row .brand-picker,
.vehicle-configurator-v2 .dropdown-control-row .extras-dropdown{
  position:relative;
  z-index:30;
  width:100%;
  min-width:0;
  overflow:visible;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button{
  display:flex;
  align-items:center;
  gap:10px;
  padding-left:2px;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-logo{
  width:34px;
  height:34px;
  max-width:44px;
  flex:0 0 34px;
  margin:0;
  background-color:transparent;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-logo:empty::before{
  content:"";
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-label{
  margin:0;
  color:#cbd3cf;
  font-size:15px;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-arrow,
.vehicle-configurator-v2 .dropdown-card .extras-toggle-arrow{
  margin:0 0 0 auto;
  font-size:22px;
  color:rgba(255,255,255,.78);
}
.vehicle-configurator-v2 .dropdown-card .brand-menu,
.vehicle-configurator-v2 .dropdown-card .extras-panel{
  top:calc(100% + 8px);
  left:-46px;
  right:0;
  z-index:9999;
  max-height:300px;
  overflow-y:auto;
  overscroll-behavior:contain;
  padding:8px;
  background:#111713 !important;
  border:1px solid rgba(255,255,255,.20) !important;
  border-radius:14px;
  box-shadow:0 24px 60px rgba(0,0,0,.55) !important;
  color:#f7faf7;
}
.vehicle-configurator-v2 .brand-menu.open,
.vehicle-configurator-v2 .extras-dropdown.open .extras-panel{display:block}
.vehicle-configurator-v2 .brand-option,
.vehicle-configurator-v2 .extras-option{
  position:relative;
  z-index:1;
  color:#f7faf7;
  background:transparent;
}
.vehicle-configurator-v2 .brand-option:hover,
.vehicle-configurator-v2 .extras-option:hover{
  background:rgba(255,255,255,.09);
}

/* Body type is a regular registration field, not a dropdown-card. */
.vehicle-configurator-v2 .registration-fields #categoryRow{
  min-height:0;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.vehicle-configurator-v2 .registration-fields #categoryRow > label{
  position:static;
  display:flex;
  align-items:center;
  gap:7px;
  min-height:22px;
  margin:0 0 7px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  font-weight:780;
  pointer-events:auto;
}
.vehicle-configurator-v2 .registration-fields #categoryRow > label .field-icon{
  position:static;
  display:inline-grid;
  width:21px;
  height:21px;
  font-size:15px;
}
.vehicle-configurator-v2 .registration-fields #categoryRow .category-field-wrap{
  position:relative;
  width:100%;
}
.vehicle-configurator-v2 .registration-fields #categoryRow select{
  width:100%;
  height:54px;
  min-height:54px;
  padding:0 42px 0 15px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:12px;
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.04));
  color:#f6f8f4;
  font-size:14px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035),0 8px 22px rgba(0,0,0,.08);
  color-scheme:dark;
}
.vehicle-configurator-v2 .registration-fields #categoryRow select option,
.vehicle-configurator-v2 .registration-fields #categoryRow select optgroup{
  background:#111713 !important;
  color:#f7faf7 !important;
}
.vehicle-configurator-v2 .registration-fields #categoryRow .category-warning{
  right:12px;
  top:50%;
  transform:translateY(-50%);
}

@media(max-width:820px){
  .vehicle-configurator-v2 .dropdown-card{min-height:84px}
}

/* =========================================================
   Dropdown card cleanup — consistent sizing / icon alignment
   ========================================================= */
.vehicle-configurator-v2 .vehicle-fields .dropdown-card{
  box-sizing:border-box;
  min-height:92px;
  height:92px;
  padding:11px 16px 10px;
  border:1px solid rgba(219,231,224,.24);
  border-radius:15px;
  overflow:visible;
}
.vehicle-configurator-v2 .vehicle-fields .dropdown-card > label{
  display:block;
  position:static;
  margin:0 0 7px;
  min-height:18px;
  font-size:15px;
  font-weight:700;
  line-height:18px;
  color:#f5f7f4;
  pointer-events:none;
}
.vehicle-configurator-v2 .vehicle-fields .dropdown-control-row{
  display:grid;
  grid-template-columns:34px minmax(0,1fr);
  align-items:center;
  gap:12px;
  width:100%;
  min-height:46px;
  height:46px;
}
.vehicle-configurator-v2 .vehicle-fields .dropdown-leading-icon{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  line-height:1;
  margin:0;
  padding:0;
  position:static;
  transform:none;
  pointer-events:none;
}
.vehicle-configurator-v2 .vehicle-fields .dropdown-control-row > select,
.vehicle-configurator-v2 .vehicle-fields .dropdown-control-row .extras-toggle,
.vehicle-configurator-v2 .vehicle-fields .dropdown-control-row .brand-button{
  box-sizing:border-box;
  width:100%;
  min-width:0;
  height:46px;
  min-height:46px;
  margin:0;
  padding:0 38px 0 0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  color:#cbd3cf;
  font-size:15px;
  line-height:46px;
}
.vehicle-configurator-v2 .vehicle-fields .dropdown-control-row > select{
  position:relative;
  z-index:3;
  color-scheme:dark;
}
.vehicle-configurator-v2 .vehicle-fields .dropdown-control-row > select option,
.vehicle-configurator-v2 .vehicle-fields .dropdown-control-row > select optgroup{
  background:#121814 !important;
  color:#f7faf7 !important;
}

/* Brand: use one icon slot only — the actual logo replaces the placeholder. */
.vehicle-configurator-v2 .brand-control-row{
  grid-template-columns:minmax(0,1fr) !important;
  gap:0 !important;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-picker{
  width:100%;
  min-width:0;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button{
  display:grid;
  grid-template-columns:42px minmax(0,1fr) 24px;
  align-items:center;
  gap:12px;
  width:100%;
  height:46px;
  padding:0;
  line-height:normal;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:36px;
  max-width:42px;
  flex:none;
  margin:0;
  padding:0;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-logo:empty::before{
  content:"🚘";
  display:block;
  font-size:23px;
  line-height:1;
  filter:grayscale(1) brightness(1.55);
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-label{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  margin:0;
  font-size:15px;
  line-height:1.2;
  color:#cbd3cf;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-arrow{
  width:24px;
  margin:0;
  text-align:center;
  line-height:1;
}

/* Custom menus always render as real panels above neighboring cards. */
.vehicle-configurator-v2 .brand-dropdown-card,
.vehicle-configurator-v2 .dropdown-card:has(.extras-dropdown){
  z-index:20;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-menu,
.vehicle-configurator-v2 .dropdown-card .extras-panel{
  left:0 !important;
  right:0 !important;
  top:calc(100% + 8px) !important;
  max-height:280px;
  overflow-y:auto;
  background:#111713 !important;
  border:1px solid rgba(219,231,224,.18) !important;
  border-radius:13px;
  box-shadow:0 20px 44px rgba(0,0,0,.38);
}

/* Registration fields are intentionally normal fields, not vehicle dropdown cards. */
.vehicle-configurator-v2 .registration-fields .field-block{
  height:auto;
  min-height:0;
}
.vehicle-configurator-v2 .registration-fields #categoryRow{
  height:auto;
  min-height:0;
  padding:0;
  border:0;
  background:none;
  box-shadow:none;
}

@media(max-width:820px){
  .vehicle-configurator-v2 .vehicle-fields .dropdown-card{
    height:88px;
    min-height:88px;
    padding:10px 14px 9px;
  }
}

/* =========================================================
   Cartelonio dropdown stability patch — 2026-09-10
   Fixes stacking, selected-brand icon overlap and menu surfaces.
   ========================================================= */
.vehicle-configurator-v2 .vehicle-fields{
  position:relative;
  isolation:isolate;
}

/* Every card starts in the same stacking layer; only the active/open card rises. */
.vehicle-configurator-v2 .vehicle-fields .dropdown-card{
  position:relative;
  z-index:1;
  overflow:visible;
}
.vehicle-configurator-v2 .vehicle-fields .dropdown-card:focus-within,
.vehicle-configurator-v2 .vehicle-fields .brand-dropdown-card:has(.brand-menu.open),
.vehicle-configurator-v2 .vehicle-fields .dropdown-card:has(.extras-dropdown.open){
  z-index:500;
}

/* Keep icon + control strictly inside the card. */
.vehicle-configurator-v2 .vehicle-fields .dropdown-control-row{
  position:relative;
  z-index:2;
  width:100%;
  min-width:0;
  overflow:visible;
}
.vehicle-configurator-v2 .vehicle-fields .dropdown-leading-icon{
  position:static !important;
  inset:auto !important;
  transform:none !important;
  margin:0 !important;
  flex:none;
  pointer-events:none;
}

/* BRAND: one visual slot only. Placeholder disappears the moment a real logo exists. */
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-logo{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:34px;
  flex:0 0 42px;
  margin:0;
  padding:0;
  background-size:contain !important;
  background-position:center !important;
  background-repeat:no-repeat !important;
  overflow:hidden;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-logo::before{
  content:"🚘";
  display:block;
  font-size:23px;
  line-height:1;
  filter:grayscale(1) brightness(1.55);
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-logo.has-logo::before{
  content:none !important;
  display:none !important;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button{
  display:grid !important;
  grid-template-columns:42px minmax(0,1fr) 24px !important;
  align-items:center;
  column-gap:12px;
  width:100%;
  min-width:0;
}
.vehicle-configurator-v2 .brand-dropdown-card .brand-button-label{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* Custom dropdown panels must be opaque and sit above ALL following fields. */
.vehicle-configurator-v2 .brand-dropdown-card .brand-menu,
.vehicle-configurator-v2 .dropdown-card .extras-panel{
  position:absolute !important;
  top:calc(100% + 8px) !important;
  left:0 !important;
  right:0 !important;
  z-index:1000 !important;
  display:none;
  box-sizing:border-box;
  width:100%;
  max-height:300px;
  padding:7px;
  overflow-x:hidden;
  overflow-y:auto;
  overscroll-behavior:contain;
  background:#0f1712 !important;
  background-color:#0f1712 !important;
  opacity:1 !important;
  border:1px solid rgba(194,225,198,.24) !important;
  border-radius:14px;
  box-shadow:0 22px 60px rgba(0,0,0,.72), 0 0 0 1px rgba(122,255,117,.035) inset !important;
  backdrop-filter:none !important;
}
.vehicle-configurator-v2 .brand-menu.open,
.vehicle-configurator-v2 .extras-dropdown.open .extras-panel{
  display:block !important;
}

.vehicle-configurator-v2 .brand-option,
.vehicle-configurator-v2 .extras-option{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  width:100%;
  min-height:48px;
  padding:7px 10px;
  margin:0;
  border:0;
  border-radius:9px;
  background:#0f1712 !important;
  color:#f7faf7 !important;
  box-shadow:none !important;
}
.vehicle-configurator-v2 .brand-option:hover,
.vehicle-configurator-v2 .brand-option:focus-visible,
.vehicle-configurator-v2 .extras-option:hover,
.vehicle-configurator-v2 .extras-option:focus-visible{
  background:#1a261d !important;
  outline:none;
}
.vehicle-configurator-v2 .brand-option-logo{
  width:40px;
  height:32px;
  flex:0 0 40px;
  margin-right:12px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
}
.vehicle-configurator-v2 .brand-option-label{
  min-width:0;
  color:#fff !important;
  font-size:15px;
  line-height:1.2;
  text-align:left;
}

/* Dark, compact scrollbar instead of the bright browser rail seen in the screenshot. */
.vehicle-configurator-v2 .brand-menu,
.vehicle-configurator-v2 .extras-panel{
  scrollbar-width:thin;
  scrollbar-color:#68726b #151b17;
}
.vehicle-configurator-v2 .brand-menu::-webkit-scrollbar,
.vehicle-configurator-v2 .extras-panel::-webkit-scrollbar{width:9px}
.vehicle-configurator-v2 .brand-menu::-webkit-scrollbar-track,
.vehicle-configurator-v2 .extras-panel::-webkit-scrollbar-track{
  background:#151b17;
  border-radius:999px;
}
.vehicle-configurator-v2 .brand-menu::-webkit-scrollbar-thumb,
.vehicle-configurator-v2 .extras-panel::-webkit-scrollbar-thumb{
  background:#68726b;
  border:2px solid #151b17;
  border-radius:999px;
}

/* Native selects: readable menu text in Chromium/Windows and consistent control sizing. */
.vehicle-configurator-v2 .vehicle-fields select{
  color:#d8dfdb !important;
  background-color:transparent !important;
  color-scheme:dark;
}
.vehicle-configurator-v2 .vehicle-fields select option,
.vehicle-configurator-v2 .vehicle-fields select optgroup{
  color:#f8faf8 !important;
  background:#111713 !important;
  background-color:#111713 !important;
}

/* Registration/body type stays outside the vehicle dropdown-card visual language. */
.vehicle-configurator-v2 .registration-fields #categoryRow{
  position:relative;
  z-index:1;
  overflow:visible;
}

/* === 2026-09-10: price under vehicle image + whole-card dropdown interaction === */
.vehicle-configurator-v2 .integrated-hero-wrap{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:16px;
  min-width:0;
}

.vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
  flex:1 1 auto;
  min-height:0;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:0;
}

.vehicle-configurator-v2 .integrated-hero-wrap .hero-card #carImage{
  transform:translateY(-12px);
}

.vehicle-configurator-v2 .price-dropdown-card{
  position:relative;
  width:100%;
  min-height:96px;
  margin-top:auto;
  padding:18px 22px 14px;
  border:1px solid rgba(223,235,230,.22);
  border-radius:24px;
  background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}

.vehicle-configurator-v2 .price-dropdown-card > label{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 10px;
  font-size:15px;
  line-height:1.1;
  font-weight:700;
  color:#f2f5f3;
}

.vehicle-configurator-v2 .price-control-row{
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  align-items:center;
  gap:10px;
  min-height:42px;
}

.vehicle-configurator-v2 .price-leading-icon{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  font-size:24px;
  font-weight:800;
  color:#fff;
}

.vehicle-configurator-v2 .price-dropdown-card .required-field-wrap{
  min-width:0;
  width:100%;
  position:relative;
}

.vehicle-configurator-v2 .price-dropdown-card input#price{
  width:100%;
  min-width:0;
  height:42px;
  margin:0;
  padding:0 38px 0 0;
  border:0!important;
  outline:0;
  background:transparent!important;
  box-shadow:none!important;
  font-size:17px;
  font-weight:600;
  color:#dce4e0;
}

.vehicle-configurator-v2 .price-dropdown-card input#price::placeholder{
  color:#89938f;
  opacity:1;
}

.vehicle-configurator-v2 .price-dropdown-card:focus-within{
  border-color:rgba(151,236,112,.5);
  box-shadow:0 0 0 4px rgba(137,232,95,.07),inset 0 1px 0 rgba(255,255,255,.05);
}

/* Make the entire visual card feel and behave like the dropdown control. */
.vehicle-configurator-v2 .vehicle-fields .dropdown-card[data-card-dropdown="true"]{
  cursor:pointer;
}

.vehicle-configurator-v2 .vehicle-fields .dropdown-card[data-card-dropdown="true"] > label{
  pointer-events:none;
}

.vehicle-configurator-v2 .vehicle-fields .dropdown-card[data-card-dropdown="true"] .dropdown-control-row{
  cursor:pointer;
}

@media (max-width: 980px){
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card #carImage{transform:none}
  .vehicle-configurator-v2 .price-dropdown-card{margin-top:0}
}

/* =========================================================
   2026-09-10 — Extras dropdown + LTPF alignment refinement
   ========================================================= */

/* Let the LEFT column define the desktop row height. The right-side car image
   is positioned independently, while the LTPF card sits on the same baseline
   as the Extras card. */
@media (min-width: 821px){
  .vehicle-configurator-v2 .config-upper{
    align-items:stretch;
  }

  .vehicle-configurator-v2 .integrated-hero-wrap{
    position:relative;
    align-self:stretch;
    min-height:0;
    display:block;
  }

  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
    position:absolute;
    top:-18px;
    left:0;
    right:0;
    bottom:108px;
    width:112%;
    height:auto !important;
    min-height:0;
    margin:0 0 0 -10%;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    overflow:visible;
  }

  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card #carImage{
    width:100%;
    height:100%;
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    object-position:center top;
    transform:none !important;
  }

  .vehicle-configurator-v2 .price-dropdown-card{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:92px;
    min-height:92px;
    margin:0 !important;
    padding:11px 16px 10px;
    border-radius:15px;
    box-sizing:border-box;
  }

  .vehicle-configurator-v2 .price-dropdown-card > label{
    min-height:18px;
    margin:0 0 7px;
    font-size:15px;
    line-height:18px;
  }

  .vehicle-configurator-v2 .price-control-row{
    grid-template-columns:34px minmax(0,1fr);
    gap:12px;
    min-height:46px;
    height:46px;
  }

  .vehicle-configurator-v2 .price-leading-icon{
    width:34px;
    height:34px;
    font-size:22px;
  }

  .vehicle-configurator-v2 .price-dropdown-card input#price{
    height:46px;
    min-height:46px;
    font-size:15px;
  }
}

/* EXTRAS: make the popup belong to the complete Extras card, not only to the
   text area after the icon. This prevents the panel from starting too far to
   the right and gives long option names enough room. */
.vehicle-configurator-v2 .vehicle-fields .dropdown-card:has(.extras-dropdown){
  position:relative;
  overflow:visible;
}

.vehicle-configurator-v2 .vehicle-fields .extras-dropdown{
  position:static !important;
  width:100%;
  min-width:0;
}

.vehicle-configurator-v2 .vehicle-fields .extras-panel{
  position:absolute !important;
  top:calc(100% + 8px) !important;
  left:0 !important;
  right:0 !important;
  width:auto !important;
  max-width:none !important;
  max-height:330px;
  padding:8px;
  overflow-x:hidden !important;
  overflow-y:auto !important;
  background:#0d1510 !important;
  border:1px solid rgba(190,224,194,.24) !important;
  border-radius:14px;
  box-shadow:0 24px 64px rgba(0,0,0,.76), inset 0 1px 0 rgba(255,255,255,.025) !important;
}

.vehicle-configurator-v2 .vehicle-fields .extras-option{
  display:grid !important;
  grid-template-columns:28px minmax(0,1fr);
  align-items:start !important;
  gap:10px;
  min-height:0;
  padding:10px 11px !important;
  white-space:normal !important;
  cursor:pointer;
}

.vehicle-configurator-v2 .vehicle-fields .extras-option input[type="checkbox"]{
  appearance:none;
  -webkit-appearance:none;
  width:22px !important;
  min-width:22px !important;
  height:22px !important;
  min-height:22px !important;
  margin:1px 0 0 !important;
  padding:0 !important;
  border:1px solid rgba(255,255,255,.48) !important;
  border-radius:6px !important;
  background:#f5f7f4 !important;
  box-shadow:0 1px 4px rgba(0,0,0,.28) !important;
  cursor:pointer;
}

.vehicle-configurator-v2 .vehicle-fields .extras-option input[type="checkbox"]:checked{
  background:#a9ea80 !important;
  border-color:#a9ea80 !important;
  box-shadow:inset 0 0 0 4px #0d1510 !important;
}

.vehicle-configurator-v2 .vehicle-fields .extras-option-text{
  display:block;
  min-width:0;
  padding-top:1px;
  color:#f4f7f4 !important;
  font-size:13px;
  font-weight:700;
  line-height:1.42;
  letter-spacing:0;
  white-space:normal !important;
  overflow-wrap:anywhere;
  word-break:normal;
}

/* On compact layouts return the price card to normal document flow. */
@media (max-width: 820px){
  .vehicle-configurator-v2 .integrated-hero-wrap{
    display:flex;
    flex-direction:column;
  }

  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
    position:relative;
    inset:auto;
    width:100%;
    height:290px !important;
    margin:0;
  }

  .vehicle-configurator-v2 .price-dropdown-card{
    position:relative;
    inset:auto;
    width:100%;
    height:auto;
    min-height:92px;
    margin-top:10px !important;
  }
}

/* =========================================================
   2026-09-10 — Vehicle image framed area
   Desktop geometry:
   - top aligned with the "Βρες το αυτοκίνητό σου" title
   - bottom aligned with the Model / Edition cards
   - left/right aligned with the LTPF card below
   ========================================================= */
@media (min-width: 821px){
  .vehicle-configurator-v2 .integrated-hero-wrap{
    position:relative;
    align-self:stretch;
    display:block;
    min-width:0;
  }

  /* The actual image viewport. It intentionally starts below the kicker,
     level with the main title, and ends one standard grid gap above LTPF. */
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
    position:absolute;
    top:34px;
    left:0;
    right:0;
    bottom:104px;
    width:auto;
    height:auto !important;
    min-height:0;
    margin:0;
    padding:0;
    overflow:hidden;
    border:1px solid rgba(220,235,226,.14);
    border-radius:18px;
    background:
      radial-gradient(circle at 72% 34%,rgba(121,196,83,.14),transparent 48%),
      linear-gradient(145deg,rgba(255,255,255,.018),rgba(255,255,255,.006));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.025),
      0 16px 36px rgba(0,0,0,.12);
    display:flex;
    align-items:center;
    justify-content:center;
  }

  /* Remove the old free-floating glow from outside the requested frame. */
  .vehicle-configurator-v2 .integrated-hero-wrap::before{
    inset:34px 0 104px 0;
    border-radius:18px;
    overflow:hidden;
    opacity:.75;
  }

  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card #carImage{
    display:block;
    width:100%;
    height:100%;
    max-width:100%;
    max-height:100%;
    padding:10px 10px 4px;
    box-sizing:border-box;
    object-fit:contain;
    object-position:center center;
    transform:none !important;
    filter:drop-shadow(0 22px 20px rgba(0,0,0,.40));
  }

  /* Keep LTPF locked to the exact same left/right edges as the image frame. */
  .vehicle-configurator-v2 .price-dropdown-card{
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:92px;
    min-height:92px;
    margin:0 !important;
  }
}

/* At narrower desktop widths, preserve the same alignment but give the
   title/image area a little more breathing room. */
@media (min-width:821px) and (max-width:1100px){
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
    top:32px;
    bottom:104px;
  }
  .vehicle-configurator-v2 .integrated-hero-wrap::before{
    inset:32px 0 104px 0;
  }
}

/* Mobile/tablet remains stacked and uses a normal framed image block. */
@media (max-width:820px){
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
    position:relative;
    inset:auto;
    width:100%;
    height:290px !important;
    margin:0;
    padding:0;
    overflow:hidden;
    border:1px solid rgba(220,235,226,.14);
    border-radius:18px;
    background:
      radial-gradient(circle at 72% 34%,rgba(121,196,83,.14),transparent 48%),
      linear-gradient(145deg,rgba(255,255,255,.018),rgba(255,255,255,.006));
  }
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card #carImage{
    width:100%;
    height:100%;
    padding:10px;
    box-sizing:border-box;
    object-fit:contain;
    object-position:center;
  }
}

/* =========================================================
   2026-09-10 — Extras panel flow fix + frameless vehicle viewport
   ========================================================= */

/*
 * The Extras list is intentionally kept in normal document flow when open.
 * This prevents it from covering the Registration section below and also
 * guarantees a fully opaque surface independent of backdrop/backgrounds.
 */
.vehicle-configurator-v2 .vehicle-fields .dropdown-card:has(.extras-dropdown){
  height:auto !important;
  min-height:92px;
  overflow:visible !important;
}

.vehicle-configurator-v2 .vehicle-fields .extras-dropdown{
  position:static !important;
  display:block;
  width:100%;
  min-width:0;
}

.vehicle-configurator-v2 .vehicle-fields .extras-panel{
  position:relative !important;
  inset:auto !important;
  top:auto !important;
  left:auto !important;
  right:auto !important;
  z-index:20 !important;
  width:100% !important;
  max-width:100% !important;
  max-height:330px;
  margin:10px 0 0 !important;
  padding:8px !important;
  box-sizing:border-box;
  overflow-x:hidden !important;
  overflow-y:auto !important;
  overscroll-behavior:contain;
  background:#0b120e !important;
  background-color:#0b120e !important;
  background-image:none !important;
  opacity:1 !important;
  border:1px solid rgba(190,224,194,.24) !important;
  border-radius:14px;
  box-shadow:0 18px 42px rgba(0,0,0,.55) !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  isolation:isolate;
}

.vehicle-configurator-v2 .vehicle-fields .extras-dropdown:not(.open) .extras-panel{
  display:none !important;
}

.vehicle-configurator-v2 .vehicle-fields .extras-dropdown.open .extras-panel{
  display:block !important;
}

/* Every row is opaque too, so no lower-page text can bleed through. */
.vehicle-configurator-v2 .vehicle-fields .extras-option{
  background:#0b120e !important;
  opacity:1 !important;
}
.vehicle-configurator-v2 .vehicle-fields .extras-option:hover,
.vehicle-configurator-v2 .vehicle-fields .extras-option:focus-visible{
  background:#17221a !important;
}

/* Keep the right column aligned while the Extras card expands. */
@media (min-width:821px){
  .vehicle-configurator-v2 .config-upper{
    align-items:stretch;
  }
  .vehicle-configurator-v2 .integrated-hero-wrap{
    height:100%;
    min-height:100%;
  }
}

/* Vehicle image keeps its requested geometry but has no visible outline. */
.vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
  border:none !important;
  outline:none !important;
  box-shadow:none !important;
}

@media (max-width:820px){
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
    border:none !important;
    outline:none !important;
    box-shadow:none !important;
  }
}

/* =========================================================
   2026-09-10 — Extras dropdown = Brand dropdown behaviour
   The Extras menu is now a true floating dropdown, matching
   the Brand menu: opaque, bordered, scrollable and layered.
   ========================================================= */

/* Undo the previous in-flow Extras expansion. */
.vehicle-configurator-v2 .vehicle-fields .dropdown-card:has(.extras-dropdown){
  height:92px !important;
  min-height:92px !important;
  overflow:visible !important;
  position:relative;
}

.vehicle-configurator-v2 .vehicle-fields .dropdown-card:has(.extras-dropdown.open){
  z-index:500 !important;
}

.vehicle-configurator-v2 .vehicle-fields .extras-dropdown{
  position:relative !important;
  display:block;
  width:100%;
  min-width:0;
  z-index:510 !important;
  overflow:visible !important;
}

/* Match the Brand menu geometry and behaviour. */
.vehicle-configurator-v2 .vehicle-fields .extras-panel{
  position:absolute !important;
  top:calc(100% + 8px) !important;
  left:-42px !important;
  right:0 !important;
  bottom:auto !important;
  width:calc(100% + 42px) !important;
  max-width:none !important;
  max-height:300px !important;
  margin:0 !important;
  padding:7px !important;
  box-sizing:border-box;
  display:none !important;
  overflow-x:hidden !important;
  overflow-y:auto !important;
  overscroll-behavior:contain;
  scrollbar-gutter:stable;

  /* Fully opaque surface — no page content can show through. */
  background:#111713 !important;
  background-color:#111713 !important;
  background-image:none !important;
  opacity:1 !important;
  color:#fff !important;

  border:1px solid rgba(255,255,255,.13) !important;
  border-radius:14px !important;
  box-shadow:0 25px 58px rgba(0,0,0,.58) !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  isolation:isolate;
  z-index:520 !important;
}

.vehicle-configurator-v2 .vehicle-fields .extras-dropdown.open .extras-panel{
  display:block !important;
}

.vehicle-configurator-v2 .vehicle-fields .extras-dropdown:not(.open) .extras-panel{
  display:none !important;
}

/* Same clean row treatment as Brand options. */
.vehicle-configurator-v2 .vehicle-fields .extras-option{
  position:relative;
  z-index:1;
  width:100%;
  min-height:47px;
  margin:0;
  padding:9px 10px !important;
  display:flex;
  align-items:flex-start;
  gap:11px;
  border-radius:12px;
  background:#111713 !important;
  background-color:#111713 !important;
  opacity:1 !important;
  color:#fff !important;
  box-sizing:border-box;
}

.vehicle-configurator-v2 .vehicle-fields .extras-option:hover,
.vehicle-configurator-v2 .vehicle-fields .extras-option:focus-within{
  background:#1c251f !important;
}

.vehicle-configurator-v2 .vehicle-fields .extras-option-text{
  color:#f5f7f3 !important;
  font-size:13px;
  font-weight:650;
  line-height:1.4;
  white-space:normal !important;
  overflow-wrap:anywhere;
}

/* Dark scrollbar, visually consistent with the Brand menu. */
.vehicle-configurator-v2 .vehicle-fields .extras-panel{
  scrollbar-width:thin;
  scrollbar-color:#667069 #111713;
}
.vehicle-configurator-v2 .vehicle-fields .extras-panel::-webkit-scrollbar{width:10px}
.vehicle-configurator-v2 .vehicle-fields .extras-panel::-webkit-scrollbar-track{
  background:#111713;
  border-radius:10px;
}
.vehicle-configurator-v2 .vehicle-fields .extras-panel::-webkit-scrollbar-thumb{
  background:#667069;
  border:2px solid #111713;
  border-radius:10px;
}

/* Mobile: keep the same dropdown behaviour, but don't extend beyond viewport. */
@media (max-width:820px){
  .vehicle-configurator-v2 .vehicle-fields .dropdown-card:has(.extras-dropdown){
    height:auto !important;
    min-height:74px !important;
  }
  .vehicle-configurator-v2 .vehicle-fields .extras-panel{
    left:-42px !important;
    width:calc(100% + 42px) !important;
    max-height:280px !important;
  }
}

/* =========================================================
   CARTELONIO — Vehicle image clean background patch
   Removes the divider/border beside the vehicle image and
   all blur/glow/backdrop effects from the vehicle image area.
   ========================================================= */
.hero-visual,
.vehicle-visual,
.vehicle-image-wrap,
.vehicle-image-frame,
.car-visual,
.car-image-wrap,
.model-image-wrap,
.hero-car,
.hero-car-wrap {
  border: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none;
  background: transparent !important;
}

.hero-visual::before,
.hero-visual::after,
.vehicle-visual::before,
.vehicle-visual::after,
.vehicle-image-wrap::before,
.vehicle-image-wrap::after,
.vehicle-image-frame::before,
.vehicle-image-frame::after,
.car-visual::before,
.car-visual::after,
.car-image-wrap::before,
.car-image-wrap::after,
.model-image-wrap::before,
.model-image-wrap::after,
.hero-car::before,
.hero-car::after,
.hero-car-wrap::before,
.hero-car-wrap::after {
  content: none !important;
  display: none !important;
  background: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

/* The vehicle PNG itself stays untouched and transparent. */
.hero-visual img,
.vehicle-visual img,
.vehicle-image-wrap img,
.vehicle-image-frame img,
.car-visual img,
.car-image-wrap img,
.model-image-wrap img,
.hero-car img,
.hero-car-wrap img {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Remove the vertical divider immediately adjacent to the visual column. */
.configurator-visual,
.hero-right,
.vehicle-column,
.car-column {
  border-left: 0 !important;
  border-right: 0 !important;
}


/* =========================================================
   CARTELONIO — Exact fixes after screenshot review
   1) Extras menu must stack ABOVE registration content.
   2) Vehicle image area: no divider and no green/blur overlay.
   ========================================================= */

/* The registration strip was painting above the Extras popup because it
   belongs to a later stacking context. Keep the upper configurator layer
   above it whenever a custom dropdown opens. */
.vehicle-configurator-v2 .config-upper{
  position:relative !important;
  z-index:20 !important;
  overflow:visible !important;
}
.vehicle-configurator-v2 .vehicle-config-panel,
.vehicle-configurator-v2 .vehicle-fields{
  position:relative !important;
  z-index:30 !important;
  overflow:visible !important;
}
.vehicle-configurator-v2 .registration-strip{
  position:relative !important;
  z-index:1 !important;
}

/* Extras: same floating-panel behavior as Brand, with a truly solid surface. */
.vehicle-configurator-v2 .vehicle-fields .dropdown-card:has(.extras-dropdown.open){
  z-index:10000 !important;
}
.vehicle-configurator-v2 .vehicle-fields .extras-dropdown{
  position:relative !important;
  z-index:10001 !important;
  overflow:visible !important;
}
.vehicle-configurator-v2 .vehicle-fields .extras-panel{
  position:absolute !important;
  z-index:10002 !important;
  top:calc(100% + 8px) !important;
  left:-46px !important;
  right:0 !important;
  bottom:auto !important;
  width:calc(100% + 46px) !important;
  max-height:300px !important;
  margin:0 !important;
  padding:7px !important;
  overflow-x:hidden !important;
  overflow-y:auto !important;
  background:#0d1510 !important;
  background-color:#0d1510 !important;
  background-image:none !important;
  opacity:1 !important;
  mix-blend-mode:normal !important;
  isolation:isolate !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  border:1px solid rgba(255,255,255,.14) !important;
  border-radius:14px !important;
  box-shadow:0 24px 60px rgba(0,0,0,.72) !important;
}
.vehicle-configurator-v2 .vehicle-fields .extras-dropdown.open .extras-panel{
  display:block !important;
}
.vehicle-configurator-v2 .vehicle-fields .extras-option{
  background:#0d1510 !important;
  background-color:#0d1510 !important;
  opacity:1 !important;
  mix-blend-mode:normal !important;
}
.vehicle-configurator-v2 .vehicle-fields .extras-option:hover,
.vehicle-configurator-v2 .vehicle-fields .extras-option:focus-within{
  background:#17231a !important;
}

/* Exact selectors for the actual vehicle-image column used by the current HTML. */
.vehicle-configurator-v2 .integrated-hero-wrap{
  border:0 !important;
  border-left:0 !important;
  border-right:0 !important;
  outline:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}

/* This pseudo-element is the green radial/blur effect visible behind the car. */
.vehicle-configurator-v2 .integrated-hero-wrap::before{
  content:none !important;
  display:none !important;
  background:none !important;
  filter:none !important;
  opacity:0 !important;
}

.vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
  border:0 !important;
  border-left:0 !important;
  border-right:0 !important;
  outline:0 !important;
  background:transparent !important;
  background-image:none !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}

/* Remove only container glow/blur; retain the car PNG's own subtle drop shadow. */
.vehicle-configurator-v2 .integrated-hero-wrap .hero-card::before,
.vehicle-configurator-v2 .integrated-hero-wrap .hero-card::after{
  content:none !important;
  display:none !important;
}

@media (max-width:820px){
  .vehicle-configurator-v2 .config-upper{z-index:20 !important}
  .vehicle-configurator-v2 .registration-strip{z-index:1 !important}
  .vehicle-configurator-v2 .vehicle-fields .extras-panel{
    left:-46px !important;
    width:calc(100% + 46px) !important;
  }
}

/* =========================================================
   Cartelonio — calculator icon inside primary calculate button
   Keeps the existing right-side arrow unchanged.
   ========================================================= */
.vehicle-configurator-v2 .primary-action .calc-button-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.vehicle-configurator-v2 .primary-action .calc-button-icon{
  width:22px;
  height:22px;
  flex:0 0 22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* Existing pseudo-text remains after the label text, while the arrow stays on the right. */
.vehicle-configurator-v2 .primary-action .calc-button-label > span{
  white-space:nowrap;
}

/* =========================================================
   Cartelonio — unified inline SVG icon system
   General UI icons now match the calculator line-icon style.
   Brand logos remain unchanged.
   ========================================================= */
.vehicle-configurator-v2 .ui-svg-icon{
  display:block;
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:1.75;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.vehicle-configurator-v2 .dropdown-leading-icon,
.vehicle-configurator-v2 .field-icon{
  color:rgba(235,242,237,.88);
  filter:none !important;
}

.vehicle-configurator-v2 .dropdown-leading-icon{
  width:30px;
  height:30px;
  padding:3px;
}

.vehicle-configurator-v2 .field-icon{
  width:20px;
  height:20px;
  padding:1px;
}

.vehicle-configurator-v2 .price-leading-icon{
  width:30px;
  height:30px;
  padding:3px;
}

.vehicle-configurator-v2 .primary-action .calc-button-icon{
  stroke-width:1.75;
}

/* =========================================================
   Cartelonio — brand dropdown chevron consistency
   ========================================================= */
.vehicle-configurator-v2 .brand-button-arrow{
  display:grid;
  place-items:center;
  width:20px;
  height:20px;
  flex:0 0 20px;
  margin-left:auto !important;
  color:rgba(255,255,255,.78);
}

.vehicle-configurator-v2 .brand-button-arrow .dropdown-chevron-svg{
  display:block;
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* =========================================================
   Cartelonio — live brand availability states
   ========================================================= */
.vehicle-configurator-v2 .brand-option{
  transition:
    background .16s ease,
    opacity .16s ease,
    filter .16s ease;
}

.vehicle-configurator-v2 .brand-option.brand-option-checking,
.vehicle-configurator-v2 .brand-option.brand-option-unavailable{
  cursor:not-allowed !important;
}

.vehicle-configurator-v2 .brand-option.brand-option-checking{
  opacity:.48;
  filter:grayscale(.6);
}

.vehicle-configurator-v2 .brand-option.brand-option-unavailable{
  opacity:.38 !important;
  filter:grayscale(1) saturate(.25);
  background:#0f1712 !important;
}

.vehicle-configurator-v2 .brand-option.brand-option-unavailable:hover,
.vehicle-configurator-v2 .brand-option.brand-option-unavailable:focus-visible,
.vehicle-configurator-v2 .brand-option.brand-option-checking:hover,
.vehicle-configurator-v2 .brand-option.brand-option-checking:focus-visible{
  background:#0f1712 !important;
  transform:none !important;
  box-shadow:none !important;
}

.vehicle-configurator-v2 .brand-option.brand-option-unavailable .brand-option-logo,
.vehicle-configurator-v2 .brand-option.brand-option-checking .brand-option-logo{
  opacity:.62;
}

.vehicle-configurator-v2 .brand-availability-badge{
  flex:0 0 auto;
  margin-left:auto;
  padding:4px 8px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:999px;
  background:rgba(255,255,255,.045);
  color:rgba(255,255,255,.58);
  font-size:10px;
  font-weight:700;
  line-height:1;
  letter-spacing:.04em;
  text-transform:uppercase;
  white-space:nowrap;
}

.vehicle-configurator-v2 .brand-option:disabled{
  pointer-events:none;
}

/* =========================================================
   Cartelonio — live year availability states
   ========================================================= */
.vehicle-configurator-v2 #yearSelect option:disabled{
  color:rgba(255,255,255,.34) !important;
  background:#0f1712 !important;
}

.vehicle-configurator-v2 #yearSelect option[data-availability="available"]{
  color:#f7faf7 !important;
}

.vehicle-configurator-v2 #yearSelect option[data-availability="checking"]{
  color:rgba(255,255,255,.46) !important;
}



/* === Random vehicle selection === */
.vehicle-configurator-v2 .hero-card .random-select-btn{
  position:absolute;
  top:4px;
  right:2px;
  z-index:6;
  appearance:none;
  border:1px solid rgba(223,235,230,.28);
  border-radius:999px;
  padding:10px 15px;
  background:rgba(17,23,19,.82);
  color:#f3f7f5;
  font:inherit;
  font-size:12px;
  font-weight:750;
  letter-spacing:.01em;
  cursor:pointer;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 8px 24px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.06);
  transition:transform .18s ease,border-color .18s ease,background .18s ease,opacity .18s ease;
}
.vehicle-configurator-v2 .hero-card .random-select-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(223,235,230,.48);
  background:rgba(28,38,32,.92);
}
.vehicle-configurator-v2 .hero-card .random-select-btn:active{transform:translateY(0)}
.vehicle-configurator-v2 .hero-card .random-select-btn:disabled{opacity:.55;cursor:wait;transform:none}
@media(max-width:720px){
  .vehicle-configurator-v2 .hero-card .random-select-btn{top:0;right:0;padding:9px 12px;font-size:11px}
}

/* Cartelonio welcome / disclaimer modal */
.cartelonio-welcome{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;padding:22px;background:rgba(7,10,14,.72);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.cartelonio-welcome[hidden]{display:none}
.cartelonio-welcome-card{position:relative;width:min(620px,100%);max-height:calc(100vh - 44px);overflow:auto;background:#111820;border:1px solid rgba(255,255,255,.13);border-radius:22px;padding:34px;box-shadow:0 28px 80px rgba(0,0,0,.48);color:#f5f7f9}
.cartelonio-welcome-kicker{display:inline-block;margin-bottom:12px;font-size:.72rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;opacity:.58}
.cartelonio-welcome-card h2{margin:0 42px 16px 0;font-size:clamp(1.65rem,4vw,2.25rem);line-height:1.08}
.cartelonio-welcome-card p{margin:0 0 14px;color:rgba(245,247,249,.78);line-height:1.62}
.cartelonio-welcome-card strong{color:#fff}
.cartelonio-welcome-note{margin-top:20px!important;padding:16px 18px;border-radius:14px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.08);font-size:.91rem}
.cartelonio-welcome-actions{display:flex;justify-content:flex-end;margin-top:24px}
.cartelonio-welcome-enter{border:0;border-radius:12px;padding:12px 20px;font:inherit;font-weight:800;cursor:pointer;background:#f5f7f9;color:#111820}
.cartelonio-welcome-close{position:absolute;right:18px;top:16px;width:38px;height:38px;border:0;border-radius:50%;cursor:pointer;background:rgba(255,255,255,.07);color:#fff;font-size:1.35rem;line-height:1}
@media(max-width:600px){.cartelonio-welcome-card{padding:27px 22px 23px;border-radius:18px}.cartelonio-welcome-close{right:12px;top:11px}}

/* =========================================================
   2026-09-15 — Cartelonio mobile configurator refinement
   Keeps the desktop visual language while using a compact,
   intentional stacked layout on phones/tablets.
   ========================================================= */
@media (max-width:820px){
  .vehicle-configurator-v2{
    padding:26px 20px 24px !important;
    border-radius:28px !important;
  }

  .vehicle-configurator-v2 .config-upper{
    grid-template-columns:1fr !important;
    gap:18px !important;
  }

  .vehicle-configurator-v2 .vehicle-config-intro{
    margin-bottom:20px !important;
  }

  .vehicle-configurator-v2 .vehicle-config-intro h1{
    font-size:clamp(34px,8vw,46px) !important;
    line-height:1.02 !important;
    max-width:none !important;
  }

  /* Keep the four main selectors in the familiar desktop 2x2 grid. */
  .vehicle-configurator-v2 .vehicle-fields{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:12px !important;
  }
  .vehicle-configurator-v2 .vehicle-fields .field-block-wide{
    grid-column:1/-1 !important;
  }

  /* Vehicle visual becomes a compact, centered showcase directly below Extras. */
  .vehicle-configurator-v2 .integrated-hero-wrap{
    display:flex !important;
    flex-direction:column !important;
    width:100% !important;
    min-height:0 !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    border-top:0 !important;
  }

  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
    position:relative !important;
    inset:auto !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:100% !important;
    height:clamp(210px,48vw,310px) !important;
    min-height:0 !important;
    margin:0 !important;
    padding:42px 8px 4px !important;
    overflow:visible !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
  }

  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card #carImage{
    display:block !important;
    width:100% !important;
    height:100% !important;
    max-width:620px !important;
    max-height:100% !important;
    margin:0 auto !important;
    padding:0 !important;
    object-fit:contain !important;
    object-position:center center !important;
    transform:none !important;
    filter:drop-shadow(0 18px 15px rgba(0,0,0,.34)) !important;
  }

  /* The action belongs visually to the vehicle preview, like on desktop. */
  .vehicle-configurator-v2 .hero-card .random-select-btn{
    top:2px !important;
    right:4px !important;
    left:auto !important;
    z-index:8 !important;
    padding:9px 13px !important;
    font-size:11px !important;
    opacity:1 !important;
  }

  /* LTPF follows immediately after the image rather than floating far below it. */
  .vehicle-configurator-v2 .price-dropdown-card{
    position:relative !important;
    inset:auto !important;
    width:100% !important;
    min-height:88px !important;
    height:88px !important;
    margin:6px 0 0 !important;
  }

  .vehicle-configurator-v2 .registration-strip{
    margin-top:18px !important;
  }
  .vehicle-configurator-v2 .registration-fields{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

/* Normal phones still keep the desktop-like 2-column selector layout.
   Only very narrow screens fall back to one column to avoid clipped text. */
@media (max-width:430px){
  .vehicle-configurator-v2{
    padding:23px 14px 20px !important;
    border-radius:24px !important;
  }
  .vehicle-configurator-v2 .vehicle-fields{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:9px !important;
  }
  .vehicle-configurator-v2 .vehicle-fields .dropdown-card{
    padding:9px 10px 8px !important;
  }
  .vehicle-configurator-v2 .vehicle-fields .dropdown-control-row{
    grid-template-columns:28px minmax(0,1fr) !important;
    gap:7px !important;
  }
  .vehicle-configurator-v2 .brand-control-row{
    grid-template-columns:minmax(0,1fr) !important;
  }
  .vehicle-configurator-v2 .brand-dropdown-card .brand-button{
    grid-template-columns:34px minmax(0,1fr) 18px !important;
    gap:7px !important;
  }
  .vehicle-configurator-v2 .vehicle-fields .dropdown-leading-icon{
    width:28px !important;
    height:30px !important;
  }
  .vehicle-configurator-v2 .vehicle-fields .dropdown-control-row > select,
  .vehicle-configurator-v2 .vehicle-fields .dropdown-control-row .extras-toggle,
  .vehicle-configurator-v2 .vehicle-fields .dropdown-control-row .brand-button,
  .vehicle-configurator-v2 .brand-dropdown-card .brand-button-label{
    font-size:13px !important;
  }
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
    height:230px !important;
    padding-top:40px !important;
  }
  .vehicle-configurator-v2 .registration-fields{
    grid-template-columns:1fr !important;
  }
}

@media (max-width:350px){
  .vehicle-configurator-v2 .vehicle-fields{
    grid-template-columns:1fr !important;
  }
}

/* =========================================================
   2026-09-15 — MOBILE STABILITY FIX
   Neutralises legacy .integrated-hero-wrap tablet rules that
   were leaking into Configurator v2 (opacity/pointer-events/
   absolute positioning), and locks mobile geometry to viewport.
   ========================================================= */
@media (max-width:820px){
  html,body{max-width:100%;overflow-x:hidden !important}
  .vehicle-configurator-v2,
  .vehicle-configurator-v2 *{box-sizing:border-box}
  .vehicle-configurator-v2{width:100% !important;max-width:100% !important;overflow:visible !important}
  .vehicle-configurator-v2 .config-upper,
  .vehicle-configurator-v2 .vehicle-fields,
  .vehicle-configurator-v2 .registration-strip,
  .vehicle-configurator-v2 .registration-fields{width:100% !important;max-width:100% !important;min-width:0 !important}

  /* Legacy <=1050 rule had opacity:.28 + pointer-events:none + absolute positioning. */
  .vehicle-configurator-v2 .integrated-hero-wrap{
    position:relative !important;
    inset:auto !important;
    top:auto !important;right:auto !important;bottom:auto !important;left:auto !important;
    width:100% !important;max-width:100% !important;min-width:0 !important;
    margin:0 !important;
    opacity:1 !important;
    pointer-events:auto !important;
    z-index:3 !important;
    overflow:visible !important;
  }

  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
    position:relative !important;
    width:100% !important;max-width:100% !important;
    height:clamp(220px,52vw,300px) !important;
    margin:0 !important;
    padding:42px 8px 6px !important;
    opacity:1 !important;
    pointer-events:auto !important;
    overflow:visible !important;
  }

  /* Keep the PNG crisp: no opacity/transform/blur on the image or its ancestors.
     Do not enlarge beyond the available viewport. */
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card #carImage{
    display:block !important;
    width:100% !important;
    height:100% !important;
    max-width:100% !important;
    max-height:100% !important;
    margin:0 auto !important;
    padding:0 !important;
    opacity:1 !important;
    object-fit:contain !important;
    object-position:center center !important;
    transform:none !important;
    filter:drop-shadow(0 16px 14px rgba(0,0,0,.30)) !important;
    image-rendering:auto !important;
  }
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card #carImage.is-changing{
    opacity:1 !important;
    transform:none !important;
  }

  /* Random button must stay above the car and remain tappable. */
  .vehicle-configurator-v2 .hero-card .random-select-btn{
    position:absolute !important;
    top:3px !important;right:4px !important;left:auto !important;
    z-index:50 !important;
    pointer-events:auto !important;
    touch-action:manipulation;
    opacity:1 !important;
  }

  /* Brand menu: anchor it to the complete card; never collapse to icon width. */
  .vehicle-configurator-v2 .brand-dropdown-card{position:relative !important;min-width:0 !important;z-index:100 !important}
  .vehicle-configurator-v2 .brand-dropdown-card .brand-picker{position:relative !important;width:100% !important;min-width:0 !important}
  .vehicle-configurator-v2 .brand-dropdown-card .brand-menu{
    position:absolute !important;
    top:calc(100% + 8px) !important;
    left:0 !important;right:auto !important;
    width:100% !important;min-width:100% !important;max-width:none !important;
    max-height:min(310px,55vh) !important;
    overflow-x:hidden !important;overflow-y:auto !important;
    z-index:120 !important;
  }
  .vehicle-configurator-v2 .brand-dropdown-card .brand-option{width:100% !important;min-width:0 !important}

  /* LTPF is a normal full-width card on mobile, never an absolutely-positioned desktop card. */
  .vehicle-configurator-v2 .price-dropdown-card{
    position:relative !important;
    inset:auto !important;
    left:auto !important;right:auto !important;top:auto !important;bottom:auto !important;
    width:100% !important;max-width:100% !important;
    height:auto !important;min-height:92px !important;
    margin:10px 0 0 !important;
    padding:14px 16px 12px !important;
    transform:none !important;
    z-index:2 !important;
  }
  .vehicle-configurator-v2 .price-control-row,
  .vehicle-configurator-v2 .price-dropdown-card .required-field-wrap,
  .vehicle-configurator-v2 .price-dropdown-card input#price{max-width:100% !important;min-width:0 !important}

  .vehicle-configurator-v2 .registration-strip{margin-top:18px !important;overflow:visible !important}
}

@media (max-width:430px){
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{height:225px !important;padding-top:40px !important}
  .vehicle-configurator-v2 .brand-dropdown-card .brand-menu{width:100% !important;min-width:100% !important}
}

/* === Cartelonio mobile brand dropdown width hotfix ===
   Keep the custom brand picker as a full-width flex item. This prevents
   mobile browsers from sizing the absolutely-positioned menu from the
   logo/content width instead of from the complete Brand card. */
@media (max-width: 768px){
  .vehicle-configurator-v2 .brand-dropdown-card .brand-control-row{
    display:flex !important;
    width:100% !important;
    min-width:0 !important;
  }
  .vehicle-configurator-v2 .brand-dropdown-card .brand-picker{
    display:block !important;
    flex:1 1 100% !important;
    width:100% !important;
    min-width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
  }
  .vehicle-configurator-v2 .brand-dropdown-card .brand-button{
    display:flex !important;
    width:100% !important;
    min-width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
  }
  .vehicle-configurator-v2 .brand-dropdown-card .brand-menu,
  .vehicle-configurator-v2 .brand-dropdown-card .brand-menu.open{
    left:0 !important;
    right:auto !important;
    width:100% !important;
    min-width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
    transform:none !important;
  }
}

/* =========================================================
   CARTELONIO — Header logo
   Replaces the old green dot + text brand mark.
   ========================================================= */
.brand-mark{
  display:flex;
  align-items:center;
  flex:0 0 auto;
  line-height:0;
}
.brand-mark .site-logo{
  display:block;
  width:auto;
  height:46px;
  max-width:250px;
  object-fit:contain;
}
@media (max-width:768px){
  .brand-mark .site-logo{
    height:38px;
    max-width:205px;
  }
}
@media (max-width:430px){
  .brand-mark .site-logo{
    height:34px;
    max-width:185px;
  }
}


/* CARTELONIO — How to use + Chrome mobile logo fix */
.site-header .header-inner .brand-mark{
  display:flex!important;align-items:center!important;
  width:auto!important;max-width:260px!important;min-width:0!important;
  flex:0 1 auto!important;overflow:hidden;
}
.site-header .header-inner .brand-mark .site-logo{
  display:block!important;width:220px!important;height:46px!important;
  max-width:100%!important;min-width:0!important;
  object-fit:contain!important;object-position:left center!important;flex:none!important;
}
.how-to-use-btn{
  min-height:40px;padding:0 13px 0 15px;border:1px solid rgba(18,21,18,.12);
  border-radius:999px;background:rgba(251,250,246,.86);color:var(--ink);
  display:inline-flex;align-items:center;gap:9px;cursor:pointer;
  font-size:12px;font-weight:800;box-shadow:0 6px 18px rgba(18,21,18,.05);
}
.how-to-use-icon{width:22px;height:22px;border-radius:50%;display:grid;place-items:center;color:var(--accent-deep);background:var(--accent-soft);font-size:11px;font-weight:900}
.how-to-modal{position:fixed;inset:0;z-index:10000;display:none;align-items:center;justify-content:center;padding:22px}
.how-to-modal.is-open{display:flex}
.how-to-modal-backdrop{position:absolute;inset:0;background:rgba(8,11,9,.64);backdrop-filter:blur(9px);-webkit-backdrop-filter:blur(9px)}
.how-to-modal-card{position:relative;z-index:1;width:min(760px,100%);max-height:min(86vh,820px);overflow:auto;padding:34px;border-radius:26px;background:#fbfaf6;color:var(--ink);box-shadow:0 30px 90px rgba(0,0,0,.28)}
.how-to-modal-close{position:absolute;right:17px;top:15px;width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:#eef0ea;color:#343a34;cursor:pointer;font-size:23px}
.how-to-modal-kicker{margin-bottom:8px;color:var(--accent-deep);font-size:10px;font-weight:900;letter-spacing:.15em}
.how-to-modal-card h2{margin:0;padding-right:45px;font-size:30px;line-height:1.05;letter-spacing:-.04em}
.how-to-modal-intro{margin:12px 0 24px;max-width:630px;color:var(--muted);font-size:13px;line-height:1.55}
.how-to-steps{display:grid;grid-template-columns:1fr 1fr;gap:11px}
.how-to-step{display:flex;gap:13px;padding:17px;border:1px solid var(--line);border-radius:17px;background:#fff}
.how-to-step-number{flex:0 0 31px;width:31px;height:31px;border-radius:9px;display:grid;place-items:center;background:var(--accent-soft);color:var(--accent-deep);font-size:9px;font-weight:900}
.how-to-step h3{margin:1px 0 6px;font-size:13px}
.how-to-step p,.how-to-manual p,.how-to-disclaimer{margin:0;color:#697068;font-size:11px;line-height:1.5}
.how-to-manual{margin-top:12px;padding:15px 17px;border-radius:16px;background:#171a17;color:#fff}
.how-to-manual strong{font-size:12px}.how-to-manual p{margin-top:5px;color:rgba(255,255,255,.65)}
.how-to-disclaimer{margin-top:13px;padding:0 3px;font-size:10px}
body.how-to-modal-open{overflow:hidden}

@media(max-width:768px){
  .site-header .header-inner{gap:10px!important}
  .site-header .header-inner .brand-mark{width:150px!important;max-width:150px!important;flex:0 0 150px!important}
  .site-header .header-inner .brand-mark .site-logo{width:150px!important;height:36px!important;max-width:150px!important}
  .site-header .header-copy{margin-left:auto;flex:0 0 auto}
  .how-to-use-btn{min-height:36px;padding:0 10px 0 12px;gap:7px;font-size:11px;white-space:nowrap}
  .how-to-use-icon{width:20px;height:20px}
  .how-to-modal{padding:13px}
  .how-to-modal-card{padding:27px 18px 20px;border-radius:22px;max-height:88vh}
  .how-to-modal-card h2{font-size:25px}
  .how-to-steps{grid-template-columns:1fr}
}
@media(max-width:390px){
  .site-header .header-inner .brand-mark{width:128px!important;max-width:128px!important;flex-basis:128px!important}
  .site-header .header-inner .brand-mark .site-logo{width:128px!important;height:32px!important;max-width:128px!important}
  .how-to-use-btn{padding:0 9px;font-size:10px}
  .how-to-use-icon{display:none}
}


/* =========================================================
   CARTELONIO — Mobile header / welcome logo correction
   ========================================================= */

/* An older mobile rule hides .header-copy. Force the new How to use
   control back into the header on phones. */
@media (max-width:768px){
  .site-header .header-inner .header-copy{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    margin-left:auto !important;
    gap:0 !important;
  }
  .site-header .header-inner{
    justify-content:space-between !important;
  }
}

/* Welcome line: text + the same Cartelonio logo, inline. */
.cartelonio-welcome-kicker-with-logo{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-wrap:wrap;
  gap:8px;
}
.cartelonio-welcome-logo{
  display:inline-block !important;
  width:auto !important;
  height:28px !important;
  max-width:150px !important;
  object-fit:contain !important;
  vertical-align:middle;
}
@media (max-width:560px){
  .cartelonio-welcome-kicker-with-logo{
    gap:6px;
  }
  .cartelonio-welcome-logo{
    height:24px !important;
    max-width:128px !important;
  }
}


/* =========================================================
   CARTELONIO — Three-view onboarding
   ========================================================= */
.cartelonio-onboarding{
  position:fixed;inset:0;z-index:12000;
  display:flex;align-items:center;justify-content:center;
  padding:22px;
}
.cartelonio-onboarding[aria-hidden="true"]{display:none}
.cartelonio-onboarding-backdrop{
  position:absolute;inset:0;
  background:rgba(8,11,9,.62);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.cartelonio-onboarding-card{
  position:relative;z-index:1;
  width:min(900px,100%);
  max-height:90vh;
  overflow:hidden;
  border-radius:30px;
  background:
    radial-gradient(circle at 80% 12%,rgba(109,169,67,.12),transparent 28%),
    #fbfaf6;
  box-shadow:0 35px 100px rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.42);
}
.onboarding-view{
  display:none;
  opacity:0;
  transform:translateY(7px);
}
.onboarding-view.is-active{
  display:block;
  animation:cartelonioViewFade .32s ease forwards;
}
@keyframes cartelonioViewFade{
  from{opacity:0;transform:translateY(7px)}
  to{opacity:1;transform:translateY(0)}
}
.onboarding-welcome{
  padding:52px 54px 25px;
  text-align:center;
}
.onboarding-title-line{
  display:flex;align-items:center;justify-content:center;
  flex-wrap:wrap;gap:13px;
  font-size:clamp(28px,4vw,46px);
  line-height:1.05;letter-spacing:-.045em;
  color:var(--ink);
}
.onboarding-main-logo{
  display:block;width:auto;height:62px;max-width:320px;object-fit:contain;
}
.onboarding-lead{
  max-width:610px;margin:22px auto 0;
  color:#626961;font-size:16px;line-height:1.55;
}
.onboarding-benefits{
  max-width:690px;margin:31px auto 0;
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px;
}
.onboarding-benefit{
  display:flex;align-items:center;justify-content:center;gap:11px;
  text-align:left;color:#222722;font-size:13px;font-weight:700;line-height:1.35;
}
.benefit-icon{
  width:45px;height:45px;flex:0 0 45px;border-radius:50%;
  display:grid;place-items:center;
  color:var(--accent-deep);background:var(--accent-soft);
}
.benefit-icon svg{
  width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.8;
  stroke-linecap:round;stroke-linejoin:round;
}
.onboarding-actions{
  padding:22px 36px 34px;
}
.onboarding-actions-three{
  display:grid;grid-template-columns:1fr 1.25fr 1fr;gap:10px;align-items:center;
}
.onboarding-actions button,.onboarding-subview-actions button{
  min-height:52px;border-radius:15px;padding:0 18px;cursor:pointer;font-weight:800;
}
.onboarding-start{
  color:#fff;
  background:linear-gradient(135deg,var(--accent),var(--accent-deep));
  box-shadow:0 12px 26px rgba(78,125,49,.22);
  display:flex;align-items:center;justify-content:center;gap:12px;
}
.onboarding-start span{font-size:20px}
.onboarding-secondary{
  color:var(--ink);background:#fff;border:1px solid var(--line);
}
.onboarding-secondary:hover{border-color:rgba(109,169,67,.45);background:#f8faf5}
.onboarding-back{
  position:absolute;left:25px;top:23px;z-index:3;
  background:transparent;color:#606760;cursor:pointer;font-size:12px;font-weight:800;
}
.onboarding-subview-scroll{
  max-height:calc(90vh - 94px);
  overflow:auto;
  padding:58px 38px 20px;
}
.onboarding-subview-scroll>h2{
  margin:0;padding-right:30px;font-size:30px;letter-spacing:-.04em;
}
.onboarding-subview-actions{
  position:sticky;bottom:0;
  display:flex;justify-content:center;
  padding:13px 25px 20px;
  background:linear-gradient(180deg,rgba(251,250,246,0),#fbfaf6 28%);
}
.onboarding-subview-actions .onboarding-start{min-width:230px}

/* Existing old welcome content is now embedded, not a modal of its own. */
.onboarding-existing-welcome{
  position:relative!important;inset:auto!important;
  display:block!important;background:transparent!important;
}
.onboarding-existing-welcome > *{
  max-width:100%;
}
body.cartelonio-onboarding-open{overflow:hidden}

@media(max-width:700px){
  .cartelonio-onboarding{padding:10px}
  .cartelonio-onboarding-card{border-radius:23px;max-height:92vh}
  .onboarding-welcome{padding:37px 17px 17px}
  .onboarding-title-line{gap:8px;font-size:29px}
  .onboarding-main-logo{height:45px;max-width:230px}
  .onboarding-lead{margin-top:17px;font-size:13px;max-width:420px}
  .onboarding-benefits{margin-top:25px;grid-template-columns:repeat(3,1fr);gap:5px}
  .onboarding-benefit{flex-direction:column;text-align:center;gap:7px;font-size:10px}
  .benefit-icon{width:39px;height:39px;flex-basis:39px}
  .benefit-icon svg{width:21px;height:21px}
  .onboarding-actions{padding:15px 13px 18px}
  .onboarding-actions-three{
    grid-template-columns:1fr;
  }
  .onboarding-start{order:-1}
  .onboarding-actions button{min-height:46px}
  .onboarding-subview-scroll{padding:55px 16px 16px;max-height:calc(92vh - 82px)}
  .onboarding-subview-scroll>h2{font-size:25px}
  .onboarding-back{left:17px;top:17px}
  .onboarding-subview-actions{padding:10px 15px 15px}
  .onboarding-subview-actions .onboarding-start{width:100%;min-width:0}
}


/* =========================================================
   CARTELONIO — About view repair
   ========================================================= */
.about-cartelonio-view{
  max-width:680px;
  margin:0 auto;
}
.about-cartelonio-heading{text-align:center}
.about-cartelonio-kicker{
  display:block;
  margin-bottom:10px;
  color:var(--accent-deep);
  font-size:10px;
  font-weight:900;
  letter-spacing:.16em;
}
.about-cartelonio-heading h2{
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  font-size:29px;
  line-height:1.15;
  letter-spacing:-.035em;
}
.about-cartelonio-logo{
  width:auto;
  height:38px;
  max-width:195px;
  object-fit:contain;
}
.about-cartelonio-lead{
  max-width:590px;
  margin:19px auto 22px;
  text-align:center;
  color:#596159;
  font-size:14px;
  line-height:1.6;
}
.about-cartelonio-copy{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:11px;
}
.about-cartelonio-copy p{
  margin:0;
  padding:17px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  color:#646b63;
  font-size:11px;
  line-height:1.55;
}
.about-cartelonio-note{
  margin-top:12px;
  padding:16px 18px;
  border-radius:16px;
  background:#171a17;
  color:#fff;
}
.about-cartelonio-note strong{font-size:12px}
.about-cartelonio-note p{
  margin:5px 0 0;
  color:rgba(255,255,255,.65);
  font-size:10px;
  line-height:1.5;
}
@media(max-width:700px){
  .about-cartelonio-heading h2{font-size:24px}
  .about-cartelonio-logo{height:31px;max-width:160px}
  .about-cartelonio-lead{font-size:12px}
  .about-cartelonio-copy{grid-template-columns:1fr}
}


/* =========================================================
   2026-09-18 — Vehicle identity overlay + compact tax result
   ========================================================= */
.vehicle-configurator-v2 .vehicle-image-identity{
  position:absolute;
  z-index:12;
  left:18px;
  top:18px;
  max-width:72%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:1px;
  pointer-events:none;
  opacity:0;
  transform:translateY(5px);
  transition:opacity .22s ease,transform .22s ease;
  text-align:left;
  text-shadow:0 2px 18px rgba(0,0,0,.55);
}
.vehicle-configurator-v2 .vehicle-image-identity.is-visible{
  opacity:1;
  transform:none;
}
.vehicle-configurator-v2 .vehicle-image-brand{
  font-size:clamp(20px,2.1vw,30px);
  line-height:.95;
  font-weight:900;
  letter-spacing:-.055em;
  color:rgba(255,255,255,.96);
}
.vehicle-configurator-v2 .vehicle-image-year{
  margin-top:5px;
  font-size:11px;
  line-height:1;
  font-weight:850;
  letter-spacing:.16em;
  color:#9be36f;
}
.vehicle-configurator-v2 .vehicle-image-edition{
  margin-top:5px;
  max-width:100%;
  font-size:clamp(11px,1.05vw,14px);
  line-height:1.22;
  font-weight:760;
  letter-spacing:-.015em;
  color:rgba(255,255,255,.62);
}
.vehicle-configurator-v2 .vehicle-image-identity.no-image{
  left:50%;
  top:50%;
  width:86%;
  max-width:86%;
  align-items:center;
  text-align:center;
  transform:translate(-50%,-50%);
  text-shadow:none;
}
.vehicle-configurator-v2 .vehicle-image-identity.no-image.is-visible{
  transform:translate(-50%,-50%);
}
.vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-brand{
  font-size:clamp(34px,4.2vw,58px);
}
.vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-year{
  font-size:14px;
}
.vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-edition{
  max-width:90%;
  font-size:clamp(15px,1.7vw,22px);
  color:rgba(255,255,255,.48);
}
.vehicle-configurator-v2 #carImage.image-unavailable,
.vehicle-configurator-v2 #carImage:not([src]){
  visibility:hidden;
}

/* Two equal cards beneath the vehicle visual. */
.vehicle-configurator-v2 .vehicle-value-cards{
  position:absolute;
  left:0;right:0;bottom:0;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:10px;
  height:92px;
}
@media (min-width:821px){
  .vehicle-configurator-v2 .vehicle-value-cards .price-dropdown-card{
    position:relative !important;
    inset:auto !important;
    width:auto !important;
    height:92px !important;
    min-height:92px !important;
    margin:0 !important;
  }
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
    bottom:108px !important;
  }
}
.vehicle-configurator-v2 .registration-tax-mini-card{
  position:relative;
  min-width:0;
  height:92px;
  padding:11px 15px 9px;
  border:1px solid rgba(223,235,230,.22);
  border-radius:15px;
  background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
  overflow:hidden;
}
.vehicle-configurator-v2 .registration-tax-mini-card > label{
  display:block;
  margin:0 0 5px;
  color:#f2f5f3;
  font-size:14px;
  font-weight:750;
  line-height:18px;
}
.vehicle-configurator-v2 .registration-tax-mini-value{
  min-height:27px;
  display:flex;
  align-items:center;
  color:#fff;
}
.vehicle-configurator-v2 .registration-tax-mini-value strong{
  font-size:18px;
  line-height:1;
  letter-spacing:-.03em;
  color:#a9ed7c;
}
.vehicle-configurator-v2 .registration-tax-mini-placeholder{
  display:block;
  max-width:95%;
  color:rgba(220,228,224,.35);
  font-size:9.5px;
  line-height:1.2;
  font-weight:650;
}
.vehicle-configurator-v2 .registration-tax-details-btn{
  position:absolute;
  right:11px;
  bottom:7px;
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:0;
  background:transparent;
  color:rgba(255,255,255,.55);
  font-size:9px;
  font-weight:750;
  cursor:pointer;
}
.vehicle-configurator-v2 .registration-tax-details-btn:hover{
  color:#a9ed7c;
}

/* Responsive: keep the two values side-by-side where possible. */
@media(max-width:820px){
  .vehicle-configurator-v2 .vehicle-value-cards{
    position:relative !important;
    inset:auto !important;
    width:100% !important;
    height:auto !important;
    margin:10px 0 0 !important;
    grid-template-columns:1fr 1fr;
    gap:8px;
  }
  .vehicle-configurator-v2 .vehicle-value-cards .price-dropdown-card{
    margin:0 !important;
    min-height:94px !important;
    height:94px !important;
    padding:12px 11px 10px !important;
  }
  .vehicle-configurator-v2 .registration-tax-mini-card{
    min-height:94px;
    height:94px;
    padding:12px 11px 9px;
  }
  .vehicle-configurator-v2 .price-dropdown-card > label,
  .vehicle-configurator-v2 .registration-tax-mini-card > label{
    font-size:11px !important;
  }
  .vehicle-configurator-v2 .registration-tax-mini-value strong{font-size:15px}
  .vehicle-configurator-v2 .registration-tax-mini-placeholder{font-size:8.5px}
  .vehicle-configurator-v2 .vehicle-image-identity{
    left:10px;top:48px;max-width:64%;
  }
  .vehicle-configurator-v2 .vehicle-image-brand{font-size:22px}
  .vehicle-configurator-v2 .vehicle-image-edition{font-size:10px}
  .vehicle-configurator-v2 .vehicle-image-identity.no-image{
    left:50%;top:55%;max-width:88%;
  }
}
@media(max-width:430px){
  .vehicle-configurator-v2 .vehicle-value-cards{grid-template-columns:1fr 1fr}
  .vehicle-configurator-v2 .registration-tax-details-btn{right:9px}
}
\n\n/* 2026-09-18 — Brand logo beside vehicle identity + matching LTPF value style */\n.vehicle-configurator-v2 .vehicle-image-brand-row{\n  display:flex;align-items:center;gap:10px;max-width:100%;\n}\n.vehicle-configurator-v2 .vehicle-image-brand-logo{\n  display:none;width:auto;height:30px;max-width:54px;object-fit:contain;\n  filter:drop-shadow(0 2px 10px rgba(0,0,0,.30));\n}\n.vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-brand-row{\n  justify-content:center;\n}\n.vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-brand-logo{\n  height:46px;max-width:78px;\n}\n\n/* LTPF amount now visually matches the adjacent Registration Tax amount. */\n.vehicle-configurator-v2 .price-dropdown-card input#price{\n  font-size:18px !important;\n  line-height:1 !important;\n  font-weight:800 !important;\n  letter-spacing:-.03em !important;\n  color:#a9ed7c !important;\n}\n.vehicle-configurator-v2 .price-leading-icon{\n  color:#a9ed7c !important;\n}\n@media(max-width:820px){\n  .vehicle-configurator-v2 .vehicle-image-brand-logo{height:23px;max-width:42px}\n  .vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-brand-logo{height:34px;max-width:60px}\n  .vehicle-configurator-v2 .price-dropdown-card input#price{font-size:15px !important}\n}\n
/* 2026-09-18 — Brand logo size correction: match brand-name text height */
.vehicle-configurator-v2 .vehicle-image-brand-logo{
  height:1em !important;
  width:auto !important;
  max-width:1.65em !important;
  flex:0 0 auto !important;
  object-fit:contain !important;
}
.vehicle-configurator-v2 .vehicle-image-brand-row{
  font-size:clamp(20px,2.1vw,30px);
  line-height:.95;
}
.vehicle-configurator-v2 .vehicle-image-brand{
  font-size:1em !important;
}
.vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-brand-row{
  font-size:clamp(34px,4.2vw,58px);
}
.vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-brand-logo{
  height:1em !important;
  max-width:1.65em !important;
}
@media(max-width:820px){
  .vehicle-configurator-v2 .vehicle-image-brand-row{font-size:22px}
  .vehicle-configurator-v2 .vehicle-image-brand-logo{height:1em !important;max-width:1.65em !important}
  .vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-brand-logo{height:1em !important;max-width:1.65em !important}
}


/* =========================================================
   2026-09-18 — Exact brand-logo + LTPF visual correction
   ========================================================= */

/* Brand logo: force a genuinely small icon next to the brand name.
   Explicit display/box sizing prevents intrinsic SVG/PNG dimensions
   from taking over in Chrome. */
.vehicle-configurator-v2 .vehicle-image-brand-row{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:8px !important;
  width:auto !important;
  max-width:100% !important;
  font-size:clamp(20px,2.1vw,30px) !important;
  line-height:1 !important;
}
.vehicle-configurator-v2 .vehicle-image-brand{
  display:block !important;
  font-size:1em !important;
  line-height:1 !important;
}
.vehicle-configurator-v2 img.vehicle-image-brand-logo{
  display:block !important;
  flex:0 0 auto !important;
  width:auto !important;
  height:.82em !important;
  min-width:0 !important;
  min-height:0 !important;
  max-width:1.15em !important;
  max-height:.82em !important;
  object-fit:contain !important;
  object-position:center !important;
  margin:0 !important;
  padding:0 !important;
  transform:none !important;
}

/* Same rule when there is no vehicle image — logo stays equal to the
   larger brand text instead of becoming an oversized emblem. */
.vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-brand-row{
  justify-content:center !important;
  font-size:clamp(34px,4.2vw,58px) !important;
}
.vehicle-configurator-v2 .vehicle-image-identity.no-image img.vehicle-image-brand-logo{
  height:.82em !important;
  max-height:.82em !important;
  max-width:1.15em !important;
}

/* LTPF amount: same typography, baseline and compact € spacing as
   the Registration Tax value; only the colour remains neutral grey. */
.vehicle-configurator-v2 .price-dropdown-card .price-control-row{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:0 !important;
  min-height:27px !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
}
.vehicle-configurator-v2 .price-dropdown-card .price-leading-icon{
  width:auto !important;
  min-width:0 !important;
  height:auto !important;
  margin:0 !important;
  padding:0 !important;
  color:#d7dcda !important;
}
.vehicle-configurator-v2 .price-dropdown-card .price-leading-icon svg{
  display:none !important;
}
.vehicle-configurator-v2 .price-dropdown-card .price-leading-icon::after{
  content:"€";
  display:block;
  margin:0 !important;
  padding:0 !important;
  font-family:inherit !important;
  font-size:18px !important;
  line-height:1 !important;
  font-weight:800 !important;
  letter-spacing:-.03em !important;
}
.vehicle-configurator-v2 .price-dropdown-card .required-field-wrap{
  display:block !important;
  flex:0 1 auto !important;
  width:auto !important;
  min-width:0 !important;
  margin:0 !important;
  padding:0 !important;
}
.vehicle-configurator-v2 .price-dropdown-card input#price{
  display:block !important;
  width:145px !important;
  min-width:0 !important;
  height:auto !important;
  min-height:0 !important;
  margin:0 0 0 1px !important;
  padding:0 !important;
  border:0 !important;
  outline:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  font-family:inherit !important;
  font-size:18px !important;
  line-height:1 !important;
  font-weight:800 !important;
  letter-spacing:-.03em !important;
  color:#d7dcda !important;
  text-align:left !important;
  appearance:textfield !important;
  -moz-appearance:textfield !important;
}
.vehicle-configurator-v2 .price-dropdown-card input#price::-webkit-inner-spin-button,
.vehicle-configurator-v2 .price-dropdown-card input#price::-webkit-outer-spin-button{
  -webkit-appearance:none !important;
  margin:0 !important;
}

/* Match the vertical placement of both values. */
.vehicle-configurator-v2 .price-dropdown-card > label,
.vehicle-configurator-v2 .registration-tax-mini-card > label{
  margin-bottom:5px !important;
}
.vehicle-configurator-v2 .registration-tax-mini-value,
.vehicle-configurator-v2 .price-dropdown-card .price-control-row{
  min-height:27px !important;
}
.vehicle-configurator-v2 .registration-tax-mini-value strong{
  font-family:inherit !important;
  font-size:18px !important;
  line-height:1 !important;
  font-weight:800 !important;
  letter-spacing:-.03em !important;
}

@media(max-width:820px){
  .vehicle-configurator-v2 .vehicle-image-brand-row{
    font-size:22px !important;
  }
  .vehicle-configurator-v2 img.vehicle-image-brand-logo{
    height:.82em !important;
    max-height:.82em !important;
    max-width:1.15em !important;
  }
  .vehicle-configurator-v2 .price-dropdown-card .price-leading-icon::after,
  .vehicle-configurator-v2 .price-dropdown-card input#price,
  .vehicle-configurator-v2 .registration-tax-mini-value strong{
    font-size:15px !important;
  }
  .vehicle-configurator-v2 .price-dropdown-card input#price{
    width:105px !important;
  }
}


/* =========================================================
   2026-09-18 — Visual refinement based on approved mock-up
   ========================================================= */

/* Identity block: heavier, softer-grey type like the reference. */
.vehicle-configurator-v2 .vehicle-image-identity{
  left:18px !important;
  top:18px !important;
  gap:0 !important;
}
.vehicle-configurator-v2 .vehicle-image-brand-row{
  gap:12px !important;
  font-size:clamp(25px,2.65vw,38px) !important;
  line-height:.96 !important;
}
.vehicle-configurator-v2 .vehicle-image-brand{
  color:rgba(225,228,226,.82) !important;
  font-weight:900 !important;
  letter-spacing:-.055em !important;
  text-shadow:0 2px 18px rgba(0,0,0,.42) !important;
}
.vehicle-configurator-v2 .vehicle-image-year{
  margin-top:16px !important;
  color:rgba(206,211,208,.67) !important;
  font-size:clamp(17px,1.55vw,22px) !important;
  line-height:1 !important;
  font-weight:760 !important;
  letter-spacing:.015em !important;
}
.vehicle-configurator-v2 .vehicle-image-edition{
  margin-top:10px !important;
  color:rgba(206,211,208,.67) !important;
  font-size:clamp(16px,1.45vw,21px) !important;
  line-height:1.05 !important;
  font-weight:700 !important;
  letter-spacing:-.025em !important;
}

/* Logo: same visual height as the brand name, but placed in a subtle
   translucent glass tile so light/dark logos remain readable. */
.vehicle-configurator-v2 img.vehicle-image-brand-logo{
  box-sizing:content-box !important;
  height:.78em !important;
  width:auto !important;
  max-height:.78em !important;
  max-width:1.05em !important;
  padding:.18em !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:.28em !important;
  background:rgba(255,255,255,.07) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.07),0 5px 16px rgba(0,0,0,.13) !important;
  backdrop-filter:blur(7px) !important;
  -webkit-backdrop-filter:blur(7px) !important;
}

/* Vehicle image: preserve its scale, only move the whole visual downward
   toward the two value cards. */
.vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
  transform:translateY(28px) !important;
}
.vehicle-configurator-v2 .integrated-hero-wrap .hero-card #carImage{
  transform:translateY(20px) !important;
}

/* The value cards become slightly more premium / reference-like. */
.vehicle-configurator-v2 .vehicle-value-cards{
  gap:14px !important;
}
.vehicle-configurator-v2 .vehicle-value-cards .price-dropdown-card,
.vehicle-configurator-v2 .registration-tax-mini-card{
  border-color:rgba(224,233,229,.25) !important;
  background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.022)) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.055),0 8px 24px rgba(0,0,0,.08) !important;
}
.vehicle-configurator-v2 .price-dropdown-card > label,
.vehicle-configurator-v2 .registration-tax-mini-card > label{
  color:rgba(241,244,242,.94) !important;
  font-weight:800 !important;
  letter-spacing:-.015em !important;
}

/* No-image state keeps the same hierarchy without the glass tile becoming huge. */
.vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-brand-row{
  font-size:clamp(34px,4.2vw,58px) !important;
}
.vehicle-configurator-v2 .vehicle-image-identity.no-image img.vehicle-image-brand-logo{
  height:.72em !important;
  max-height:.72em !important;
  max-width:1em !important;
  padding:.14em !important;
}

/* Mobile: use smaller movement so the vehicle does not collide with cards. */
@media(max-width:820px){
  .vehicle-configurator-v2 .vehicle-image-identity{
    left:11px !important;
    top:44px !important;
  }
  .vehicle-configurator-v2 .vehicle-image-brand-row{
    gap:7px !important;
    font-size:24px !important;
  }
  .vehicle-configurator-v2 .vehicle-image-year{
    margin-top:10px !important;
    font-size:13px !important;
  }
  .vehicle-configurator-v2 .vehicle-image-edition{
    margin-top:6px !important;
    font-size:12px !important;
  }
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{
    transform:translateY(14px) !important;
  }
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card #carImage{
    transform:translateY(10px) !important;
  }
}

/* =========================================================
   2026-09-19 — Side Identity Rail
   Isolated vehicle-preview component; no controls are affected.
   ========================================================= */
.vehicle-configurator-v2 .vehicle-image-identity{
  position:absolute !important;z-index:12 !important;
  left:0 !important;top:54px !important;bottom:25px !important;
  width:clamp(150px,28%,210px) !important;max-width:none !important;min-height:0 !important;
  box-sizing:border-box !important;display:flex !important;flex-direction:column !important;
  align-items:center !important;justify-content:center !important;gap:0 !important;
  padding:24px 20px !important;overflow:hidden !important;
  border:0 !important;border-radius:22px !important;
  background:radial-gradient(circle at 50% 18%,rgba(255,255,255,.05),transparent 48%),linear-gradient(145deg,rgba(255,255,255,.04),rgba(255,255,255,.01)),rgba(13,20,16,.30) !important;
  box-shadow:0 22px 46px rgba(0,0,0,.16),0 0 34px rgba(0,0,0,.10),inset 0 1px 0 rgba(255,255,255,.025) !important;
  backdrop-filter:blur(15px) saturate(110%) !important;-webkit-backdrop-filter:blur(15px) saturate(110%) !important;
  pointer-events:none !important;text-align:center !important;text-shadow:none !important;
  opacity:0 !important;transform:translateX(-7px) !important;
  transition:opacity .24s ease,transform .24s ease !important;
}
.vehicle-configurator-v2 .vehicle-image-identity::before{display:none !important}
.vehicle-configurator-v2 .vehicle-image-identity.is-visible{opacity:1 !important;transform:none !important}
.vehicle-configurator-v2 .vehicle-identity-logo-wrap{
  display:flex !important;align-items:center !important;justify-content:center !important;
  width:100% !important;height:34px !important;margin:0 0 16px !important;
}
.vehicle-configurator-v2 img.vehicle-image-brand-logo{
  display:block !important;width:auto !important;height:29px !important;
  min-width:0 !important;min-height:0 !important;max-width:88px !important;max-height:29px !important;
  margin:0 auto !important;padding:0 !important;border:0 !important;border-radius:0 !important;
  background:transparent !important;background-image:none !important;box-shadow:none !important;
  filter:none !important;mix-blend-mode:normal !important;
  object-fit:contain !important;object-position:center !important;
}
.vehicle-configurator-v2 .vehicle-image-brand{
  display:block !important;width:100% !important;max-width:100% !important;
  color:rgba(245,248,246,.96) !important;font-size:clamp(25px,2.5vw,36px) !important;
  line-height:1 !important;font-weight:880 !important;letter-spacing:-.055em !important;
  text-align:center !important;overflow-wrap:normal !important;text-shadow:none !important;
}
.vehicle-configurator-v2 .vehicle-identity-accent{
  display:block !important;width:40px !important;height:2px !important;margin:18px auto !important;
  border-radius:99px !important;background:#a9ed7c !important;box-shadow:0 0 18px rgba(169,237,124,.34) !important;
}
.vehicle-configurator-v2 .vehicle-image-year{
  display:block !important;width:100% !important;margin:0 0 17px !important;
  color:rgba(238,243,240,.88) !important;font-size:17px !important;line-height:1 !important;
  font-weight:780 !important;letter-spacing:-.01em !important;text-align:center !important;
}
.vehicle-configurator-v2 .vehicle-image-edition{
  display:block !important;width:100% !important;max-width:100% !important;min-height:32px !important;
  margin:0 !important;overflow:visible !important;color:rgba(226,233,229,.70) !important;
  font-size:12px !important;line-height:1.35 !important;font-weight:650 !important;
  letter-spacing:-.012em !important;white-space:normal !important;text-align:center !important;text-overflow:clip !important;
}
@media(min-width:821px){
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card #carImage{
    width:76% !important;max-width:76% !important;margin-left:auto !important;margin-right:0 !important;
    object-position:right center !important;
  }
  .vehicle-configurator-v2 .integrated-hero-wrap .car-shadow{left:29% !important;width:68% !important}
}
.vehicle-configurator-v2 .vehicle-image-identity.no-image{
  left:50% !important;top:50% !important;bottom:auto !important;
  width:min(390px,86%) !important;max-width:86% !important;min-height:240px !important;
  padding:30px !important;align-items:center !important;text-align:center !important;
  transform:translate(-50%,-48%) !important;
}
.vehicle-configurator-v2 .vehicle-image-identity.no-image.is-visible{transform:translate(-50%,-50%) !important}
.vehicle-configurator-v2 .vehicle-image-identity.no-image img.vehicle-image-brand-logo{
  height:38px !important;max-width:105px !important;max-height:38px !important;
}
.vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-brand{font-size:clamp(34px,4.2vw,54px) !important}
.vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-edition{max-width:90% !important;font-size:15px !important}
@media(max-width:820px){
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card{height:clamp(280px,64vw,350px) !important;padding:112px 4px 0 !important}
  .vehicle-configurator-v2 .vehicle-image-identity{
    left:0 !important;right:0 !important;top:40px !important;bottom:auto !important;
    width:100% !important;max-width:100% !important;min-height:68px !important;
    flex-direction:row !important;gap:12px !important;padding:12px 16px !important;border-radius:17px !important;
  }
  .vehicle-configurator-v2 .vehicle-identity-logo-wrap{
    flex:0 0 44px !important;width:44px !important;height:30px !important;margin:0 !important;
  }
  .vehicle-configurator-v2 img.vehicle-image-brand-logo{height:24px !important;max-width:44px !important;max-height:24px !important}
  .vehicle-configurator-v2 .vehicle-image-brand{flex:0 1 auto !important;width:auto !important;font-size:20px !important}
  .vehicle-configurator-v2 .vehicle-identity-accent{
    flex:0 0 1px !important;width:1px !important;height:28px !important;margin:0 2px !important;
  }
  .vehicle-configurator-v2 .vehicle-image-year{
    flex:0 0 auto !important;width:auto !important;margin:0 !important;font-size:14px !important;
  }
  .vehicle-configurator-v2 .vehicle-image-edition{
    flex:0 1 190px !important;width:auto !important;min-height:0 !important;margin:0 !important;
    font-size:10px !important;line-height:1.15 !important;text-align:left !important;
  }
  .vehicle-configurator-v2 .integrated-hero-wrap .hero-card #carImage{
    width:100% !important;max-width:620px !important;height:100% !important;object-position:center bottom !important;
  }
  .vehicle-configurator-v2 .vehicle-image-identity.no-image{
    left:50% !important;right:auto !important;top:54% !important;width:86% !important;min-height:190px !important;
    flex-direction:column !important;gap:0 !important;padding:24px !important;
  }
  .vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-identity-logo-wrap{margin-bottom:10px !important}
  .vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-identity-accent{
    width:40px !important;height:2px !important;margin:15px auto !important;
  }
  .vehicle-configurator-v2 .vehicle-image-identity.no-image .vehicle-image-edition{text-align:center !important}
}
\n\n/* =========================================================\n   2026-09-18 — Exact amount baseline + Greek formatted LTPF\n   ========================================================= */\n.vehicle-configurator-v2 .vehicle-value-cards .price-dropdown-card,\n.vehicle-configurator-v2 .vehicle-value-cards .registration-tax-mini-card{\n  display:grid !important;\n  grid-template-rows:auto 28px auto !important;\n  align-content:start !important;\n}\n.vehicle-configurator-v2 .price-dropdown-card > label,\n.vehicle-configurator-v2 .registration-tax-mini-card > label{\n  min-height:20px !important;\n  margin:0 0 8px !important;\n  align-self:end !important;\n}\n.vehicle-configurator-v2 .price-dropdown-card .price-control-row,\n.vehicle-configurator-v2 .registration-tax-mini-value{\n  height:28px !important;\n  min-height:28px !important;\n  display:flex !important;\n  align-items:center !important;\n  align-self:start !important;\n  margin:0 !important;\n  padding:0 !important;\n}\n.vehicle-configurator-v2 .price-dropdown-card .price-leading-icon::after,\n.vehicle-configurator-v2 .price-dropdown-card input#price,\n.vehicle-configurator-v2 .registration-tax-mini-value strong{\n  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif !important;\n  font-size:18px !important;\n  line-height:28px !important;\n  font-weight:800 !important;\n  letter-spacing:-.03em !important;\n  font-variant-numeric:tabular-nums !important;\n}\n.vehicle-configurator-v2 .price-dropdown-card .price-leading-icon::after{\n  margin:0 !important;\n}\n.vehicle-configurator-v2 .price-dropdown-card input#price{\n  margin:0 !important;\n  width:155px !important;\n  color:#d7dcda !important;\n  caret-color:#d7dcda !important;\n}\n.vehicle-configurator-v2 .registration-tax-mini-value strong{\n  margin:0 !important;\n  padding:0 !important;\n}\n/* Reserve the third grid row on the LTPF card so the value itself remains\n   on exactly the same horizontal baseline as the tax value. */\n.vehicle-configurator-v2 .price-dropdown-card::after{\n  content:"";\n  display:block;\n  min-height:18px;\n}\n@media(max-width:820px){\n  .vehicle-configurator-v2 .price-dropdown-card .price-leading-icon::after,\n  .vehicle-configurator-v2 .price-dropdown-card input#price,\n  .vehicle-configurator-v2 .registration-tax-mini-value strong{\n    font-size:15px !important;\n    line-height:24px !important;\n  }\n  .vehicle-configurator-v2 .price-dropdown-card .price-control-row,\n  .vehicle-configurator-v2 .registration-tax-mini-value{height:24px !important;min-height:24px !important}\n  .vehicle-configurator-v2 .price-dropdown-card input#price{width:125px !important}\n}\n
