.evc-card{
  position:relative;
  background:var(--evc-bg);
  border:1px solid rgba(15,23,42,.08);
  border-radius:var(--evc-radius);
  box-shadow:0 8px 24px rgba(15,23,42,.06);
  margin:0 0 26px;
  overflow:hidden;
}

.evc-card *{box-sizing:border-box}

.evc-badge{
  position:absolute;
  left:16px;
  top:16px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:4px;
  background:#b823e0;
  color:#fff;
  font-size:13px;
  font-weight:700;
  line-height:1;
}

.evc-badge--overlay{
  top:auto;
  bottom:16px;
}

.evc-card-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  padding:22px 22px 10px;
}

.evc-title{
  margin:0;
  max-width:75%;
  color:var(--evc-title);
  font-size:var(--evc-title-size);
  font-weight:800;
  line-height:1.2;
  text-transform:uppercase;
}

.evc-price,
.evc-compact-price{
  color:var(--evc-price);
  font-size:var(--evc-price-size);
  font-weight:800;
  line-height:1;
  text-align:right;
}

.evc-price .amount,
.evc-compact-price .amount{font-weight:800}
.evc-price del,
.evc-compact-price del{
  opacity:.55;
  font-size:.72em;
  margin-right:8px;
}
.evc-price ins,
.evc-compact-price ins{
  text-decoration:none;
}

.evc-main-grid{
  display:grid;
  grid-template-columns:minmax(300px,1.1fr) 1fr;
  gap:18px;
  padding:0 0 22px;
}

.evc-media-col{
  position:relative;
  padding:0;
}

.evc-content-col{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:8px 22px 0 8px;
}

.evc-main-image,
.evc-compact-image{
  position:relative;
  display:block;
  width:100%;
  overflow:hidden;
  background:#e5e7eb;
  color:inherit;
  text-decoration:none;
}

button.evc-main-image{
  appearance:none;
  border:0;
  padding:0;
  cursor:zoom-in;
}

.evc-main-image::before{
  content:"";
  display:block;
  padding-top:var(--evc-image-ratio);
}

.evc-compact-image::before{
  content:"";
  display:block;
  padding-top:var(--evc-compact-image-ratio);
}

.evc-main-image img,
.evc-compact-image img{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.evc-gallery{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:8px;
  padding:8px 0 0;
}

.evc-thumb{
  appearance:none;
  border:1px solid rgba(15,23,42,.12);
  border-radius:4px;
  padding:2px;
  background:#fff;
  cursor:pointer;
  overflow:hidden;
}

.evc-thumb.is-active{
  border-color:var(--evc-accent);
  box-shadow:0 0 0 1px var(--evc-accent);
}

.evc-thumb img{
  display:block;
  width:100%;
  height:74px;
  object-fit:cover;
}

.evc-description{
  color:#27354b;
  font-size:var(--evc-desc-size);
  line-height:1.7;
  padding-right:10px;
}

.evc-specs{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px 18px;
  margin-top:4px;
}

.evc-spec,
.evc-contact-line{
  display:flex;
  align-items:center;
  gap:10px;
  color:#18243c;
  font-size:var(--evc-meta-size);
  font-weight:700;
}

.evc-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:22px;
  font-weight:700;
}

.evc-contact{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:4px;
}

.evc-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding-top:10px;
}

.evc-actions--compact{
  flex-direction:column;
}

.evc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:11px 20px;
  border:2px solid var(--evc-accent);
  border-radius:8px;
  background:#fff;
  color:var(--evc-accent);
  cursor:pointer;
  font-size:var(--evc-btn-size);
  font-weight:800;
  letter-spacing:.02em;
  text-decoration:none;
  text-transform:uppercase;
  transition:all .2s ease;
}

.evc-btn--primary{
  background:var(--evc-accent);
  color:#fff;
}

.evc-btn--secondary,
.evc-btn--ghost{
  background:#fff;
  color:var(--evc-accent);
}

.evc-btn--full{width:100%}

.evc-btn:hover{
  opacity:.94;
  transform:translateY(-1px);
}

.evc-card--compact{
  max-width:420px;
  background:#f3efef;
}

.evc-compact-bar{
  height:8px;
  margin:12px 24px 0;
  background:var(--evc-accent);
}

.evc-compact-inner{padding:12px 24px 24px}

.evc-compact-title{
  margin:0 0 14px;
  color:#24324a;
  font-size:var(--evc-compact-title-size);
  font-weight:700;
  line-height:1.2;
  text-transform:uppercase;
}

.evc-card--compact .evc-compact-price{
  margin:18px 0;
  color:#24324a;
  font-size:var(--evc-compact-price-size);
  text-align:left;
}

.evc-compact-meta-row{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(100%, var(--evc-compact-spec-min-width)), 1fr));
  border:1px solid rgba(15,23,42,.08);
  border-top:none;
  background:#fff;
}

.evc-compact-meta-row .evc-spec{
  justify-content:center;
  padding:12px;
  border-right:1px solid rgba(15,23,42,.08);
}

.evc-compact-meta-row .evc-spec:last-child{border-right:none}

.evc-compact-location{
  margin:14px 0 6px;
  color:var(--evc-accent);
  font-size:15px;
}

.evc-part{margin:0 0 12px}

.evc-search{margin:0 0 28px}

.evc-search__card{
  padding:24px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 24px rgba(15,23,42,.05);
}

.evc-search__title{
  margin:0 0 18px;
  color:#15233b;
  font-size:28px;
  line-height:1.2;
}

.evc-search__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(180px,1fr));
  gap:16px;
}

.evc-search__field label{
  display:block;
  margin:0 0 8px;
  color:#15233b;
  font-weight:700;
}

.evc-search__field input,
.evc-search__field select{
  width:100%;
  min-height:48px;
  padding:0 14px;
  border:1px solid #d4d7dd;
  border-radius:8px;
  background:#fff;
}

.evc-search__actions{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:18px;
}

.evc-search__reset{
  color:#6b7280;
  font-weight:700;
  text-decoration:none;
}

.evc-details-block,
.evc-features-block{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,.08);
}

.evc-subtitle{
  margin:0 0 12px;
  color:var(--evc-title);
  font-size:18px;
  line-height:1.3;
}

.evc-detail-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:8px 16px;
}

.evc-detail-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:8px 0;
  border-bottom:1px dashed rgba(0,0,0,.08);
  font-size:var(--evc-meta-size);
}

.evc-detail-label{
  color:var(--evc-title);
  font-weight:700;
}

.evc-detail-value{text-align:right}

.evc-features-list{
  margin:0;
  padding-left:18px;
  columns:2;
  column-gap:24px;
}

.evc-features-list li{
  margin:0 0 8px;
  break-inside:avoid;
}

.evc-modal,
.evc-lightbox{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
}

.evc-modal.is-open,
.evc-lightbox.is-open{display:block}

.evc-modal__backdrop,
.evc-lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.62);
}

.evc-modal__dialog{
  position:relative;
  z-index:2;
  max-width:640px;
  margin:6vh auto;
  padding:28px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 24px 60px rgba(15,23,42,.28);
}

.evc-modal__close{
  position:absolute;
  top:14px;
  right:14px;
  border:0;
  background:transparent;
  color:#64748b;
  cursor:pointer;
  font-size:30px;
  line-height:1;
}

.evc-modal__title{
  margin:0 0 8px;
  color:var(--evc-title);
  font-size:30px;
  line-height:1.15;
}

.evc-modal__intro{
  margin:0 0 14px;
  color:#475569;
  font-size:15px;
  line-height:1.6;
}

.evc-modal__vehicle{
  margin:0 0 18px;
  padding:12px 14px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:10px;
  background:#f8fafc;
  color:#0f172a;
  font-weight:700;
}

.evc-modal__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.evc-modal__field{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.evc-modal__field--full{grid-column:1 / -1}

.evc-modal__field label{
  color:#15233b;
  font-weight:700;
}

.evc-modal__field input,
.evc-modal__field textarea{
  width:100%;
  min-height:48px;
  padding:12px 14px;
  border:1px solid #d4d7dd;
  border-radius:10px;
  background:#fff;
}

.evc-modal__field input[readonly]{background:#f8fafc}

.evc-modal__field textarea{
  min-height:140px;
  resize:vertical;
}

.evc-modal__actions{margin-top:18px}

.evc-modal__status{
  margin-top:16px;
  font-weight:700;
}

.evc-modal__status.is-success{color:#15803d}
.evc-modal__status.is-error{color:#b91c1c}

.evc-inline-enquiry{
  margin:34px 0;
  max-width:760px;
  padding:0;
}

.evc-inline-enquiry__back{
  width:100%;
  justify-content:flex-start;
  padding-left:20px;
  margin-bottom:18px;
}

.evc-inline-enquiry__tabs{
  display:flex;
  flex-wrap:wrap;
  gap:0;
  margin-bottom:18px;
}

.evc-inline-enquiry__tab{
  min-height:48px;
  border-radius:0;
}

.evc-inline-enquiry__tab.is-active{
  background:var(--evc-accent);
  color:#fff;
}

.evc-inline-enquiry__tab--ghost{
  background:#fff;
  color:var(--evc-accent);
}

.evc-inline-enquiry__panel{
  padding:24px;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  box-shadow:0 8px 24px rgba(15,23,42,.05);
}

.evc-inline-enquiry__title{
  margin:0 0 10px;
  color:var(--evc-title);
  font-size:24px;
  line-height:1.2;
}

.evc-inline-enquiry__intro{
  margin:0 0 18px;
  max-width:620px;
  color:#334155;
  font-size:16px;
  line-height:1.7;
}

.evc-checkline{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#15233b;
  cursor:pointer;
  font-weight:700;
}

.evc-checkline input{margin-top:4px}

.evc-enquiry-form--inline .evc-modal__field label{
  font-size:14px;
  letter-spacing:.01em;
  text-transform:uppercase;
}

.evc-lightbox__dialog{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  width:min(92vw, 1200px);
  height:100%;
  margin:0 auto;
  padding:56px 72px;
}

.evc-lightbox__image{
  display:block;
  max-width:100%;
  max-height:82vh;
  border-radius:10px;
  background:#fff;
  box-shadow:0 24px 60px rgba(15,23,42,.28);
}

.evc-lightbox__close,
.evc-lightbox__nav{
  position:absolute;
  z-index:3;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:#0f172a;
  cursor:pointer;
  box-shadow:0 6px 20px rgba(15,23,42,.18);
}

.evc-lightbox__close{
  top:20px;
  right:20px;
  font-size:28px;
  line-height:1;
}

.evc-lightbox__nav{
  top:50%;
  transform:translateY(-50%);
  font-size:24px;
  line-height:1;
}

.evc-lightbox__nav--prev{left:16px}
.evc-lightbox__nav--next{right:16px}

body.evc-modal-open,
body.evc-lightbox-open{overflow:hidden}

.evc-single-product-hook{margin:0 0 28px}
.single-product div.product .evc-single-product-hook .evc-card{max-width:none}
.single-product .summary .evc-card{margin-top:0}

.evc-single-card-enabled.single-product div.product div.images.woocommerce-product-gallery{display:none !important}
.evc-single-card-enabled.single-product div.product div.summary.entry-summary{
  float:none;
  width:100% !important;
  margin:0 !important;
}

.evc-card--single-standard{
  background:#fff;
  box-shadow:none;
}

.evc-card--single-standard .evc-card-head{
  padding:18px 22px 12px;
  border-bottom:1px solid rgba(15,23,42,.08);
}

.evc-main-grid--single-standard{
  grid-template-columns:minmax(0,1.24fr) minmax(320px,.86fr);
  gap:24px;
  align-items:start;
  padding:20px 22px 24px;
}

.evc-card--single-standard .evc-media-col,
.evc-card--single-standard .evc-content-col{padding:0}

.evc-card--single-standard .evc-main-image,
.evc-card--single-standard .evc-gallery{margin-left:0}

.evc-card--single-standard .evc-main-image{
  border:0;
  border-radius:0;
}

.evc-card--single-standard .evc-thumb img{height:62px}

.evc-single-details-area{
  margin-top:18px;
}

.evc-single-summary-card{
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
}

.evc-specs--single{
  margin-top:0;
  gap:12px 18px;
}

.evc-quick-specs-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px 18px;
  margin:0 0 16px;
}

.evc-quick-specs-grid .evc-spec{
  align-items:flex-start;
  gap:8px;
  padding:0;
  font-size:13px;
  font-weight:700;
}

.evc-actions--single-top{
  margin-top:0;
  margin-bottom:18px;
}

.evc-card--single-standard .evc-price{
  font-size:44px;
}

.evc-card--single-standard .evc-price del{
  display:block;
  margin:0 0 2px;
  font-size:22px;
}

.evc-card--single-standard .evc-price ins,
.evc-card--single-standard .evc-price > .amount{
  display:block;
}

.evc-card--single-standard .evc-main-image::before{
  padding-top:58%;
}

.evc-card--single-standard .evc-subtitle{
  font-size:20px;
  font-weight:800;
}

.evc-card--single-standard .evc-details-block,
.evc-card--single-standard .evc-features-block{
  margin-top:24px;
  padding-top:0;
  border-top:0;
}

.evc-card--single-standard .evc-detail-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:0 26px;
  border-top:1px solid rgba(15,23,42,.08);
}

.evc-card--single-standard .evc-detail-row{
  padding:10px 0;
  border-bottom:1px solid rgba(15,23,42,.08);
  font-size:13px;
}

.evc-card--single-standard .evc-features-list{
  padding-left:18px;
  columns:2;
  column-gap:48px;
}

.evc-card--single-standard .evc-features-list li{
  margin:0 0 10px;
}

.evc-contact--single{
  margin-top:6px;
  gap:8px;
}

.evc-actions--single{
  margin-top:16px;
  padding-top:0;
}

.evc-actions--single .evc-btn{
  flex:1 1 calc(50% - 6px);
  min-width:170px;
}

.evc-single-side-title{
  margin:18px 0 0;
  color:var(--evc-title);
  font-size:42px;
  font-weight:800;
  line-height:1.08;
  text-align:center;
}

.evc-description--single{
  margin-top:6px;
  margin-bottom:18px;
  max-width:760px;
}

.evc-card--single-standard .evc-single-description{
  display:block;
  max-width:760px;
  margin-top:0;
  padding-top:0;
  border-top:0;
}

.evc-inline-enquiry--sidebar{
  max-width:none;
  margin-top:18px;
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
}

.evc-inline-enquiry--sidebar .evc-inline-enquiry__back,
.evc-inline-enquiry--sidebar .evc-inline-enquiry__tabs,
.evc-inline-enquiry--sidebar .evc-modal__vehicle{display:none}

.evc-inline-enquiry--sidebar .evc-inline-enquiry__panel{
  padding:20px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:2px;
  background:#fff;
  box-shadow:none;
}

.evc-inline-enquiry--sidebar .evc-inline-enquiry__title{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.15;
}

.evc-inline-enquiry--sidebar .evc-inline-enquiry__intro{
  margin:0 0 14px;
  color:#64748b;
  font-size:13px;
  line-height:1.55;
}

.evc-inline-enquiry--sidebar .evc-modal__grid{
  gap:10px;
}

.evc-inline-enquiry--sidebar .evc-modal__field label{
  color:#0f172a;
  font-size:10px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.evc-inline-enquiry--sidebar .evc-modal__field input,
.evc-inline-enquiry--sidebar .evc-modal__field textarea{
  min-height:40px;
  padding:10px 12px;
  border-radius:0;
  font-size:13px;
}

.evc-inline-enquiry--sidebar .evc-modal__field textarea{
  min-height:92px;
}

.evc-inline-enquiry--sidebar .evc-checkline{
  align-items:center;
  font-size:11px;
  line-height:1.45;
  font-weight:700;
}

.evc-inline-enquiry--sidebar .evc-checkline input{
  width:18px;
  height:18px;
  margin-top:0;
}

.evc-inline-enquiry--sidebar .evc-modal__actions{margin-top:12px}

.evc-inline-enquiry--sidebar .evc-enquiry-submit{
  min-height:42px;
  border-radius:4px;
  font-size:13px;
}

@media (max-width:980px){
  .evc-main-grid{grid-template-columns:1fr}
  .evc-content-col{padding:12px 18px 18px}
  .evc-title{max-width:none}
  .evc-card-head{flex-direction:column;padding:18px 18px 4px}
  .evc-price{text-align:left}
  .evc-gallery .evc-thumb img{height:64px}
  .evc-search__grid{grid-template-columns:repeat(2, minmax(180px,1fr))}
  .evc-main-grid--single-standard{grid-template-columns:1fr;padding:18px}
  .evc-card--single-standard .evc-card-head{padding:18px 18px 12px}
  .evc-single-side-title{font-size:32px}
  .evc-quick-specs-grid{grid-template-columns:1fr 1fr}
}

@media (max-width:767px){
  .evc-quick-specs-grid{grid-template-columns:1fr}
  .evc-card--single-standard .evc-detail-grid{grid-template-columns:1fr}
  .evc-card--single-standard .evc-features-list{columns:1}
  .evc-modal__dialog{
    max-width:none;
    min-height:100vh;
    margin:0;
    padding:22px;
    border-radius:0;
  }

  .evc-modal__grid,
  .evc-inline-enquiry__tabs,
  .evc-search__grid{grid-template-columns:1fr}

  .evc-inline-enquiry__tabs{flex-direction:column}
  .evc-inline-enquiry__back,
  .evc-inline-enquiry__tab{width:100%}
  .evc-inline-enquiry__panel{padding:20px}
  .evc-lightbox__dialog{width:100vw;padding:64px 16px 24px}
  .evc-lightbox__nav{width:42px;height:42px}
  .evc-lightbox__nav--prev{left:10px}
  .evc-lightbox__nav--next{right:10px}
}

@media (max-width:640px){
  .evc-specs,
  .evc-detail-grid{grid-template-columns:1fr}
  .evc-actions{flex-direction:column}
  .evc-actions--single .evc-btn,
  .evc-btn{width:100%}
  .evc-price,
  .evc-compact-price{font-size:calc(var(--evc-price-size) - 4px)}
  .evc-features-list{columns:1}
}


.evc-compact-title-link{color:inherit;text-decoration:none;display:inline-block;}
.evc-compact-title-link:hover,.evc-compact-title-link:focus{color:inherit;text-decoration:none;}
.evc-card--compact .evc-compact-image,.evc-card--compact .evc-actions .evc-btn{position:relative;z-index:3;}


.evc-badge--top-right{left:auto;right:16px;top:16px;bottom:auto;}
.evc-main-image,.evc-compact-image{position:relative;}
.evc-compact-title-link{color:inherit;text-decoration:none;}
.woocommerce ul.products li.product .evc-card--compact,
.woocommerce-page ul.products li.product .evc-card--compact{max-width:none;width:100%;height:100%;margin:0;}
.woocommerce ul.products li.product .evc-card,
.woocommerce-page ul.products li.product .evc-card{height:100%;}
.woocommerce ul.products li.product.product .evc-card--compact .evc-actions,
.woocommerce-page ul.products li.product.product .evc-card--compact .evc-actions{margin-top:auto;}
.woocommerce ul.products li.product .evc-card--compact .evc-compact-inner,
.woocommerce-page ul.products li.product .evc-card--compact .evc-compact-inner{display:flex;flex-direction:column;height:100%;}
.woocommerce ul.products li.product .evc-card--compact .evc-compact-image,
.woocommerce-page ul.products li.product .evc-card--compact .evc-compact-image{width:100%;}


.evc-vehicle-loop{
  display:grid;
  gap:24px;
  margin:0 0 28px;
}

.evc-vehicle-loop--compact{
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:stretch;
}

.evc-vehicle-loop--wide{
  grid-template-columns:1fr;
}

.evc-vehicle-loop.columns-1{grid-template-columns:1fr;}
.evc-vehicle-loop.columns-2{grid-template-columns:repeat(2,minmax(0,1fr));}
.evc-vehicle-loop.columns-3{grid-template-columns:repeat(3,minmax(0,1fr));}
.evc-vehicle-loop.columns-4{grid-template-columns:repeat(4,minmax(0,1fr));}
.evc-vehicle-loop.columns-5{grid-template-columns:repeat(5,minmax(0,1fr));}
.evc-vehicle-loop.columns-6{grid-template-columns:repeat(6,minmax(0,1fr));}

.evc-vehicle-loop__item,
.evc-vehicle-loop__item .evc-card{
  height:100%;
}

.evc-vehicle-loop__item .evc-card--compact{
  max-width:none;
  margin:0;
}

.evc-vehicle-loop-pagination{
  margin:24px 0 8px;
}

.evc-vehicle-loop-pagination ul{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  list-style:none;
  padding:0;
  margin:0;
}

.evc-vehicle-loop-pagination a,
.evc-vehicle-loop-pagination span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:42px;
  padding:8px 14px;
  border:1px solid rgba(15,23,42,.15);
  border-radius:8px;
  background:#fff;
  text-decoration:none;
}

.evc-vehicle-loop-pagination .current{
  background:var(--evc-accent);
  border-color:var(--evc-accent);
  color:#fff;
}

.evc-vehicle-loop-empty{
  padding:18px 20px;
  border:1px solid rgba(15,23,42,.1);
  border-radius:8px;
  background:#fff;
}

@media (max-width: 1100px){
  .evc-vehicle-loop--compact,
  .evc-vehicle-loop.columns-4,
  .evc-vehicle-loop.columns-5,
  .evc-vehicle-loop.columns-6{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media (max-width: 767px){
  .evc-vehicle-loop,
  .evc-vehicle-loop--compact,
  .evc-vehicle-loop.columns-2,
  .evc-vehicle-loop.columns-3,
  .evc-vehicle-loop.columns-4,
  .evc-vehicle-loop.columns-5,
  .evc-vehicle-loop.columns-6{grid-template-columns:1fr;}
}


/* EasyCars Bridge layout hardening */
.single-product .evc-single-product-hook,
.single-product .evc-card--single{max-width:1140px;margin:0 auto 32px !important;}
.single-product .evc-card--single{background:#fff !important;}
.single-product .evc-main-grid--single-standard{grid-template-columns:minmax(0,1.7fr) minmax(360px,.85fr) !important;gap:32px !important;align-items:start !important;}
.single-product .evc-media-col,.single-product .evc-content-col{min-width:0;}
.single-product .evc-content-col--single-sidebar{position:relative;}
.single-product .evc-main-image,.single-product .evc-main-image img{border-radius:0 !important;}
.single-product .evc-main-image{background:#eef2f7 !important;}
.single-product .evc-single-summary-card,.single-product .evc-inline-enquiry--sidebar{background:#fff;border:1px solid rgba(15,23,42,.08);}
.single-product .evc-single-summary-card{padding:16px 16px 12px;border-radius:2px;margin-bottom:18px;}
.single-product .evc-specs--single{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:10px 18px !important;padding:0 0 6px;}
.single-product .evc-quick-specs-grid{margin:0 0 18px !important;}
.single-product .evc-single-side-title{font-size:24px !important;line-height:1.15 !important;margin:14px 0 0 !important;text-align:center;}
.single-product .evc-actions--single{display:grid !important;grid-template-columns:1fr 1fr !important;gap:10px !important;margin-bottom:14px !important;}
.single-product .evc-actions--single .evc-btn{width:100% !important;min-height:50px !important;font-weight:800 !important;}
.single-product .evc-inline-enquiry--sidebar{margin-top:0 !important;padding:0 !important;position:sticky;top:18px;align-self:start;}
.single-product .evc-inline-enquiry--sidebar .evc-inline-enquiry__panel{padding:20px !important;}
.single-product .evc-inline-enquiry--sidebar .evc-btn{width:100%;}
.single-product .evc-details-block,.single-product .evc-features-block{margin-top:22px !important;}
.single-product .evc-detail-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
.single-product .evc-detail-row{padding:10px 0 !important;}
.single-product .evc-features-list{columns:2 !important;}

.evc-card--compact{height:100%;display:flex;flex-direction:column;}
.evc-card--compact .evc-compact-inner{display:flex;flex-direction:column;height:100%;}
.evc-card--compact .evc-actions--compact{margin-top:auto;}
.evc-card--compact .evc-compact-image img{object-fit:cover;}
.evc-card--compact .evc-btn,.single-product .evc-btn{color:var(--evc-accent) !important;border-color:var(--evc-accent) !important;}
.evc-card--compact .evc-btn--primary,.single-product .evc-btn--primary{background:var(--evc-accent) !important;color:#fff !important;}
.evc-card--compact .evc-btn--secondary,.single-product .evc-btn--secondary{background:#fff !important;color:var(--evc-accent) !important;}
.evc-vehicle-loop{display:grid;gap:24px;}
.evc-vehicle-loop.columns-2{grid-template-columns:repeat(2,minmax(0,1fr));}
.evc-vehicle-loop.columns-3{grid-template-columns:repeat(3,minmax(0,1fr));}
.evc-vehicle-loop.columns-4{grid-template-columns:repeat(4,minmax(0,1fr));}
.evc-vehicle-loop.columns-5{grid-template-columns:repeat(5,minmax(0,1fr));}
.evc-vehicle-loop.columns-6{grid-template-columns:repeat(6,minmax(0,1fr));}

@media (max-width: 1180px){
  .single-product .evc-main-grid--single-standard{grid-template-columns:1fr !important;}
  .single-product .evc-content-col--single-sidebar{padding:0 22px 22px 22px !important;}
  .single-product .evc-inline-enquiry--sidebar{position:static;top:auto;}
}
@media (max-width: 1100px){
  .evc-vehicle-loop.columns-4,.evc-vehicle-loop.columns-5,.evc-vehicle-loop.columns-6{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media (max-width: 900px){
  .evc-vehicle-loop.columns-3,.evc-vehicle-loop.columns-4,.evc-vehicle-loop.columns-5,.evc-vehicle-loop.columns-6{grid-template-columns:repeat(2,minmax(0,1fr));}
  .single-product .evc-features-list{columns:1 !important;}
}
@media (max-width: 640px){
  .evc-vehicle-loop{grid-template-columns:1fr !important;}
  .single-product .evc-detail-grid,.single-product .evc-specs--single,.single-product .evc-actions--single{grid-template-columns:1fr !important;}
  .single-product .evc-card-head{padding:18px 18px 10px !important;}
  .single-product .evc-title{font-size:18px !important;}
  .single-product .evc-price{font-size:20px !important;}
}


/* v0.6.7.3 layout alignment patch */
.evc-card--compact{
  background:#f7f3f3;
  border:1px solid #e6dddd;
  border-radius:8px;
  box-shadow:none;
  overflow:hidden;
}
.evc-card--compact .evc-compact-inner{padding:12px 18px 18px;gap:0;}
.evc-compact-bar{height:6px;background:#18b7df;margin:12px 18px 0;border-radius:0;}
.evc-compact-title{margin:10px 0 14px;font-size:clamp(20px,2vw,var(--evc-compact-title-size));line-height:1.1;font-weight:800;color:var(--evc-title);min-height:unset;}
.evc-compact-image{display:block;border:none;background:#fff;}
.evc-compact-image::before{padding-top:66%;}
.evc-compact-image img{width:100%;height:100%;object-fit:cover;display:block;}
.evc-compact-meta-row{display:grid;grid-template-columns:1fr 1fr;border:1px solid #ece7e7;border-top:none;background:#fff;margin:0 0 14px;gap:0;}
.evc-compact-meta-row .evc-spec{justify-content:center;padding:10px 12px;border-right:1px solid #ece7e7;border-top:none;background:#fff;font-size:14px;font-weight:600;color:#15233b;min-height:40px;}
.evc-compact-meta-row .evc-spec:last-child{border-right:none;}
.evc-card--compact .evc-compact-price{margin:0 0 16px;font-size:52px;line-height:1;font-weight:800;color:#15233b;display:flex;flex-wrap:wrap;gap:10px;align-items:flex-end;}
.evc-card--compact .evc-compact-price .amount{font-weight:800;color:#15233b;}
.evc-card--compact .evc-compact-price del{font-size:22px;color:#8d8d99;opacity:1;}
.evc-card--compact .evc-compact-price ins{text-decoration:none;}
.evc-card--compact .evc-actions--compact{display:grid;grid-template-columns:1fr;gap:12px;margin-top:0;}
.evc-card--compact .evc-btn{width:100%;min-height:54px;border-radius:6px;font-size:15px;font-weight:800;letter-spacing:.01em;display:inline-flex;align-items:center;justify-content:center;text-transform:uppercase;}
.evc-card--compact .evc-btn--primary{background:#18b7df !important;border-color:#18b7df !important;color:#fff !important;}
.evc-card--compact .evc-btn--secondary{background:#fff !important;border:2px solid #18b7df !important;color:#18b7df !important;}
.evc-card--wide{background:#fff;border:1px solid #e8e2e2;border-radius:4px;overflow:hidden;box-shadow:none;}
.evc-card-head{padding:14px 18px;border-bottom:1px solid #ece7e7;align-items:flex-start;}
.evc-title{font-size:24px;line-height:1.15;font-weight:800;color:#15233b;margin:0;}
.evc-price{font-size:28px;font-weight:800;color:#15233b;}
.evc-price .amount{font-weight:800;color:#15233b;}
.evc-price del{font-size:18px;color:#8d8d99;opacity:1;margin-right:8px;}
.evc-main-grid{grid-template-columns:minmax(0,1.45fr) minmax(320px,.85fr);gap:20px;padding:16px 18px 18px;align-items:start;}
.evc-main-image{background:#fff;display:block;overflow:hidden;}
.evc-main-image img{width:100%;height:auto;display:block;object-fit:cover;}
.evc-specs{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:0;border:1px solid #ece7e7;border-top:none;background:#fff;margin:0 0 14px;}
.evc-specs .evc-spec{justify-content:center;padding:10px;border-right:1px solid #ece7e7;font-size:14px;font-weight:600;min-height:42px;}
.evc-specs .evc-spec:last-child{border-right:none;}
.evc-card--wide .evc-actions{display:grid;grid-template-columns:1fr;gap:12px;}
.evc-card--wide .evc-btn{min-height:52px;text-transform:uppercase;font-weight:800;border-radius:4px;}
.evc-card--wide .evc-btn--primary{background:#18b7df !important;border-color:#18b7df !important;color:#fff !important;}
.evc-card--wide .evc-btn--secondary{background:#fff !important;border:2px solid #18b7df !important;color:#18b7df !important;}
.single-product .evc-card--single-standard{max-width:760px;margin:0 auto;background:#fff;}
.single-product .evc-main-grid--single-standard{grid-template-columns:minmax(0,1.55fr) minmax(300px,.9fr) !important;gap:22px !important;padding:18px !important;}
.single-product .evc-single-side-panel{border:1px solid #ece7e7;background:#fff;padding:14px;}
.single-product .evc-single-side-title{font-size:18px;line-height:1.15;font-weight:800;text-align:center;color:#15233b;margin:14px 0 0;}
.single-product .evc-inline-enquiry--sidebar{position:sticky;top:18px;align-self:start;border:1px solid #e5e7eb;background:#fff;}
.single-product .evc-inline-enquiry__tabs{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.single-product .evc-inline-enquiry__panel{padding:0 16px 16px;}
.single-product .evc-inline-enquiry__title{font-size:18px;font-weight:800;color:#15233b;}
.single-product .evc-inline-enquiry__intro{font-size:12px;color:#6b7280;}
.single-product .evc-modal__vehicle{margin:0 0 12px;border:1px solid #d6d6db;padding:11px 10px;background:#fff;font-size:13px;}
.single-product .evc-enquiry-form--inline .evc-field input,
.single-product .evc-enquiry-form--inline .evc-field textarea{border:1px solid #d6d6db;padding:11px 10px;font-size:14px;}
.single-product .evc-detail-grid{border:1px solid #ece7e7;border-bottom:none;}
.single-product .evc-detail-row{display:grid;grid-template-columns:1fr 1fr;}
.single-product .evc-detail-row span{padding:10px;border-bottom:1px solid #ece7e7;}
.single-product .evc-detail-label{background:#fafafa;font-weight:700;color:#374151;}
.single-product .evc-features-list{columns:2;column-gap:28px;}
@media (max-width: 980px){
  .evc-main-grid,.single-product .evc-main-grid--single-standard{grid-template-columns:1fr !important;}
  .evc-specs{grid-template-columns:repeat(2,minmax(0,1fr));}
}

/* v0.6.7.4 readability patch */
.single-product .evc-single-product-hook,
.single-product .evc-card--single-standard{
  max-width:1100px !important;
  width:100%;
}

.single-product .evc-card--single-standard{
  margin:0 auto 32px !important;
  border:1px solid #e5e7eb !important;
  border-radius:4px !important;
  box-shadow:none !important;
}

.single-product .evc-card--single-standard .evc-card-head{
  padding:16px 18px 12px !important;
}

.single-product .evc-card--single-standard .evc-title{
  font-size:20px !important;
  line-height:1.2 !important;
  max-width:none !important;
}

.single-product .evc-card--single-standard .evc-price{
  font-size:22px !important;
  text-align:right !important;
}

.single-product .evc-card--single-standard .evc-price del{
  font-size:16px !important;
  display:inline !important;
  margin-right:8px !important;
}

.single-product .evc-main-grid--single-standard{
  grid-template-columns:minmax(0,1.5fr) minmax(330px,.88fr) !important;
  gap:22px !important;
  padding:12px 18px 20px !important;
  align-items:start !important;
}

.single-product .evc-card--single-standard .evc-main-image::before{
  padding-top:58% !important;
}

.single-product .evc-card--single-standard .evc-main-image,
.single-product .evc-card--single-standard .evc-main-image img{
  border-radius:0 !important;
}

.single-product .evc-card--single-standard .evc-description,
.single-product .evc-card--single-standard .evc-single-description,
.single-product .evc-card--single-standard .evc-single-description p{
  font-size:13px !important;
  line-height:1.6 !important;
  color:#374151 !important;
}

.single-product .evc-card--single-standard .evc-quick-specs-grid{
  margin:0 0 14px !important;
  gap:8px 14px !important;
}

.single-product .evc-card--single-standard .evc-quick-specs-grid .evc-spec{
  font-size:12px !important;
  gap:6px !important;
}

.single-product .evc-card--single-standard .evc-actions--single{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:10px !important;
  margin:0 0 14px !important;
}

.single-product .evc-card--single-standard .evc-actions--single .evc-btn{
  min-height:42px !important;
  font-size:12px !important;
  padding:10px 12px !important;
}

.single-product .evc-card--single-standard .evc-single-side-title{
  margin:10px 0 14px !important;
  font-size:18px !important;
  line-height:1.15 !important;
  text-align:center !important;
}

.single-product .evc-inline-enquiry--sidebar{
  position:sticky !important;
  top:18px !important;
  margin-top:0 !important;
  border:1px solid #e5e7eb !important;
  background:#fff !important;
}

.single-product .evc-inline-enquiry--sidebar .evc-inline-enquiry__panel{
  padding:16px !important;
}

.single-product .evc-inline-enquiry--sidebar .evc-inline-enquiry__title{
  font-size:18px !important;
}

.single-product .evc-inline-enquiry--sidebar .evc-modal__grid{
  gap:10px !important;
}

.single-product .evc-inline-enquiry--sidebar .evc-modal__field input,
.single-product .evc-inline-enquiry--sidebar .evc-modal__field textarea{
  min-height:40px !important;
  padding:10px 12px !important;
  font-size:13px !important;
}

.single-product .evc-inline-enquiry--sidebar .evc-modal__field textarea{
  min-height:92px !important;
}

.single-product .evc-inline-enquiry--sidebar .evc-checkline{
  font-size:11px !important;
}

.single-product .evc-card--single-standard .evc-subtitle{
  font-size:18px !important;
  margin:0 0 10px !important;
}

.single-product .evc-card--single-standard .evc-detail-grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:0 24px !important;
  border-top:1px solid rgba(15,23,42,.08) !important;
}

.single-product .evc-card--single-standard .evc-detail-row{
  display:flex !important;
  justify-content:space-between !important;
  gap:10px !important;
  padding:9px 0 !important;
  border-bottom:1px solid rgba(15,23,42,.08) !important;
  font-size:12px !important;
}

.single-product .evc-card--single-standard .evc-detail-label{
  background:none !important;
  padding:0 !important;
  font-weight:700 !important;
  color:#1f2937 !important;
}

.single-product .evc-card--single-standard .evc-detail-value{
  padding:0 !important;
  text-align:right !important;
  color:#374151 !important;
}

.single-product .evc-card--single-standard .evc-features-list{
  columns:2 !important;
  column-gap:40px !important;
}

.single-product .evc-card--single-standard .evc-features-list li{
  font-size:12px !important;
  line-height:1.5 !important;
  margin:0 0 8px !important;
}

@media (max-width: 1024px){
  .single-product .evc-main-grid--single-standard{
    grid-template-columns:1fr !important;
  }

  .single-product .evc-inline-enquiry--sidebar{
    position:static !important;
  }
}

@media (max-width: 767px){
  .single-product .evc-card--single-standard .evc-detail-grid,
  .single-product .evc-card--single-standard .evc-actions--single{
    grid-template-columns:1fr !important;
  }

  .single-product .evc-card--single-standard .evc-features-list{
    columns:1 !important;
  }
}

.evc-single-product-hook{
  width:min(100%, 1040px);
  margin:0 auto 28px;
}

.single-product div.product .evc-single-product-hook .evc-card--single-standard{
  max-width:1040px;
  margin-inline:auto;
}

.evc-card--single-standard .evc-description,
.evc-card--single-standard .evc-detail-value,
.evc-card--single-standard .evc-spec span,
.evc-card--single-standard .evc-contact-line,
.evc-card--compact .evc-spec span,
.evc-card--compact .evc-compact-title,
.evc-title{
  overflow-wrap:anywhere;
  word-break:break-word;
}

.evc-card--single-standard .evc-detail-row{
  align-items:flex-start;
}

.evc-card--single-standard .evc-detail-value{
  max-width:58%;
  text-align:right;
}

.evc-btn,
.evc-btn:visited{
  white-space:normal;
  line-height:1.2;
  text-align:center;
}

.evc-inline-enquiry--sidebar .evc-enquiry-submit,
.evc-actions--single .evc-btn,
.evc-actions--compact .evc-btn{
  font-size:var(--evc-btn-size);
}

/* v0.6.7.4 readability and featured-image resolution patch */
.single-product .evc-single-product-hook,
.single-product .evc-card--single-standard{
  width:min(1140px, calc(100vw - 48px)) !important;
  max-width:1140px !important;
  margin:0 auto 32px !important;
}
.single-product .evc-card--single-standard{
  border:1px solid #e8e2e2 !important;
  border-radius:4px !important;
  box-shadow:none !important;
  overflow:hidden !important;
}
.single-product .evc-card--single-standard .evc-card-head{
  padding:16px 18px 14px !important;
  border-bottom:1px solid #ece7e7 !important;
}
.single-product .evc-card--single-standard .evc-title{
  font-size:20px !important;
  line-height:1.2 !important;
  font-weight:800 !important;
  color:#15233b !important;
  max-width:none !important;
}
.single-product .evc-card--single-standard .evc-price{
  font-size:34px !important;
  line-height:1 !important;
  color:#15233b !important;
}
.single-product .evc-card--single-standard .evc-price del{
  display:inline-block !important;
  font-size:18px !important;
  margin-right:8px !important;
}
.single-product .evc-main-grid--single-standard{
  grid-template-columns:minmax(0,1.52fr) minmax(330px,.88fr) !important;
  gap:22px !important;
  align-items:start !important;
  padding:18px !important;
}
.single-product .evc-main-image::before{
  padding-top:57% !important;
}
.single-product .evc-main-image,
.single-product .evc-gallery,
.single-product .evc-single-details-area,
.single-product .evc-single-description,
.single-product .evc-description--single{
  max-width:none !important;
}
.single-product .evc-single-details-area,
.single-product .evc-single-description,
.single-product .evc-description--single{
  font-size:13px !important;
  line-height:1.6 !important;
  color:#263244 !important;
}
.single-product .evc-subtitle{
  font-size:18px !important;
  line-height:1.2 !important;
  margin:0 0 10px !important;
}
.single-product .evc-detail-grid{
  grid-template-columns:repeat(2, minmax(0,1fr)) !important;
  gap:0 18px !important;
}
.single-product .evc-detail-row,
.single-product .evc-detail-label,
.single-product .evc-detail-value{
  font-size:12px !important;
  line-height:1.5 !important;
}
.single-product .evc-features-list{
  columns:2 !important;
  column-gap:30px !important;
}
.single-product .evc-features-list li{
  font-size:12px !important;
  line-height:1.55 !important;
  margin:0 0 8px !important;
}
.single-product .evc-single-summary-card{
  padding:14px !important;
  border:1px solid #e5e7eb !important;
  border-radius:2px !important;
  background:#fff !important;
  margin-bottom:18px !important;
}
.single-product .evc-quick-specs-grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:8px 14px !important;
  margin:0 0 14px !important;
}
.single-product .evc-quick-specs-grid .evc-spec{
  font-size:12px !important;
  line-height:1.45 !important;
}
.single-product .evc-actions--single{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:10px !important;
  margin:0 0 14px !important;
}
.single-product .evc-actions--single .evc-btn{
  min-height:48px !important;
  width:100% !important;
  font-size:13px !important;
}
.single-product .evc-single-side-title{
  font-size:18px !important;
  line-height:1.2 !important;
  margin:10px 0 0 !important;
}
.single-product .evc-inline-enquiry--sidebar{
  position:sticky !important;
  top:18px !important;
  align-self:start !important;
  margin-top:0 !important;
  border:1px solid #e5e7eb !important;
  background:#fff !important;
}
.single-product .evc-inline-enquiry--sidebar .evc-inline-enquiry__panel{
  padding:16px !important;
}
.single-product .evc-inline-enquiry--sidebar .evc-inline-enquiry__title{
  font-size:18px !important;
  font-weight:800 !important;
}
.single-product .evc-inline-enquiry--sidebar .evc-inline-enquiry__intro,
.single-product .evc-inline-enquiry--sidebar .evc-modal__field label,
.single-product .evc-inline-enquiry--sidebar .evc-checkline{
  font-size:11px !important;
  line-height:1.45 !important;
}
.single-product .evc-inline-enquiry--sidebar input,
.single-product .evc-inline-enquiry--sidebar textarea,
.single-product .evc-inline-enquiry--sidebar .evc-modal__vehicle{
  font-size:12px !important;
}
.evc-card--compact{
  max-width:none !important;
}
.evc-card--compact .evc-compact-inner{
  padding:14px 20px 20px !important;
}
.evc-card--compact .evc-compact-title{
  font-size:clamp(22px,2vw,28px) !important;
  line-height:1.12 !important;
}
.evc-card--compact .evc-compact-price{
  font-size:48px !important;
}
@media (max-width: 1180px){
  .single-product .evc-single-product-hook,
  .single-product .evc-card--single-standard{
    width:min(100%, calc(100vw - 32px)) !important;
    max-width:none !important;
  }
  .single-product .evc-main-grid--single-standard{
    grid-template-columns:1fr !important;
  }
  .single-product .evc-content-col--single-sidebar{
    padding:0 !important;
  }
  .single-product .evc-inline-enquiry--sidebar{
    position:static !important;
    top:auto !important;
  }
}
@media (max-width: 640px){
  .single-product .evc-card--single-standard .evc-title{font-size:18px !important;}
  .single-product .evc-card--single-standard .evc-price{font-size:26px !important;}
  .single-product .evc-detail-grid,
  .single-product .evc-actions--single,
  .single-product .evc-quick-specs-grid{grid-template-columns:1fr !important;}
  .single-product .evc-features-list{columns:1 !important;}
}


/* v0.6.7.6 exact layout + manual feature editor support */

.single-product .evc-card--single-standard{max-width:980px !important;border:1px solid #e4e4e4;box-shadow:0 10px 30px rgba(0,0,0,.05);overflow:visible;}
.single-product .evc-card--single-standard .evc-card-head{padding:16px 18px;border-bottom:1px solid #e8e8e8;}
.single-product .evc-card--single-standard .evc-title{font-size:24px !important;line-height:1.15;font-weight:800;}
.single-product .evc-card--single-standard .evc-price{font-size:28px !important;line-height:1;font-weight:900;white-space:nowrap;}
.single-product .evc-main-grid--single-standard{grid-template-columns:minmax(0,1.5fr) 320px !important;gap:18px !important;padding:16px 18px 10px !important;align-items:start;}
.single-product .evc-main-image--single img,.single-product .evc-main-image img{width:100%;aspect-ratio:4/3;object-fit:cover;border:1px solid #e8e8e8;background:#dfe6eb;}
.single-product .evc-quick-specs-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px 12px;font-size:12px;font-weight:700;margin-bottom:10px;}
.single-product .evc-actions--single-top{display:grid;grid-template-columns:1fr 1fr;gap:8px;}
.single-product .evc-actions--single-top .evc-btn{min-height:40px;font-size:11px;padding:10px 8px;border-radius:4px;}
.single-product .evc-single-side-title{font-size:18px;line-height:1.2;font-weight:800;text-align:center;padding:14px 12px 6px;margin:0;}
.single-product .evc-single-summary-card{border:1px solid #e8e8e8;background:#fbfbfb;}
.single-product .evc-inline-enquiry--sidebar{position:relative;top:auto;border:1px solid #e8e8e8;background:#fff;padding-top:0;}
.single-product .evc-inline-enquiry__panel{padding:0 12px 14px;}
.single-product .evc-inline-enquiry__title{font-size:20px;font-weight:800;margin:6px 0 4px;}
.single-product .evc-inline-enquiry__intro{font-size:11px;color:#737373;margin:0 0 12px;}
.single-product .evc-modal__vehicle{margin:0 0 12px;border:1px solid #d6d6db;padding:10px;background:#fff;font-size:13px;}
.single-product .evc-enquiry-form--inline .evc-field input,.single-product .evc-enquiry-form--inline .evc-field textarea{border:1px solid #d8d8d8;padding:10px;font-size:13px;background:#fff;}
.single-product .evc-enquiry-form--inline .evc-field textarea{min-height:76px;}
.single-product .evc-single-details-area{padding-top:10px;}
.single-product .evc-subtitle{font-size:18px;font-weight:800;margin:0 0 10px;}
.single-product .evc-details-block,.single-product .evc-features-block{margin:0 0 20px;}
.single-product .evc-single-details-table{width:100%;border-collapse:collapse;font-size:13px;border-top:1px solid #ededed;border-bottom:1px solid #ededed;}
.single-product .evc-single-details-table td{padding:12px 8px;border-bottom:1px dashed #e5e5e5;vertical-align:top;}
.single-product .evc-single-details-table .evc-cell-label{font-weight:800;width:18%;}
.single-product .evc-single-details-table .evc-cell-value{width:32%;}
.single-product .evc-list-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px 28px;}
.single-product .evc-list-grid__col{margin:0;padding-left:18px;}
.single-product .evc-list-grid__col li{margin:8px 0;}
.single-product .evc-features-list{columns:initial !important;column-gap:0 !important;}
.evc-card--compact{background:#f7f2f2;border:1px solid #ddd6d6;border-radius:8px;padding:0;box-shadow:0 2px 8px rgba(0,0,0,.04);overflow:hidden;}
.evc-card--compact .evc-compact-inner{padding:18px;}
.evc-compact-bar{height:6px;background:#19b6dd;margin:0;}
.evc-compact-title{margin:14px 0;font-size:28px;line-height:1.08;font-weight:800;min-height:88px;}
.evc-compact-image::before{padding-top:75%;}
.evc-compact-meta-row{margin:0 0 16px;}
.evc-card--compact .evc-compact-price{font-size:28px;line-height:1.1;margin:4px 0 16px;}
.evc-card--compact .evc-compact-price del{font-size:22px;}
.evc-card--compact .evc-btn{min-height:54px;border-radius:6px;font-size:15px;}
.evc-card--compact .evc-actions--compact{gap:10px;}
@media (max-width: 1024px){
  .single-product .evc-main-grid--single-standard{grid-template-columns:1fr !important;}
}
@media (max-width: 700px){
  .single-product .evc-list-grid{grid-template-columns:1fr;}
  .single-product .evc-single-details-table,.single-product .evc-single-details-table tbody,.single-product .evc-single-details-table tr,.single-product .evc-single-details-table td{display:block;width:100%;}
}


/* v0.6.8.2.6 sidebar enquiry cleanup */
.single-product .evc-inline-enquiry--sidebar .evc-inline-enquiry__tabs,
.single-product .evc-inline-enquiry--sidebar .evc-inline-enquiry__tab{
  display:none !important;
}
.single-product .evc-inline-enquiry--sidebar .evc-enquiry-submit,
.single-product .evc-inline-enquiry--sidebar .evc-enquiry-submit:visited,
.single-product .evc-inline-enquiry--sidebar .evc-enquiry-submit:hover,
.single-product .evc-inline-enquiry--sidebar .evc-enquiry-submit:focus,
.single-product .evc-inline-enquiry--sidebar .evc-enquiry-submit:active,
.single-product .evc-inline-enquiry--sidebar .evc-enquiry-submit *{
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  fill:#fff !important;
  opacity:1 !important;
}
.single-product .evc-inline-enquiry--sidebar .evc-enquiry-submit{
  font-weight:800 !important;
  text-shadow:none !important;
}


/* v0.6.8.2.7 sidebar enquiry full-width hardening */
.single-product .evc-content-col--single-sidebar{
  align-items:stretch !important;
}
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  margin:0 !important;
  justify-self:stretch !important;
  align-self:start !important;
  box-sizing:border-box !important;
}
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar .evc-inline-enquiry__panel,
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar .evc-enquiry-form,
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar .evc-modal__grid,
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar .evc-modal__actions,
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar .evc-enquiry-submit{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  box-sizing:border-box !important;
}
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar .evc-inline-enquiry__panel{
  border:1px solid #e5e7eb !important;
}
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar .evc-enquiry-submit,
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar .evc-enquiry-submit:visited,
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar .evc-enquiry-submit:hover,
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar .evc-enquiry-submit:focus,
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar .evc-enquiry-submit:active,
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar .evc-enquiry-submit span,
.single-product .evc-content-col--single-sidebar > .evc-inline-enquiry--sidebar .evc-enquiry-submit strong{
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
  text-shadow:none !important;
  opacity:1 !important;
}


/* v0.6.8.3.3 enquiry submit readability hardening */
.single-product .evc-inline-enquiry--sidebar button.evc-enquiry-submit,
.single-product .evc-inline-enquiry--sidebar button.evc-enquiry-submit:visited,
.single-product .evc-inline-enquiry--sidebar button.evc-enquiry-submit:hover,
.single-product .evc-inline-enquiry--sidebar button.evc-enquiry-submit:focus,
.single-product .evc-inline-enquiry--sidebar button.evc-enquiry-submit:active{
  -webkit-appearance:none !important;
  appearance:none !important;
  background:#18b7df !important;
  border:1px solid #18b7df !important;
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
  fill:#ffffff !important;
  opacity:1 !important;
  visibility:visible !important;
  font-size:15px !important;
  line-height:1.2 !important;
  font-weight:800 !important;
  letter-spacing:0.01em !important;
  text-transform:uppercase !important;
  text-indent:0 !important;
  min-height:46px !important;
  padding:12px 16px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  white-space:normal !important;
  overflow:visible !important;
  box-sizing:border-box !important;
  text-shadow:none !important;
}
.single-product .evc-inline-enquiry--sidebar button.evc-enquiry-submit .evc-btn__label,
.single-product .evc-inline-enquiry--sidebar button.evc-enquiry-submit .evc-btn__label:visited,
.single-product .evc-inline-enquiry--sidebar button.evc-enquiry-submit .evc-btn__label:hover,
.single-product .evc-inline-enquiry--sidebar button.evc-enquiry-submit .evc-btn__label:focus,
.single-product .evc-inline-enquiry--sidebar button.evc-enquiry-submit .evc-btn__label:active{
  display:inline-block !important;
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
  fill:#ffffff !important;
  opacity:1 !important;
  visibility:visible !important;
  font-size:15px !important;
  line-height:1.2 !important;
  font-weight:800 !important;
  letter-spacing:0.01em !important;
  text-transform:uppercase !important;
  text-indent:0 !important;
}

/* v0.6.8.3.4 compact transmission visibility hardening */
.evc-card--compact .evc-compact-meta-row{grid-template-columns:repeat(2,minmax(0,1fr));}
.evc-card--compact .evc-compact-meta-row .evc-spec{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.evc-card--compact .evc-compact-meta-row .evc-spec span:last-child{overflow:hidden;text-overflow:ellipsis;}
