/*
Theme Name: AnyCarMats Live Match
Theme URI: https://anycarmats.com/
Author: AnyCarMats
Description: Independent code-native recreation of the current AnyCarMats storefront, with no page-builder dependency.
Version: 0.5.1
Requires at least: 6.6
Requires PHP: 8.2
Text Domain: anycarmats-light
*/

:root {
  --acm-orange: #f6a900;
  --acm-orange-strong: #925700;
  --acm-black: #090909;
  --acm-white: #fff;
  --acm-muted: #6e7480;
  --acm-border: #d9dee7;
  --acm-radius: 10px;
  --acm-width: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--acm-black);
  background: var(--acm-white);
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--acm-white);
  overflow-x: hidden;
  overflow-x: clip;
  font-size: 16px;
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

#comment {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 3px;
}

.acm-container {
  width: min(calc(100% - 40px), var(--acm-width));
  margin-inline: auto;
}

.acm-promo {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 6px 16px;
  color: #fff;
  background: #090909;
  font-size: 13px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.acm-promo__mobile {
  display: none;
}

.acm-header {
  position: relative;
  z-index: 20;
  background: var(--acm-orange);
}

.acm-nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.acm-nav-list,
.acm-nav-tools {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.acm-nav-list a,
.acm-nav-tools a,
.acm-nav-tools button {
  border: 0;
  background: none;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
}

.acm-nav-tools {
  justify-content: flex-end;
}

.acm-logo {
  color: #111;
  font-size: 21px;
  font-weight: 1000;
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
}

.acm-mobile-menu {
  display: none;
}

.acm-main {
  min-height: 60vh;
}

.acm-hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  background: #f5f5f5;
}

.acm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: 56px;
}

.acm-hero h1 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2.5px;
}

.acm-hero p {
  max-width: 580px;
  margin: 0 0 28px;
  color: #3d424a;
  font-size: 18px;
}

.acm-button,
.button,
button.button,
input.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid var(--acm-orange);
  border-radius: 4px;
  background: var(--acm-orange);
  color: #090909;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.acm-section {
  padding: 72px 0;
}

.acm-section-title {
  margin: 0 0 30px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.acm-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.acm-product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--acm-radius);
  background: #eee;
}

.acm-product-card h2 {
  margin: 12px 0 5px;
  font-size: 19px;
  line-height: 1.15;
}

.acm-product-card .price {
  color: var(--acm-orange-strong);
  font-size: 19px;
  font-weight: 900;
}

.acm-pdp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  gap: 40px;
  padding-block: 46px 80px;
}

.acm-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--acm-radius);
  background: #eee;
}

.acm-gallery-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.acm-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.acm-gallery-thumbs button {
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: none;
  cursor: pointer;
}

.acm-gallery-thumbs button[aria-current="true"] {
  border-color: #111;
}

.acm-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.acm-summary h1 {
  margin: 4px 0 8px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -1.7px;
}

.acm-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.acm-stars {
  color: var(--acm-orange-strong);
  letter-spacing: 1px;
}

.acm-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 8px 0 12px;
}

.acm-price del {
  color: #989da7;
  font-size: 19px;
  font-weight: 800;
}

.acm-price ins,
.acm-price > .amount {
  color: var(--acm-orange-strong);
  font-size: 32px;
  font-weight: 1000;
  text-decoration: none;
}

.acm-color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 8px 0 12px;
}

.acm-color-list img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 2px solid #111;
  border-radius: 8px;
}
.acm-color-list button{
  border:0;
  background:transparent;
  padding:0;
  cursor:pointer;
}
.acm-color-list button[aria-pressed="true"] img{
  outline:3px solid var(--acm-orange);
  outline-offset:2px;
}

.acm-vehicle-title {
  margin: 12px 0 8px;
  font-size: 25px;
  line-height: 1.05;
}

.acm-vehicle-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--acm-border);
  border-radius: var(--acm-radius);
}

.acm-field--wide {
  grid-column: 1 / -1;
}

.acm-vehicle-form select,
.acm-vehicle-form textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select {
  width: 100%;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid #cfd6e1;
  border-radius: 4px;
  background: #fff;
}

.acm-vehicle-form textarea {
  min-height: 82px;
  resize: vertical;
}

.acm-buy-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
  margin-top: 14px;
}

.acm-qty {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 52px;
  border: 1px solid #888;
  border-radius: 7px;
  overflow: hidden;
}

.acm-qty button,
.acm-qty input {
  width: 100%;
  border: 0;
  border-right: 1px solid #aaa;
  background: #fff;
  text-align: center;
  font-weight: 900;
}

.acm-qty > :last-child {
  border-right: 0;
}

.acm-buy-now {
  width: 100%;
  margin-top: 12px;
}

.acm-secure {
  margin-top: 12px;
  padding: 8px;
  border: 1px solid #efcf9a;
  border-radius: 8px;
  text-align: center;
}

.acm-secure__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
}

.acm-secure__payments img {
  width: auto;
  height: 28px;
  max-width: 58px;
  object-fit: contain;
}

.acm-delivery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
}

.acm-delivery div {
  padding: 9px;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 12px;
}

.acm-delivery div:last-child {
  border-right: 0;
}

.acm-footer {
  padding: 60px 0 30px;
  color: #fff;
  background: #080808;
}

.acm-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
}

.acm-footer h2,
.acm-footer h3 {
  margin-top: 0;
}

.acm-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.acm-footer li + li {
  margin-top: 10px;
}

.woocommerce:not(body) {
  width: min(calc(100% - 40px), var(--acm-width));
  margin: 48px auto 80px;
}

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--acm-border);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 14px;
  border-bottom: 1px solid var(--acm-border);
  text-align: left;
}

.woocommerce-cart-form__cart-item .product-thumbnail img {
  width: 90px;
  border-radius: 8px;
}

.woocommerce .quantity input.qty {
  width: 72px;
  min-height: 44px;
  border: 1px solid var(--acm-border);
  text-align: center;
}

.woocommerce .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-shipping-fields {
  padding: 20px;
  border: 1px solid var(--acm-border);
  border-radius: var(--acm-radius);
}

.woocommerce .cart-collaterals {
  display: grid;
  justify-content: end;
  margin-top: 24px;
}

.woocommerce .cart_totals {
  width: min(100%, 480px);
}

.woocommerce form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 30px;
}

.woocommerce form .form-row {
  margin: 0 0 14px;
}

.woocommerce form .form-row label {
  display: block;
  margin-bottom: 5px;
  font-weight: 800;
}

.woocommerce-checkout #payment {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--acm-border);
  border-radius: var(--acm-radius);
  background: #f8f8f8;
}

@media (max-width: 800px) {
  .acm-container {
    width: min(calc(100% - 24px), var(--acm-width));
  }

  .acm-promo {
    min-height: 34px;
    font-size: 12px;
  }

  .acm-promo__desktop {
    display: none;
  }

  .acm-promo__mobile {
    display: inline;
  }

  .acm-nav {
    min-height: 64px;
    grid-template-columns: 38px 1fr auto;
    gap: 10px;
  }

  .acm-mobile-menu {
    position: relative;
    display: block;
    width: 28px;
    height: 22px;
    padding: 0;
    border: 0;
    border-block: 2px solid #111;
    background:
      linear-gradient(#111, #111) center / 100% 2px no-repeat;
  }

  .acm-mobile-menu[aria-expanded="true"] {
    border-block-color: transparent;
    background: none;
  }

  .acm-mobile-menu[aria-expanded="true"]::before,
  .acm-mobile-menu[aria-expanded="true"]::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 28px;
    height: 2px;
    background: #111;
  }

  .acm-mobile-menu[aria-expanded="true"]::before { transform: rotate(45deg); }
  .acm-mobile-menu[aria-expanded="true"]::after { transform: rotate(-45deg); }

  .acm-nav-list {
    position: absolute;
    inset: 64px 0 auto;
    display: none;
    padding: 20px 24px;
    background: #111;
    z-index: 120;
  }

  .acm-nav-list[data-open="true"] {
    display: grid;
    gap: 0;
  }

  .acm-nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .acm-nav-list li:last-child {
    border-bottom: 0;
  }

  .acm-nav-list a {
    display: flex;
    min-height: 48px;
    align-items: center;
    width: 100%;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
  }

  .acm-menu-open {
    overflow: hidden;
  }

  .acm-nav-tools {
    gap: 16px;
  }

  .acm-nav-tools .acm-desktop-only {
    display: none;
  }

  .acm-logo {
    justify-self: center;
    font-size: 18px;
  }

  .acm-hero {
    min-height: auto;
    padding: 56px 0;
  }

  .acm-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .acm-hero h1 {
    font-size: 44px;
  }

  .acm-section {
    padding: 48px 0;
  }

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

  .acm-pdp {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 18px 56px;
  }

  .acm-gallery-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 8px;
  }

  .acm-gallery-thumbs button {
    flex: 0 0 58px;
  }

  .acm-summary h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .acm-price ins,
  .acm-price > .amount {
    font-size: 30px;
  }

  .acm-vehicle-title {
    font-size: 24px;
  }

  .acm-vehicle-form {
    padding: 12px;
  }

  .acm-buy-row {
    grid-template-columns: 120px 1fr;
  }

  .acm-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .woocommerce:not(body) {
    width: calc(100% - 24px);
    margin-top: 28px;
  }

  .woocommerce table.shop_table {
    display: block;
    overflow-x: auto;
  }

  .woocommerce form.checkout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .acm-promo {
    font-size: 11px;
  }

  .acm-container {
    width: calc(100% - 20px);
  }

  .acm-nav {
    grid-template-columns: 28px minmax(72px, 1fr) auto;
    gap: 6px;
  }

  .acm-nav-tools {
    gap: 8px;
  }

  .acm-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .acm-vehicle-form {
    grid-template-columns: 1fr;
  }

  .acm-field--wide {
    grid-column: auto;
  }

  .acm-buy-row {
    grid-template-columns: 110px 1fr;
  }

  .acm-footer-grid {
    grid-template-columns: 1fr;
  }
}
/* First-party customer chat: loaded without third-party network requests. */
.acm-chat{position:fixed;right:22px;bottom:22px;z-index:9999;font:inherit}
.acm-chat__launcher{display:flex;align-items:center;gap:8px;border:2px solid #ffb000;border-radius:999px;background:#111;color:#ffb000;padding:11px 16px;font-weight:800;box-shadow:0 8px 28px #0005;cursor:pointer}
.acm-chat__launcher span:first-child{font-size:25px;line-height:1}
.acm-chat__panel{position:absolute;right:0;bottom:60px;width:min(380px,calc(100vw - 28px));overflow:hidden;border:1px solid #ddd;border-radius:18px;background:#fff;box-shadow:0 18px 60px #0004;color:#171717}
.acm-chat__panel header{display:flex;justify-content:space-between;gap:15px;padding:18px;background:#111;color:#fff}
.acm-chat__panel header p{margin:5px 0 0;font-size:13px;color:#ddd}
.acm-chat__close{align-self:flex-start;border:0;background:transparent;color:#fff;font-size:28px;line-height:1;cursor:pointer}
.acm-chat__messages{display:flex;flex-direction:column;gap:8px;max-height:245px;overflow:auto;padding:14px}
.acm-chat__bubble{max-width:82%;margin:0;padding:10px 12px;border-radius:13px;white-space:pre-wrap;overflow-wrap:anywhere}
.acm-chat__bubble--visitor{align-self:flex-end;background:#f7a800;color:#111;border-bottom-right-radius:3px}
.acm-chat__bubble--agent{align-self:flex-start;background:#eef0f2;border-bottom-left-radius:3px}
.acm-chat__form{display:grid;gap:9px;padding:14px;border-top:1px solid #eee}
.acm-chat__identity{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.acm-chat__form input,.acm-chat__form textarea{box-sizing:border-box;width:100%;border:1px solid #bbb;border-radius:8px;padding:10px;font:inherit}
.acm-chat__form textarea{min-height:76px;resize:vertical}
.acm-chat__form small{font-size:11px;line-height:1.35;color:#666}
.acm-chat__form button{border:0;border-radius:8px;background:#111;color:#fff;padding:11px;font-weight:800;cursor:pointer}
.acm-chat__form button:disabled{opacity:.55}
.acm-chat__status{min-height:18px;font-size:12px;color:#555}
.acm-chat__trap{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important}
@media(max-width:600px){
  .acm-chat{right:12px;bottom:12px}
  .acm-chat__launcher span:last-child{display:none}
  .acm-chat__launcher{width:52px;height:52px;justify-content:center;padding:0}
  .acm-chat__panel{position:fixed;right:8px;bottom:72px;left:8px;width:auto;max-height:calc(100vh - 90px)}
  .acm-chat__identity{grid-template-columns:1fr}
}

.acm-place-autocomplete{margin:0 0 15px}
.acm-place-autocomplete gmp-place-autocomplete{display:block;width:100%;min-height:48px;--gmpx-color-surface:#fff;--gmpx-color-on-surface:#111}

/* Product detail depth */
.acm-breadcrumbs{display:flex;gap:7px;overflow:hidden;padding-top:22px;color:#5d6470;font-size:11px;white-space:nowrap}
.acm-breadcrumbs a{color:inherit;text-decoration:none}
.acm-breadcrumbs span:last-child{overflow:hidden;text-overflow:ellipsis}
.acm-short-description{margin:14px 0 20px;color:#555;line-height:1.65}
.acm-vehicle-form legend{grid-column:1/-1;margin-bottom:2px;font-size:14px;font-weight:900}
.acm-vehicle-field>span{display:block;margin-bottom:6px;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.6px}
.acm-vehicle-field select:disabled{cursor:not-allowed;background:#eee;color:#888}
.acm-pdp-promises{display:grid;gap:0;margin-top:20px;border:1px solid var(--acm-border);border-radius:10px}
.acm-pdp-promises>div{padding:13px 15px;border-bottom:1px solid var(--acm-border)}
.acm-pdp-promises>div:last-child{border:0}
.acm-pdp-promises b,.acm-pdp-promises span{display:block}
.acm-pdp-promises b{font-size:12px;text-transform:uppercase}
.acm-pdp-promises span{margin-top:3px;color:#666;font-size:11px}
.acm-pdp-story{padding:80px 0;background:#111;color:#fff}
.acm-pdp-story .acm-eyebrow{color:var(--acm-orange)}
.acm-pdp-story h2{max-width:740px;margin:0 0 40px;font-size:clamp(36px,5vw,68px);line-height:1}
.acm-pdp-story__grid{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(320px,.7fr);gap:80px}
.acm-pdp-story__grid>div{color:#d2d2d2;font-size:17px;line-height:1.8}
.acm-pdp-story__grid aside{display:grid;align-content:start}
.acm-pdp-story__grid aside>div{display:grid;grid-template-columns:42px 1fr;gap:14px;padding:18px 0;border-top:1px solid #ffffff29}
.acm-pdp-story__grid aside strong{color:var(--acm-orange);font-size:12px}
.acm-pdp-story__grid aside p{margin:0;color:#ccc;font-size:13px;line-height:1.5}
.acm-pdp-story__grid aside b{color:#fff}
.acm-pdp-faq{display:block;max-width:1168px;padding-top:80px;padding-bottom:80px}
.acm-pdp-faq h2{
  margin:0 0 10px;
  color:#727d86;
  font-size:25px;
  line-height:1.05;
  text-align:left;
  text-transform:uppercase;
}
.acm-pdp-faq details{
  margin:0 0 7px;
  border:1px solid #ddd4c8;
  border-radius:11px;
  background:#fff;
}
.acm-pdp-faq summary{display:flex;align-items:center;justify-content:space-between;min-height:50px;padding:0 16px;cursor:pointer;font-weight:850}
.acm-pdp-faq summary::after{content:"+";font-size:23px;font-weight:400}
.acm-pdp-faq details[open] summary::after{content:"−"}
.acm-pdp-faq details p{margin:0;padding:0 46px 18px 16px;color:#666;line-height:1.65}
.acm-reviews{border-top:1px solid var(--acm-border)}
.acm-reviews #reviews{padding-top:18px}
.acm-reviews .woocommerce-Reviews-title{margin:0 0 24px;font-size:clamp(30px,3vw,44px);line-height:1.05}
.acm-reviews .commentlist{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:0;padding:0;list-style:none}
.acm-reviews .commentlist>li{margin:0}
.acm-reviews .comment_container{height:100%;box-sizing:border-box;padding:22px;border:1px solid var(--acm-border);border-radius:12px;background:#fff}
.acm-reviews .avatar{display:none}
.acm-reviews .comment-text{margin:0!important}
.acm-reviews .star-rating{margin-bottom:8px;color:var(--acm-orange-strong)}
.acm-reviews .meta{margin:0 0 12px;color:#555;font-size:12px}
.acm-reviews .description{color:#222;font-size:14px;line-height:1.65}
.acm-reviews .description p:last-child{margin-bottom:0}
.acm-reviews .woocommerce-pagination{margin:26px 0 0}
.acm-reviews .woocommerce-pagination ul{display:flex;flex-wrap:wrap;gap:7px;margin:0;padding:0;border:0;list-style:none}
.acm-reviews .woocommerce-pagination a,.acm-reviews .woocommerce-pagination span{display:grid;place-items:center;min-width:40px;min-height:40px;padding:0 8px;border:1px solid var(--acm-border);border-radius:6px;background:#fff;color:#111;font-weight:800;text-decoration:none}
.acm-reviews .woocommerce-pagination .current{border-color:#111;background:#111;color:#fff}
.acm-reviews #review_form_wrapper{margin-top:38px;padding:26px;border:1px solid var(--acm-border);border-radius:12px;background:#fafafa}
.acm-reviews .comment-reply-title{display:block;margin-bottom:20px;font-size:26px;font-weight:900}
.acm-reviews .comment-form{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.acm-reviews .comment-form-rating,.acm-reviews .comment-form-comment,.acm-reviews .form-submit,.acm-reviews .comment-notes{grid-column:1/-1}
.acm-reviews .comment-form label{display:block;margin:0 0 7px;font-size:12px;font-weight:850}
.acm-reviews .comment-form select,.acm-reviews .comment-form input:not([type=submit]),.acm-reviews .comment-form textarea{width:100%;box-sizing:border-box;border:1px solid #cfcfcf;border-radius:5px;background:#fff;padding:11px 13px;font:inherit}
.acm-reviews .comment-form textarea{min-height:140px;resize:vertical}
.acm-reviews .comment-form .submit{min-height:46px;border:0;border-radius:5px;background:#111;color:#fff;padding:0 22px;font-size:12px;font-weight:900;text-transform:uppercase;cursor:pointer}
.acm-reviews .comment-form .submit:hover{background:var(--acm-orange);color:#111}

/* Compact verified-buyer module copied from the live storefront structure. */
.acm-reference-reviews{width:min(calc(100% - 48px),1220px);box-sizing:border-box;margin:34px auto 22px;padding:22px;border-radius:14px;background:#fff;scroll-margin-top:0}
.acm-reference-reviews__head{max-width:760px;margin:0 auto 14px;text-align:center}
.acm-reference-reviews__head small{display:block;margin-bottom:8px;color:#b77b29;font-size:13px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}
.acm-reference-reviews__head h2{margin:0;font-size:clamp(30px,4vw,42px);line-height:1.02;letter-spacing:-.04em}
.acm-reference-reviews__summary{display:grid;grid-template-columns:190px minmax(0,1fr);align-items:center;gap:24px;max-width:1180px;margin:0 auto 12px;padding:14px;border:1px solid #e3d5c1;border-radius:14px;background:#f4ecdf}
.acm-reference-reviews__score{display:flex;flex-direction:column;align-items:flex-start;min-width:0}
.acm-reference-reviews__score strong{font-size:42px;font-weight:1000;line-height:1}
.acm-reference-reviews__score span,.acm-reference-review__stars{color:#f5a000;letter-spacing:1px;white-space:nowrap}
.acm-reference-reviews__score b{font-size:15px;line-height:1.15}
.acm-reference-reviews__bars{display:grid;min-width:0;gap:6px}
.acm-reference-reviews__bars>div{display:grid;grid-template-columns:58px minmax(0,1fr);align-items:center;gap:12px;min-width:0}
.acm-reference-reviews__bars em{color:#5f6265;font-size:14px;font-weight:900;line-height:1.2;white-space:nowrap}
.acm-reference-reviews__bars i{display:block;width:100%;height:8px;overflow:hidden;border-radius:99px;background:#e8ddce}
.acm-reference-reviews__bars i b{display:block;height:100%;background:#f5a000}
.acm-reference-reviews__list{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));align-items:start;gap:12px;max-width:1180px;max-height:316px;margin:0 auto;overflow:hidden}
.acm-reference-reviews__load{grid-column:1/-1;justify-self:start;min-width:286px;min-height:44px;padding:0 18px;border:1px solid #f5a000;border-radius:8px;background:#f5a000;color:#111;font-size:14px;font-weight:950;cursor:pointer}
.acm-reference-review{width:100%;max-height:142px;box-sizing:border-box;overflow:hidden;padding:12px;border:1px solid #e6d8c7;border-radius:14px;background:#fff}
.acm-reference-review header{display:flex;align-items:flex-start;justify-content:space-between;gap:8px}
.acm-reference-review header strong{font-size:14px;line-height:1.1}
.acm-reference-review header small{display:block;margin-top:3px;color:#666}
.acm-reference-review__verified{flex:0 0 auto;padding:4px 7px;border-radius:99px;background:#f4ecdf;color:#5b4b34;font-size:11px;font-weight:850}
.acm-reference-review p{display:-webkit-box;margin:7px 0 0;overflow:hidden;color:#45494e;font-size:12px;line-height:1.35;-webkit-box-orient:vertical;-webkit-line-clamp:3}
.acm-reference-reviews__controls{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:12px;margin:18px auto 0}
.acm-reference-reviews__controls[hidden]{display:none}
.acm-reference-reviews__controls button{min-height:44px;padding:0 18px;border:1px solid #2e3338;border-radius:8px;background:#fff;color:#111;font-size:14px;font-weight:900;cursor:pointer}
.acm-reference-reviews__controls button.is-primary{min-width:190px;border-color:#f5a000;background:#f5a000}
.acm-reference-reviews__controls button[disabled]{cursor:not-allowed;opacity:.45}
.acm-reference-reviews__controls span{min-width:116px;color:#686d72;font-size:13px;font-weight:800;text-align:center}
.acm-reference-reviews__error{grid-column:1/-1;margin:0;padding:18px;border:1px solid #e3d5c1;border-radius:8px;background:#fff7eb}
.acm-related-products>.acm-section-title{text-align:center}
@media(max-width:800px){
  .acm-pdp-story__grid{grid-template-columns:1fr;gap:30px}
  .acm-pdp-story{padding:55px 0}
  .acm-pdp-faq{padding-top:55px;padding-bottom:25px}
  .acm-pdp-faq h2{font-size:25px}
  .acm-reviews .commentlist{grid-template-columns:1fr}
  .acm-reviews .comment_container{padding:18px}
  .acm-reviews #review_form_wrapper{padding:18px}
  .acm-reviews .comment-form{grid-template-columns:1fr}
  .acm-reviews .comment-form>*{grid-column:1}
  .acm-reference-reviews{width:calc(100% - 30px);margin-top:24px;padding:0 0 12px}
  .acm-reference-reviews__head{margin-bottom:12px}
  .acm-reference-reviews__head h2{font-size:30px}
  .acm-reference-reviews__summary{grid-template-columns:1fr;gap:16px;padding:18px}
  .acm-reference-reviews__score b{font-size:14px}
  .acm-reference-reviews__bars>div{grid-template-columns:54px minmax(0,1fr);gap:9px}
  .acm-reference-reviews__bars em{font-size:13px}
  .acm-reference-reviews__list{grid-template-columns:1fr;max-height:none;overflow:visible}
  .acm-reference-reviews__load{justify-self:start;min-width:222px}
  .acm-reference-review{max-height:none}
  .acm-reference-reviews__controls{justify-content:space-between}
  .acm-reference-reviews__controls span{order:4;width:100%;min-width:0}
  .acm-reference-reviews__controls .is-primary{margin:0 auto}
  .acm-reviews-reached .acm-site-b .acm-buy-row,.acm-site-b.acm-reviews-reached .acm-buy-row{display:none}
}

.acm-cookie-notice{position:fixed;right:18px;bottom:18px;z-index:9998;width:min(520px,calc(100vw - 36px));box-sizing:border-box;padding:18px;border:1px solid #333;border-radius:12px;background:#111;color:#fff;box-shadow:0 14px 50px #0005}
.acm-cookie-notice p{margin:0 0 14px;color:#ddd;font-size:13px;line-height:1.55}
.acm-cookie-notice a{color:#fff}
.acm-cookie-notice>div{display:flex;justify-content:flex-end;gap:9px}
.acm-cookie-notice button{min-height:42px;border:1px solid #777;border-radius:7px;background:#222;color:#fff;padding:8px 12px;font-weight:800;cursor:pointer}
.acm-cookie-notice button:last-child{border-color:var(--acm-orange);background:var(--acm-orange);color:#111}
.acm-cookie-notice~.acm-chat{bottom:180px}
@media(max-width:560px){
  .acm-cookie-notice{right:9px;bottom:9px;width:calc(100vw - 18px)}
  .acm-cookie-notice>div{align-items:stretch;flex-direction:column}
  .acm-cookie-notice~.acm-chat{bottom:250px}
}

@media(max-width:600px){
  .acm-checkout-review{padding:14px}
  .acm-checkout-review .shop_table{font-size:12px}
  .acm-checkout-review .product-name{width:auto;overflow-wrap:anywhere}
  .acm-checkout-review .product-total{width:68px;white-space:nowrap}
  .acm-checkout-review .wc-item-meta{display:grid;grid-template-columns:max-content minmax(0,1fr);gap:3px 7px;margin:8px 0 0;padding:0}
  .acm-checkout-review .wc-item-meta li{display:contents}
  .acm-checkout-review .wc-item-meta p,.acm-checkout-review .wc-item-meta strong{margin:0}
}

/* Home and collections */
.acm-eyebrow{margin:0 0 12px;color:var(--acm-orange-strong);font-size:12px;font-weight:900;letter-spacing:1.8px;text-transform:uppercase}
.acm-hero-media{position:relative;min-height:480px;border-radius:24px;background:linear-gradient(145deg,#fff7e3,#ece8df);overflow:hidden}
.acm-hero-media img{width:100%;height:100%;object-fit:cover}
.acm-hero-placeholder{display:grid;place-items:center;height:100%;min-height:480px;color:#111;font-size:clamp(45px,7vw,86px);font-weight:950;line-height:.78;letter-spacing:-5px}
.acm-hero-trust{display:flex;flex-wrap:wrap;gap:10px 22px;margin:28px 0 0;padding:0;list-style:none;font-size:13px;font-weight:800}
.acm-hero-trust li::before{content:"✓";margin-right:7px;color:#137c42}
.acm-category-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.acm-category-card{overflow:hidden;border:1px solid var(--acm-border);border-radius:16px;background:#fff;transition:transform .2s ease,box-shadow .2s ease}
.acm-category-card:hover{transform:translateY(-3px);box-shadow:0 14px 35px #18202d1c}
.acm-category-card a{display:block;color:inherit;text-decoration:none}
.acm-category-card__media{display:grid;place-items:center;aspect-ratio:4/3;background:#f2f1ed;overflow:hidden}
.acm-category-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.acm-category-card:hover img{transform:scale(1.025)}
.acm-category-card__media span{font-size:46px;font-weight:950;letter-spacing:-3px;color:#5d6470}
.acm-category-card>a>div:last-child{padding:20px}
.acm-category-card span{font-size:11px;font-weight:900;letter-spacing:1.2px;text-transform:uppercase;color:#5d6470}
.acm-category-card h3{margin:6px 0 16px;font-size:24px}
.acm-category-card b{font-size:13px;text-transform:uppercase}
.acm-brand-grid,.acm-model-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px 18px}
.acm-brand-grid a,.acm-model-grid a{display:flex;align-items:center;min-height:44px;border-bottom:1px solid var(--acm-border);color:#23262c;font-size:13px;font-weight:800;text-decoration:none}
.acm-brand-grid a:hover,.acm-model-grid a:hover{color:var(--acm-orange-strong)}
.acm-brand-directory .acm-brand-grid{max-height:330px;overflow:auto;overscroll-behavior:contain}
.acm-button--secondary{margin-top:24px;border:1px solid #111;background:#fff;color:#111}
.acm-vehicle-line-nav{display:flex;flex-wrap:wrap;gap:9px;padding-top:28px}
.acm-vehicle-line-nav a{border:1px solid var(--acm-border);border-radius:999px;color:#111;padding:10px 15px;font-size:12px;font-weight:900;text-decoration:none}
.acm-vehicle-line-nav a[aria-current="page"]{border-color:#111;background:#111;color:#fff}
.acm-seo-copy{padding-top:clamp(28px,5vw,58px)}
.acm-seo-copy h2{margin:0 0 10px;font-size:clamp(25px,4vw,42px);line-height:1.05}
.acm-seo-copy p{max-width:74ch;margin:0;color:var(--acm-muted);line-height:1.7}
.acm-search-topics{padding-top:clamp(24px,4vw,46px)}
.acm-search-topics h2{margin:0 0 10px;font-size:clamp(22px,3vw,34px)}
.acm-search-topics>p:not(.acm-eyebrow){max-width:74ch;color:var(--acm-muted);line-height:1.7}
.acm-keyword-chips{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 0;padding:0;list-style:none}
.acm-keyword-chips li{padding:8px 12px;border:1px solid var(--acm-border);border-radius:999px;background:var(--acm-surface);font-size:13px;font-weight:800}
.acm-solutions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:22px}
.acm-solutions details{padding:16px 18px;border:1px solid var(--acm-border);border-radius:14px;background:var(--acm-surface)}
.acm-solutions summary{cursor:pointer;font-weight:900}
.acm-solutions details p{margin:10px 0 0}
.acm-vehicle-products{margin-top:30px}
.acm-proof-strip{background:#111;color:#fff}
.acm-proof-strip>.acm-container{display:grid;grid-template-columns:repeat(3,1fr);gap:0}
.acm-proof-strip div div{padding:26px 30px;border-left:1px solid #ffffff24}
.acm-proof-strip div div:last-child{border-right:1px solid #ffffff24}
.acm-proof-strip strong,.acm-proof-strip span{display:block}
.acm-proof-strip strong{margin-bottom:5px;font-size:14px;text-transform:uppercase}
.acm-proof-strip span{color:#bbb;font-size:12px;line-height:1.45}
.acm-collection-hero{padding:72px 0;background:#111;color:#fff}
.acm-collection-hero .acm-eyebrow{color:var(--acm-orange)}
.acm-collection-hero h1{margin:0 0 16px;font-size:clamp(38px,6vw,70px);line-height:.95;text-transform:uppercase}
.acm-collection-hero div>div{max-width:720px;color:#d2d2d2}
.acm-collection-toolbar{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:30px;padding-bottom:16px;border-bottom:1px solid var(--acm-border);font-weight:800}
.acm-collection-toolbar select{min-height:44px;border:1px solid var(--acm-border);border-radius:7px;background:#fff;padding:0 34px 0 12px}
.acm-cart-link{position:relative;display:inline-grid;place-items:center;width:42px;height:42px}
.acm-cart-link svg{width:23px;fill:none;stroke:currentColor;stroke-width:1.8}
.acm-cart-count{position:absolute;right:-1px;top:0;display:grid;place-items:center;min-width:18px;height:18px;border-radius:99px;background:#111;color:#fff;font-size:10px;font-weight:900}

/* Cart and checkout */
.acm-commerce-page{padding-top:42px;padding-bottom:80px}
.acm-back-link{display:inline-block;margin-bottom:30px;color:#444;font-weight:800;text-decoration:none}
.acm-commerce-heading{max-width:760px;margin-bottom:38px}
.acm-commerce-heading h1{margin:0 0 12px;font-size:clamp(38px,5vw,62px);line-height:1}
.acm-commerce-heading p:last-child{color:#666}
.acm-cart-layout,.acm-checkout-layout{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(320px,.8fr);gap:34px;align-items:start}
.acm-cart-items{display:grid;gap:16px}
.acm-cart-item{display:grid;grid-template-columns:145px minmax(0,1fr) auto;gap:20px;padding:20px;border:1px solid var(--acm-border);border-radius:14px;background:#fff}
.acm-cart-item__image img{width:145px;height:145px;border-radius:9px;object-fit:cover}
.acm-cart-item h2{margin:5px 0 12px;font-size:20px}
.acm-fit-saved{display:inline-block;margin:0;padding:4px 7px;border-radius:4px;background:#e9f8ee;color:#126b36;font-size:10px;font-weight:900;letter-spacing:.8px;text-transform:uppercase}
.acm-cart-item dl{display:grid;grid-template-columns:max-content 1fr;gap:3px 9px;margin:0 0 14px;font-size:12px}
.acm-cart-item dt,.acm-cart-item dd{margin:0}
.acm-cart-item dt{font-weight:800}
.acm-cart-item__actions{display:flex;align-items:center;gap:18px;margin-top:14px}
.acm-cart-item__actions .quantity input{width:76px;min-height:40px;border:1px solid var(--acm-border);border-radius:7px;padding:6px;text-align:center}
.acm-cart-qty{display:grid;grid-template-columns:38px 60px 38px;align-items:stretch;border:1px solid var(--acm-border);border-radius:7px;overflow:hidden}
.acm-cart-qty>button{border:0;background:#f3f3f1;font-size:19px;cursor:pointer}
.acm-cart-qty .quantity{display:flex}
.acm-cart-qty .quantity input{width:60px!important;min-height:40px;border-width:0 1px!important;border-radius:0!important;-moz-appearance:textfield}
.acm-cart-qty .quantity input::-webkit-inner-spin-button,.acm-cart-qty .quantity input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
.acm-cart-item__actions .remove{color:#666;font-size:12px}
.acm-cart-item__price{white-space:nowrap;font-size:17px}
.acm-cart-update{display:flex;justify-content:flex-end}
.acm-cart-update button,.acm-cart-summary .checkout-button{border:0;border-radius:7px;background:#111;color:#fff;padding:14px 19px;font-weight:900;text-decoration:none;text-transform:uppercase}
.acm-cart-summary,.acm-checkout-review{position:sticky;top:20px;padding:26px;border:1px solid var(--acm-border);border-radius:14px;background:#f8f8f6}
.acm-cart-summary h2,.acm-checkout-review h2{margin:0 0 20px}
.acm-cart-summary .cart_totals h2{display:none}
.acm-cart-summary table,.acm-checkout-review table{width:100%;border-collapse:collapse}
.acm-cart-summary th,.acm-cart-summary td,.acm-checkout-review th,.acm-checkout-review td{padding:12px 0;border-bottom:1px solid #ddd;text-align:left}
.acm-cart-summary td,.acm-checkout-review td{text-align:right}
.acm-cart-summary .wc-proceed-to-checkout{margin-top:20px}
.acm-cart-summary .checkout-button{display:flex;justify-content:center;width:100%;box-sizing:border-box}
.acm-cart-summary>ul{margin:20px 0 0;padding:18px 0 0;border-top:1px solid #ddd;list-style:none;font-size:12px;line-height:1.9}
.acm-cart-summary>ul li::before{content:"✓";margin-right:7px;color:#137c42;font-weight:900}
.acm-checkout-fields{padding:26px;border:1px solid var(--acm-border);border-radius:14px}
.acm-checkout-fields h3{margin:5px 0 20px;font-size:23px}
.acm-checkout-fields .form-row{margin:0 0 15px}
.acm-checkout-fields .form-row label{display:block;margin-bottom:6px;font-size:12px;font-weight:850}
.acm-checkout-fields input,.acm-checkout-fields select,.acm-checkout-fields textarea{box-sizing:border-box;width:100%;min-height:48px;border:1px solid #bbc0c8;border-radius:7px;background:#fff;padding:10px;font:inherit}
.acm-checkout-fields .form-row-first,.acm-checkout-fields .form-row-last{display:inline-block;width:calc(50% - 7px);vertical-align:top}
.acm-checkout-fields .form-row-first{margin-right:10px}
.acm-checkout-review #payment{margin-top:22px}
.acm-checkout-review .wc_payment_methods{margin:0 0 16px;padding:0;list-style:none}
.acm-checkout-review .payment_box{margin:8px 0;padding:10px;background:#fff;border-radius:6px;font-size:12px}
.acm-checkout-review #place_order{width:100%;min-height:52px;border:0;border-radius:7px;background:var(--acm-orange);color:#111;font-weight:950;text-transform:uppercase;cursor:pointer}

@media(max-width:900px){
  .acm-category-grid,.acm-proof-strip>.acm-container{grid-template-columns:1fr}
  .acm-proof-strip div div,.acm-proof-strip div div:last-child{border:0;border-bottom:1px solid #ffffff24}
  .acm-cart-layout,.acm-checkout-layout{grid-template-columns:1fr}
  .acm-cart-summary,.acm-checkout-review{position:static}
}
@media(max-width:600px){
  .acm-brand-grid,.acm-model-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .acm-solutions{grid-template-columns:1fr}
  .acm-hero-media,.acm-hero-placeholder{min-height:320px}
  .acm-collection-toolbar{align-items:flex-start;flex-direction:column}
  .acm-cart-item{grid-template-columns:82px minmax(0,1fr);gap:12px;padding:15px}
  .acm-cart-item__image{grid-column:1;grid-row:1/3}
  .acm-cart-item__image img{width:82px;height:82px}
  .acm-cart-item__body{display:contents}
  .acm-cart-item .acm-fit-saved{grid-column:2;margin:0;align-self:end}
  .acm-cart-item h2{grid-column:2;margin:2px 0 0;font-size:18px}
  .acm-cart-item dl{grid-column:1/-1;grid-template-columns:minmax(96px,auto) minmax(0,1fr);width:100%;margin-top:5px;overflow-wrap:anywhere}
  .acm-cart-item__actions{grid-column:1/-1;flex-wrap:wrap;margin-top:3px}
  .acm-cart-item__price{grid-column:1/-1;justify-self:start}
  .acm-checkout-review .wc-item-meta{display:block}
  .acm-checkout-review .wc-item-meta li{display:block;margin:0 0 7px;overflow-wrap:anywhere}
  .acm-checkout-review .wc-item-meta strong,.acm-checkout-review .wc-item-meta p{display:block}
  .acm-checkout-fields{padding:18px}
  .acm-checkout-fields .form-row-first,.acm-checkout-fields .form-row-last{display:block;width:100%;margin-right:0}
}

/* Live Match: code-native recreation of the current AnyCarMats storefront. */
.acm-site-b{--acm-orange:#f5a900;--acm-orange-strong:#9a6200;--acm-black:#0d0f10;--acm-border:#dedede;--acm-width:1320px}
.acm-site-b .acm-promo{min-height:35px;padding:10px 20px 8px;background:#0d0f10;color:#fff;font-size:13px;font-style:italic;font-weight:900;letter-spacing:.6px}
.acm-site-b .acm-header{position:relative;z-index:20;min-height:78px;border:0;background:#f5a900}
.acm-site-b .acm-nav{position:relative;min-height:78px}
.acm-site-b .acm-nav-list{gap:25px}
.acm-site-b .acm-nav-list a,.acm-site-b .acm-nav-tools a,.acm-site-b .acm-nav-tools button{color:#080808;font-size:12px;font-weight:900;letter-spacing:.2px;text-transform:uppercase}
.acm-site-b .acm-logo{position:static;justify-self:center;color:#fff;font-size:22px;line-height:.7;letter-spacing:-1.4px;text-align:center;text-decoration:none;transform:none}
.acm-site-b .acm-nav-tools{gap:16px;margin-left:auto}
.acm-site-b .acm-mobile-only{display:none}
.acm-site-b .acm-nav-utility{max-width:58px;line-height:1.15;text-align:center}
.acm-site-b .acm-search-link,.acm-site-b .acm-account-link{display:grid;width:28px;height:38px;place-items:center}
.acm-site-b .acm-search-link svg,.acm-site-b .acm-account-link svg{width:21px;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.8}

.acm-live-hero{position:relative;min-height:620px;overflow:hidden;background:#181818;color:#fff}
.acm-live-hero__picture,.acm-live-hero__image,.acm-live-hero__shade{position:absolute;inset:0;width:100%;height:100%}
.acm-live-hero__picture{display:block}
.acm-live-hero__image{object-fit:cover;object-position:center 48%}
.acm-live-hero__shade{background:rgba(0,0,0,.46)}
.acm-live-hero__content{position:relative;z-index:2;display:grid;min-height:620px;align-content:center;justify-items:start}
.acm-live-hero .acm-eyebrow{margin:0 0 18px;color:#f5a900;font-size:14px;letter-spacing:1.8px}
.acm-live-hero h1{max-width:640px;margin:0 0 16px;color:#fff;font-size:clamp(48px,5.2vw,75px);font-weight:950;letter-spacing:-3px;line-height:.95;text-transform:uppercase}
.acm-site-b .acm-button{min-height:52px;border-radius:2px;padding:16px 25px;background:#f5a900;color:#090909;font-size:13px;font-weight:950;letter-spacing:.5px;text-transform:uppercase}

.acm-info-page{max-width:1040px;margin:0 auto;color:#20242b;font-size:16px;line-height:1.7}
.acm-info-page--narrow,.acm-policy-copy{max-width:780px}
.acm-info-lead{margin:0 0 36px;color:#555d68;font-size:20px;line-height:1.55}
.acm-info-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.acm-info-grid section{border:1px solid #dfe2e6;padding:28px;background:#fff}
.acm-info-page h2{margin:34px 0 10px;color:#11151d;font-size:26px;line-height:1.12}
.acm-info-grid h2{margin-top:0}
.acm-info-page a{color:#8c5b00;font-weight:800}
.acm-info-faq details{border-bottom:1px solid #dfe2e6;padding:20px 0}
.acm-info-faq summary{cursor:pointer;color:#11151d;font-size:18px;font-weight:900}
.acm-info-faq details p{margin:12px 0 0}
.acm-info-page .woocommerce-form-track-order{max-width:680px;margin:34px 0;padding:28px;border:1px solid #dfe2e6;background:#fafafa}

@media(max-width:720px){
  .acm-info-grid{grid-template-columns:1fr}
  .acm-info-lead{font-size:17px}
  .acm-info-page h2{font-size:23px}
}

/* Customer support — Luxus-inspired compact launcher and conversation panel. */
.acm-site-b .acm-chat{
  right:22px;
  bottom:22px;
  z-index:10000;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",sans-serif;
}
.acm-site-b .acm-chat__launcher{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  width:auto;
  min-width:0;
  height:60px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  color:#172033;
  font-size:15px;
  font-weight:500;
}
.acm-site-b .acm-chat__launcher-label{
  display:flex;
  align-items:center;
  min-height:46px;
  padding:0 16px;
  border:1px solid #e5e7eb;
  border-radius:13px;
  background:#fff;
  box-shadow:0 4px 14px rgba(15,23,42,.12);
  white-space:nowrap;
}
.acm-site-b .acm-chat__launcher-circle{
  position:relative;
  display:grid;
  place-items:center;
  width:58px;
  min-width:58px;
  height:58px;
  border-radius:50%;
  background:#d99036;
  color:#fff;
  box-shadow:0 7px 22px rgba(15,23,42,.22);
}
.acm-site-b .acm-chat__launcher-circle .dashicons{width:28px;height:28px;font-size:28px;line-height:28px}
.acm-site-b .acm-chat__launcher-circle b{
  position:absolute;
  top:-4px;
  right:-2px;
  display:grid;
  place-items:center;
  width:20px;
  height:20px;
  border:2px solid #fff;
  border-radius:50%;
  background:#e11d48;
  color:#fff;
  font-size:11px;
  line-height:1;
}
.acm-site-b .acm-chat__launcher[aria-expanded="true"] .acm-chat__launcher-label,
.acm-site-b .acm-chat__launcher[aria-expanded="true"] .acm-chat__launcher-circle b{display:none}
.acm-site-b .acm-chat__panel{
  right:0;
  bottom:72px;
  display:flex;
  flex-direction:column;
  width:min(372px,calc(100vw - 28px));
  height:min(700px,calc(100vh - 120px));
  max-height:700px;
  overflow:hidden;
  border:1px solid #e6e8ed;
  border-radius:14px;
  background:#fff;
  box-shadow:0 20px 55px rgba(15,23,42,.24);
  color:#172033;
}
.acm-site-b .acm-chat__panel[hidden]{display:none}
.acm-site-b .acm-chat__panel header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:72px;
  padding:14px 16px;
  border-bottom:1px solid #edf0f5;
  background:#fff;
  color:#172033;
}
.acm-site-b .acm-chat__presence{display:flex;align-items:center;gap:10px;min-width:0}
.acm-site-b .acm-chat__avatar{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#d99036;
  color:#fff;
  font-size:12px;
  font-weight:800;
}
.acm-site-b .acm-chat__panel header strong{display:block;font-size:15px;font-weight:700}
.acm-site-b .acm-chat__panel header p{margin:3px 0 0;color:#7a8497;font-size:11px;line-height:1.25}
.acm-site-b .acm-chat__close{display:grid;place-items:center;width:36px;height:36px;color:#8791a4}
.acm-site-b .acm-chat__close .dashicons{width:24px;height:24px;font-size:24px}
.acm-site-b .acm-chat__messages{
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:8px;
  min-height:190px;
  max-height:none;
  overflow:auto;
  padding:18px 20px;
}
.acm-site-b .acm-chat__bubble{
  max-width:86%;
  padding:12px 14px;
  border-radius:12px;
  background:#f1f4f8;
  color:#263248;
  font-size:14px;
  line-height:1.42;
}
.acm-site-b .acm-chat__bubble--agent{border-bottom-left-radius:12px;background:#f1f4f8}
.acm-site-b .acm-chat__bubble--visitor{background:#d99036;color:#fff;border-bottom-right-radius:4px}
.acm-site-b .acm-chat__form{display:grid;gap:8px;padding:10px 16px 14px;border-top:1px solid #e7eaf0}
.acm-site-b .acm-chat__identity{font-size:11px;color:#7a8497}
.acm-site-b .acm-chat__identity summary{cursor:pointer;list-style:none}
.acm-site-b .acm-chat__identity summary::-webkit-details-marker{display:none}
.acm-site-b .acm-chat__identity>div{display:grid;grid-template-columns:1fr 1fr;gap:8px;padding-top:8px}
.acm-site-b .acm-chat__form input{min-height:38px;border-color:#d8dde6;border-radius:7px;padding:8px 10px;font-size:12px}
.acm-site-b .acm-chat__composer{display:grid;grid-template-columns:1fr 42px;align-items:end;gap:6px}
.acm-site-b .acm-chat__form textarea{
  min-height:48px;
  max-height:100px;
  resize:none;
  border:0;
  border-radius:0;
  padding:11px 2px;
  color:#263248;
  font-size:14px;
  outline:0;
}
.acm-site-b .acm-chat__composer button{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  padding:0;
  border-radius:50%;
  background:#d99036;
  color:#fff;
}
.acm-site-b .acm-chat__composer button .dashicons{width:22px;height:22px;font-size:22px}
.acm-site-b .acm-chat__form small{font-size:9px;color:#929bad}
.acm-site-b .acm-chat__status{min-height:0;font-size:11px}
.acm-site-b .acm-cookie-notice~.acm-chat{bottom:180px}

@media(max-width:600px){
  .acm-site-b .acm-chat{right:12px;bottom:12px}
  .acm-site-b .acm-chat__launcher{width:auto;min-width:0;height:54px}
  .acm-site-b .acm-chat__launcher-label{display:none}
  .acm-site-b .acm-chat__launcher-circle{width:54px;min-width:54px;height:54px}
  .acm-site-b .acm-chat__panel{
    position:fixed;
    inset:10px 10px 76px;
    width:auto;
    height:auto;
    max-height:none;
    border-radius:14px;
  }
  .acm-site-b .acm-chat__messages{padding:16px;min-height:180px}
  .acm-site-b .acm-chat__identity>div{grid-template-columns:1fr}
  .acm-site-b .acm-cookie-notice~.acm-chat{bottom:250px}
}

.acm-live-finder{padding:78px 0 68px;background:#fff;text-align:center}
.acm-live-finder .acm-eyebrow,.acm-live-products .acm-eyebrow,.acm-live-story .acm-eyebrow{color:#956000}
.acm-live-finder h2{margin:7px 0 10px;font-size:clamp(38px,5vw,62px);line-height:1;text-transform:uppercase}
.acm-live-finder>.acm-container>p:not(.acm-eyebrow,.acm-live-brand-help){max-width:750px;margin:0 auto 26px;color:#5a5a5a;font-size:17px}
.acm-live-brand-search{display:flex;width:min(720px,100%);min-height:58px;align-items:center;gap:12px;margin:30px auto 20px;border:1px solid #1d1d1d;padding:0 18px;background:#fff;text-align:left}
.acm-live-brand-search svg{width:22px;flex:0 0 22px;fill:none;stroke:#111;stroke-width:1.8}
.acm-live-brand-search input{width:100%;min-height:54px;border:0;outline:0;font:inherit}
.acm-live-brand-list{display:grid;max-width:1040px;grid-template-columns:repeat(6,minmax(0,1fr));gap:8px 14px;margin:0 auto;text-align:left}
.acm-live-brand-list a{display:flex;min-height:36px;align-items:center;border-bottom:1px solid #e6e6e6;color:#171717;font-size:13px;font-weight:750;text-decoration:none}
.acm-live-brand-list a:hover{color:#9b6200}
.acm-live-brand-help{margin:25px 0 0;font-size:13px}
.acm-live-brand-help a{color:#111;font-weight:900}

.acm-live-lines{padding:0 0 82px;background:#fff}
.acm-live-line-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.acm-live-line-card{position:relative;min-height:520px;overflow:hidden;background:#111;color:#fff;text-decoration:none}
.acm-live-line-card img,.acm-live-line-card__shade{position:absolute;inset:0;width:100%;height:100%}
.acm-live-line-card img{object-fit:cover;transition:transform .45s ease}
.acm-live-line-card:hover img{transform:scale(1.025)}
.acm-live-line-card__shade{background:rgba(0,0,0,.34)}
.acm-live-line-card__content{position:absolute;z-index:2;right:28px;bottom:30px;left:28px;display:grid}
.acm-live-line-card small{margin-bottom:7px;font-size:12px;font-weight:850;letter-spacing:.7px;text-transform:uppercase}
.acm-live-line-card strong{font-size:clamp(30px,3vw,44px);line-height:1;text-transform:uppercase}
.acm-live-line-card b{margin-top:20px;font-size:12px;letter-spacing:.6px;text-transform:uppercase}

.acm-live-products{padding:86px 0;background:#f4f3ef}
.acm-live-section-title{display:flex;align-items:end;justify-content:space-between;gap:20px;margin:4px 0 32px}
.acm-live-section-title h2{margin:0;font-size:clamp(38px,5vw,64px);line-height:.96;text-transform:uppercase}
.acm-live-section-title a{color:#111;font-size:13px;font-weight:900;text-decoration:none;text-transform:uppercase}
.acm-site-b .acm-product-card{border:0;border-radius:0;background:#fff}
.acm-site-b .acm-product-card h2{min-height:50px;margin:18px 18px 6px;font-size:15px;line-height:1.35}
.acm-site-b .acm-product-card .price{margin:0 18px 20px;color:#a26800}

.acm-live-story{padding:104px 0;background:#111;color:#fff}
.acm-live-story__grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(320px,.7fr);gap:100px;align-items:end}
.acm-live-story h2{max-width:760px;margin:8px 0 0;font-size:clamp(46px,6vw,78px);letter-spacing:-2px;line-height:.94;text-transform:uppercase}
.acm-live-story__grid>div:last-child{color:#ccc;font-size:17px;line-height:1.75}
.acm-site-b .acm-live-story .acm-button--secondary{margin-top:18px;border-color:#f5a900;color:#111}
.acm-site-b .acm-footer{padding-top:70px;background:#080808}

@media(max-width:1080px){
  .acm-site-b .acm-nav-list{gap:14px}
  .acm-site-b .acm-nav-list a{font-size:10px}
  .acm-live-brand-list{grid-template-columns:repeat(4,minmax(0,1fr))}
  .acm-live-line-card{min-height:420px}
}

@media(max-width:720px){
  .acm-site-b .acm-promo{min-height:36px;font-size:11px}
  .acm-site-b .acm-header,.acm-site-b .acm-nav{min-height:64px}
  .acm-site-b .acm-nav{padding-inline:18px}
  .acm-site-b .acm-mobile-only{display:list-item}
  .acm-site-b .acm-logo{font-size:20px;line-height:.72}
  .acm-site-b .acm-nav-tools select,.acm-site-b .acm-language-switcher{display:none}
  .acm-live-hero,.acm-live-hero__content{min-height:600px}
  .acm-live-hero__image{object-position:50% center}
  .acm-live-hero__content{align-content:end;padding-bottom:54px}
  .acm-live-hero h1{max-width:360px;margin-bottom:25px;font-size:43px;letter-spacing:-1.7px}
  .acm-live-hero .acm-eyebrow{font-size:11px}
  .acm-live-finder{padding:58px 0 48px}
  .acm-live-finder h2{font-size:42px}
  .acm-live-finder>.acm-container>p:not(.acm-eyebrow,.acm-live-brand-help){font-size:15px}
  .acm-live-brand-list{max-height:340px;grid-template-columns:repeat(2,minmax(0,1fr));overflow:auto}
  .acm-live-line-grid{grid-template-columns:1fr}
  .acm-live-line-card{min-height:460px}
  .acm-live-lines{padding-bottom:54px}
  .acm-live-products{padding:58px 0}
  .acm-live-section-title{display:block}
  .acm-live-section-title h2{margin-bottom:18px;font-size:43px}
  .acm-live-story{padding:70px 0}
  .acm-live-story__grid{grid-template-columns:1fr;gap:38px}
  .acm-live-story h2{font-size:46px}
}

/* Current storefront: one canonical build, matched to anycarmats.com. */
.acm-site-b .acm-nav-tools select{
  min-width:76px;
  min-height:44px;
  border:0;
  border-radius:8px;
  background:#090909;
  color:#fff;
  padding:0 28px 0 12px;
  font-size:12px;
  font-weight:900;
}
.acm-site-b .acm-nav-utility{max-width:none;white-space:nowrap}
.acm-site-b .acm-logo{line-height:.84}
.acm-live-hero__content{padding-block:64px}
.acm-live-hero__copy{
  max-width:640px;
  margin:-14px 0 28px;
  color:#fff;
  font-size:16px;
  line-height:1.55;
}

/* Homepage parity pass: lock the measured reference geometry. */
@media(min-width:721px){
  .acm-live-hero{height:620px;min-height:620px}
  .acm-live-hero__content{height:620px;min-height:620px;box-sizing:border-box}
}

.acm-live-finder{
  padding:72px 0 64px;
  background:#0d0f10;
  color:#fff;
}
.acm-live-finder .acm-eyebrow{color:#f52243}
.acm-live-finder h2{color:#fff}
.acm-live-finder>.acm-container>p:not(.acm-eyebrow){
  color:#b7b7b7;
  font-size:13px;
  font-weight:850;
  letter-spacing:1.4px;
  text-transform:uppercase;
}
.acm-live-brand-search{
  width:min(560px,100%);
  min-height:54px;
  margin:25px auto 18px;
  border:0;
  border-radius:5px;
}
.acm-live-brand-list{
  max-width:1160px;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:8px;
}
.acm-live-brand-list a{
  position:relative;
  justify-content:center;
  min-height:48px;
  border:0;
  border-radius:4px;
  background:#fff;
  color:#111;
  padding:7px 9px;
  text-align:center;
}
.acm-live-brand-list a:hover{background:#f5a900;color:#111}
.acm-live-brand-list a em{
  position:absolute;
  right:4px;
  top:4px;
  border-radius:2px;
  background:#f52243;
  color:#fff;
  padding:3px 4px;
  font-size:7px;
  font-style:normal;
  font-weight:950;
  letter-spacing:.3px;
  text-transform:uppercase;
}

.acm-live-lines{padding:36px 0 74px;background:#0d0f10}
.acm-live-line-card{min-height:390px}
.acm-live-line-card__shade{background:linear-gradient(180deg,transparent 35%,rgba(0,0,0,.78))}
.acm-live-line-card__content{right:24px;bottom:24px;left:24px}
.acm-live-line-card__content>span{
  margin-top:10px;
  color:#fff;
  font-size:13px;
  line-height:1.45;
}

.acm-live-proof{background:#0d0f10;color:#111}
.acm-live-proof>.acm-container{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:#fff;
}
.acm-live-proof div div{padding:17px 22px;text-align:center}
.acm-live-proof strong,.acm-live-proof span{display:block}
.acm-live-proof strong{font-size:13px;text-transform:uppercase}
.acm-live-proof span{margin-top:5px;color:#555;font-size:11px}

.acm-live-showcase{padding:30px 0 82px;overflow:hidden;background:#0d0f10;color:#fff}
.acm-live-showcase-tabs{
  display:flex;
  justify-content:center;
  gap:30px;
  margin:0 0 38px;
  padding:0;
  overflow-x:auto;
}
.acm-live-showcase-tabs a{
  flex:0 0 auto;
  border-bottom:3px solid transparent;
  color:#fff;
  padding:0 0 7px;
  font-size:15px;
  font-weight:950;
  text-decoration:none;
  text-transform:uppercase;
}
.acm-live-showcase-tabs a:first-child{border-color:#f5a900;color:#f5a900}
.acm-live-showcase-line{padding:0 0 48px;text-align:center}
.acm-live-showcase-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin:0 0 22px;
  text-align:left;
}
.acm-live-showcase-heading p{margin:0 0 6px;color:#f5a900;font-size:10px;font-weight:900;letter-spacing:1.4px;text-transform:uppercase}
.acm-live-showcase-heading h2{margin:0;font-size:clamp(27px,3vw,42px);line-height:1;text-transform:uppercase}
.acm-live-slider-controls{display:flex;gap:8px}
.acm-live-slider-controls button{
  width:44px;
  height:44px;
  border:1px solid #565656;
  border-radius:50%;
  background:transparent;
  color:#fff;
  font-size:20px;
  cursor:pointer;
}
.acm-live-slider-controls button:hover,.acm-live-slider-controls button:focus-visible{border-color:#f5a900;color:#f5a900}
.acm-live-showcase-products{
  display:flex;
  gap:16px;
  overflow-x:auto;
  contain:layout paint;
  overscroll-behavior-inline:contain;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  cursor:grab;
  touch-action:pan-x pan-y;
}
.acm-live-showcase-products::-webkit-scrollbar{display:none}
.acm-live-showcase-products.is-dragging{cursor:grabbing;scroll-snap-type:none;user-select:none}
.acm-live-mini-product{
  display:flex;
  flex:0 0 calc((100% - 48px)/4);
  flex-direction:column;
  align-items:stretch;
  min-width:0;
  overflow:hidden;
  background:#17191a;
  color:#fff;
  text-decoration:none;
  text-align:center;
  scroll-snap-align:start;
}
.acm-live-mini-product img{
  width:100%;
  height:auto;
  aspect-ratio:1/1;
  object-fit:cover;
  object-position:center top;
  background:#171717;
}
.acm-live-mini-product__copy{
  display:flex;
  min-width:0;
  flex:1;
  flex-direction:column;
  align-items:center;
  padding:16px 14px 18px;
}
.acm-live-mini-product small{
  font-size:8px;
  font-weight:900;
  letter-spacing:.5px;
}
.acm-live-mini-product strong{
  display:flex;
  min-height:2.4em;
  align-items:center;
  justify-content:center;
  margin-top:7px;
  font-size:14px;
  line-height:1.2;
  text-transform:uppercase;
}
.acm-live-mini-product em{
  margin-top:9px;
  color:#f5a900;
  font-size:14px;
  font-style:normal;
  font-weight:900;
}
.acm-live-mini-product b{
  margin-top:auto;
  border-bottom:1px solid #f5a900;
  padding-top:15px;
  padding-bottom:4px;
  color:#fff;
  font-size:9px;
  text-transform:uppercase;
}
.acm-live-showcase-cta{
  display:inline-flex;
  margin-top:23px;
  border:1px solid #f5a900;
  color:#f5a900;
  padding:11px 17px;
  font-size:12px;
  font-weight:900;
  text-decoration:none;
  text-transform:uppercase;
}

.acm-footer--live{padding:72px 0 22px;background:#050505}
.acm-footer-live-grid{
  display:grid;
  grid-template-columns:minmax(360px,1.4fr) minmax(190px,.7fr) minmax(220px,.8fr);
  gap:90px;
}
.acm-footer--live h2,.acm-footer--live h3{margin:0 0 20px;color:#fff}
.acm-footer--live h2{font-size:22px}
.acm-footer--live h3{font-size:18px}
.acm-footer--live p,.acm-footer--live li,.acm-footer--live a{
  color:#fff;
  font-size:13px;
  line-height:1.55;
}
.acm-footer--live p{margin:0 0 15px}
.acm-footer--live ul{display:grid;gap:13px;margin:0;padding:0;list-style:none}
.acm-footer--live a{text-decoration:none}
.acm-footer-subscribe{margin-top:25px}
.acm-footer-subscribe form{
  display:grid;
  max-width:430px;
  grid-template-columns:1fr 48px;
  margin-top:15px;
  border:1px solid #666;
}
.acm-footer-subscribe input,.acm-footer-subscribe button{
  min-height:48px;
  border:0;
  background:#050505;
  color:#fff;
  padding:0 14px;
}
.acm-footer-subscribe button{border-left:1px solid #666;font-size:20px;cursor:pointer}
.acm-footer-copyright{
  margin-top:55px;
  border-top:1px solid #333;
  padding-top:22px;
  color:#fff;
  font-size:11px;
  text-align:center;
}

.acm-pdp-proof,.acm-pdp-compare,.acm-pdp-feature-stack{padding-top:48px;padding-bottom:24px}
.acm-pdp-proof{max-width:1168px;text-align:center}
.acm-pdp-proof>h2,.acm-pdp-compare>h2,.acm-pdp-feature-heading h2{
  max-width:1000px;
  margin:0 auto 12px;
  font-size:clamp(34px,3.4vw,46px);
  line-height:1.02;
  letter-spacing:-1.8px;
}
.acm-pdp-proof-copy{margin:0 auto 28px;color:#676767;font-size:14px}
.acm-pdp-proof-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.acm-pdp-proof-grid article{overflow:hidden;border:1px solid #ddd4c8;border-radius:16px;background:#fff;text-align:left}
.acm-pdp-proof-grid img{width:100%;aspect-ratio:4/3;object-fit:cover}
.acm-pdp-proof-grid video{
  display:block;
  width:100%;
  aspect-ratio:4/3;
  background:#111;
  object-fit:cover;
}
.acm-pdp-video-slot{position:relative;overflow:hidden;aspect-ratio:4/3;background:#111}
.acm-pdp-video-slot img{display:block;width:100%;height:100%;aspect-ratio:auto;object-fit:contain}
.acm-pdp-video-slot span{
  position:absolute;
  left:16px;
  bottom:16px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:#111;
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.acm-pdp-proof-grid h3{margin:18px 18px 7px;font-size:19px}
.acm-pdp-proof-grid p{margin:0 18px 22px;color:#666;line-height:1.55}
.acm-pdp-proof-swipe{margin:14px 0 0!important;color:#866443!important;font-size:13px!important;font-weight:850}

.acm-pdp-compare{text-align:center}
.acm-pdp-compare-media{
  position:relative;
  max-width:1168px;
  aspect-ratio:1/1;
  margin:0 auto;
  overflow:hidden;
  border-radius:18px;
  box-shadow:0 20px 60px #1b1b1b24;
  background:#111;
  touch-action:pan-y;
}
.acm-pdp-compare-media>img,
.acm-pdp-compare-media__after,
.acm-pdp-compare-media__after img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.acm-pdp-compare-media img{display:block;object-fit:cover}
.acm-pdp-compare-media__after{
  clip-path:inset(0 0 0 var(--acm-compare-position));
}
.acm-pdp-compare-media__label{
  position:absolute;
  top:24px;
  z-index:3;
  color:#fff;
  font-size:16px;
  font-weight:950;
  text-transform:uppercase;
  text-shadow:0 2px 8px #000c;
  pointer-events:none;
}
.acm-pdp-compare-media__label--before{left:24px}
.acm-pdp-compare-media__label--after{right:24px;color:var(--acm-gold)}
.acm-pdp-compare-media__divider{
  position:absolute;
  z-index:2;
  top:0;
  bottom:0;
  left:var(--acm-compare-position);
  width:3px;
  background:#fff;
  transform:translateX(-50%);
  pointer-events:none;
}
.acm-pdp-compare-media__handle{
  position:absolute;
  z-index:3;
  top:50%;
  left:var(--acm-compare-position);
  width:44px;
  height:44px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 6px 20px #0003;
  transform:translate(-50%,-50%);
  pointer-events:none;
}
.acm-pdp-compare-media__range{
  position:absolute;
  z-index:4;
  inset:0;
  width:100%;
  height:100%;
  margin:0;
  opacity:0;
  cursor:ew-resize;
}

.acm-pdp-feature-heading{text-align:center}
.acm-pdp-feature-heading>p:last-child{
  max-width:760px;
  margin:0 auto 28px;
  color:#676767;
  font-size:16px;
  line-height:1.55;
}
.acm-pdp-feature-stack{max-width:1200px}
.acm-pdp-feature-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:0;
  margin:0 auto;
  background:#fff;
}
.acm-pdp-feature-row:nth-of-type(even) figure{order:2}
.acm-pdp-feature-row figure{margin:0;background:#f1f1ef}
.acm-pdp-feature-row img{width:100%;aspect-ratio:1/1;object-fit:cover}
.acm-pdp-feature-row>div{padding:clamp(30px,5vw,78px)}
.acm-pdp-feature-row h3{
  margin:0 0 14px;
  font-size:clamp(29px,3.2vw,48px);
  line-height:1.02;
  letter-spacing:-1px;
}
.acm-pdp-feature-row>div>p:not(.acm-eyebrow){color:#555;font-size:16px;line-height:1.65}
.acm-pdp-feature-row ul{margin:21px 0 0;padding:0;list-style:none}
.acm-pdp-feature-row li{
  margin-top:7px;
  border:1px solid #efcf9a;
  border-radius:4px;
  background:#fff8e9;
  padding:8px 11px;
  font-size:12px;
}

.acm-brand-directory{padding:0 0 62px;background:#fff;color:#111}
.acm-brand-directory-head{padding-top:20px}
.acm-brand-directory-breadcrumb{display:flex;align-items:center;gap:10px;padding:0 0 18px;border-bottom:1px solid #e6e6e6;color:#626262;font-size:12px}
.acm-brand-directory-breadcrumb a{color:#626262;text-decoration:none}
.acm-brand-directory-title{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:36px;padding:18px 0 14px}
.acm-brand-directory-title h1{margin:0;font-size:42px;line-height:1;letter-spacing:-1.4px}
.acm-brand-directory-title p{margin:8px 0 0;color:#555;font-size:13px}
.acm-brand-directory-benefits{display:flex}
.acm-brand-directory-benefits>span{display:grid;grid-template-columns:42px auto;grid-template-rows:auto auto;min-width:180px;padding:4px 22px;border-left:1px solid #ddd}
.acm-brand-directory-benefits b{grid-row:1/3;align-self:center;font-size:30px}
.acm-brand-directory-benefits strong{align-self:end;font-size:12px}
.acm-brand-directory-benefits small{align-self:start;color:#666;font-size:10px}
.acm-brand-directory-finder{display:grid;grid-template-columns:1.1fr 1.1fr .9fr 1fr auto;gap:16px;padding:18px 20px;border-radius:5px;background:#101010}
.acm-brand-directory-finder label{min-width:0}
.acm-brand-directory-finder label>span{display:block;margin:0 0 7px;color:#fff;font-size:10px;font-weight:900;letter-spacing:.6px;text-transform:uppercase}
.acm-brand-directory-finder select{width:100%;height:44px;border:1px solid #dedede;border-radius:3px;background:#fff;color:#111;padding:0 13px;font:inherit;font-size:12px}
.acm-brand-directory-finder button{align-self:end;min-height:44px;border:0;border-radius:3px;background:var(--acm-orange);color:#111;padding:0 19px;font-size:11px;font-weight:950;text-transform:uppercase;cursor:pointer}
.acm-route-category-picker{
  width:min(1320px,calc(100% - 44px));
  margin:0 auto;
  padding:0 0 18px;
}
.acm-route-category-finder{
  grid-template-columns:minmax(180px,.85fr) repeat(4,minmax(145px,1fr)) auto;
  align-items:end;
}
.acm-route-category-finder__heading{
  display:grid;
  align-self:center;
  gap:4px;
  color:#fff;
}
.acm-route-category-finder__heading span{
  color:var(--acm-orange);
  font-size:9px;
  font-weight:900;
  letter-spacing:1.4px;
  text-transform:uppercase;
}
.acm-route-category-finder__heading strong{font-size:16px;line-height:1.1}
.acm-brand-directory-content{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:34px;padding-top:20px}
.acm-brand-jump-title{display:block;margin-bottom:12px;font-size:10px;letter-spacing:.6px;text-transform:uppercase}
.acm-brand-alphabet{display:flex;flex-wrap:wrap;gap:2px 14px;padding:0 0 14px;border-bottom:1px solid #ddd}
.acm-brand-alphabet button{border:0;border-bottom:2px solid transparent;background:transparent;padding:0 0 7px;color:#222;font-size:11px;font-weight:850;text-transform:uppercase;cursor:pointer}
.acm-brand-alphabet button:hover,.acm-brand-alphabet button[aria-pressed=true]{border-color:var(--acm-orange);color:#111}
.acm-brand-list-heading{display:flex;align-items:center;justify-content:space-between;gap:20px;margin:14px 0 8px}
.acm-brand-list-heading h2{margin:0;font-size:15px;text-transform:uppercase}
.acm-brand-directory-search{display:block;width:180px;margin:0}
.acm-brand-directory-search input{width:100%;min-height:34px;border:1px solid #d5d5d5;border-radius:3px;background:#fff;padding:0 10px;font:inherit;font-size:11px}
.acm-brand-directory-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;
  border-top:1px solid #eee;
}
.acm-brand-directory-grid a{
  position:relative;
  display:flex;
  min-height:35px;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #eee;
  color:#111;
  padding:6px 13px;
  font-size:11px;
  font-weight:650;
  text-decoration:none;
}
.acm-brand-directory-grid a:nth-child(4n+1){border-left:1px solid #eee}
.acm-brand-directory-grid a{border-right:1px solid #eee}
.acm-brand-directory-grid a:hover{background:#fff7e4;color:#9a6000}
.acm-brand-directory-grid b{font-size:16px;font-weight:400}
.acm-brand-directory-grid em{
  position:absolute;
  right:21px;
  top:4px;
  border-radius:3px;
  background:#ed1b35;
  color:#fff;
  padding:2px 4px;
  font-size:6px;
  font-style:normal;
  line-height:1;
  text-transform:uppercase;
}
.acm-brand-featured{align-self:start;margin-top:76px;border:1px solid #ddd;border-radius:5px;padding:18px}
.acm-brand-featured header{display:flex;align-items:center;justify-content:space-between;padding-bottom:10px;border-bottom:1px solid #e8e8e8}
.acm-brand-featured h2,.acm-brand-featured h3{margin:0;font-size:12px;text-transform:uppercase}
.acm-brand-featured header strong{color:#1c4d91;font-size:20px;font-style:italic}
.acm-brand-featured-models{display:grid;grid-template-columns:1fr 1fr;column-gap:18px;padding:10px 0}
.acm-brand-featured a{display:flex;min-height:29px;align-items:center;justify-content:space-between;color:#222;font-size:10px;text-decoration:none}
.acm-brand-featured a:hover{color:#9a6000}
.acm-brand-featured-lines{padding-top:12px;border-top:1px solid #e8e8e8}
.acm-brand-featured-lines h3{margin-bottom:7px}
.acm-brand-featured-lines a{min-height:34px;border-bottom:1px solid #eee;font-size:11px;font-weight:750}

@media(max-width:900px){
  .acm-live-brand-list{grid-template-columns:repeat(4,minmax(0,1fr))}
  .acm-footer-live-grid{grid-template-columns:1fr 1fr;gap:45px}
  .acm-footer-contact{grid-column:1/-1}
  .acm-brand-directory-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .acm-brand-directory-grid a:nth-child(4n+1){border-left:0}
  .acm-brand-directory-grid a:nth-child(3n+1){border-left:1px solid #eee}
  .acm-brand-directory-content{grid-template-columns:1fr}
  .acm-brand-featured{margin-top:0}
  .acm-brand-directory-finder{grid-template-columns:1fr 1fr}
  .acm-brand-directory-finder button{min-height:44px}
  .acm-route-category-finder__heading{grid-column:1/-1}
}

@media(max-width:720px){
  .acm-site-b .acm-promo{
    min-height:52px;
    padding:0 12px;
  }
  .acm-site-b .acm-logo{
    position:absolute;
    left:50%;
    justify-self:auto;
    transform:translateX(-50%);
  }
  .acm-site-b .acm-nav-tools{gap:8px}
  .acm-site-b .acm-nav-list[data-open="true"]{
    z-index:40;
    gap:0;
    padding:8px 18px 14px;
    border-top:1px solid #2a2a2a;
    background:#111;
    box-shadow:0 18px 28px rgba(0,0,0,.24);
  }
  .acm-site-b .acm-nav-list[data-open="true"] li{
    width:100%;
  }
  .acm-site-b .acm-nav-list[data-open="true"] a{
    display:flex;
    width:100%;
    min-height:48px;
    align-items:center;
    border-bottom:1px solid #292929;
    color:#fff;
    font-size:13px;
    font-weight:900;
    letter-spacing:.3px;
    text-decoration:none;
  }
  .acm-site-b .acm-nav-list[data-open="true"] li:last-child a{
    border-bottom:0;
  }
  html.acm-menu-open,
  html.acm-menu-open body{
    overflow:hidden;
  }
  .acm-site-b .acm-nav-tools select{
    display:block;
    width:46px;
    min-width:46px;
    min-height:38px;
    border-radius:0;
    background:transparent;
    color:#111;
    padding:0 2px;
    font-size:11px;
  }
  .acm-site-b .acm-logo{font-size:19px;line-height:.82}
  .acm-live-hero,.acm-live-hero__content{min-height:540px}
  .acm-live-hero__content{padding-bottom:38px}
  .acm-live-hero__content{width:100%;padding:70px 18px 38px}
  .acm-live-hero h1{max-width:310px;font-size:34px;line-height:1.02;letter-spacing:-1.2px}
  .acm-live-hero__copy{max-width:350px;margin:-9px 0 22px;font-size:14px}
  .acm-live-finder{padding:42px 0 36px}
  .acm-live-finder h2{
    max-width:calc(100% - 12px);
    margin-inline:auto;
    font-size:29px;
    overflow-wrap:anywhere;
  }
  .acm-live-brand-list{max-height:none;grid-template-columns:repeat(2,minmax(0,1fr));overflow:visible}
  .acm-route-category-picker{width:calc(100% - 24px)}
  .acm-route-category-finder{grid-template-columns:1fr;padding:18px}
  .acm-route-category-finder__heading{grid-column:auto}
  .acm-live-brand-list a{min-height:48px}
  .acm-live-lines{padding:24px 0 50px}
  .acm-live-line-card{min-height:390px}
  .acm-live-proof>.acm-container{grid-template-columns:1fr}
  .acm-live-proof div div{border-bottom:1px solid #ddd}
  .acm-live-showcase{padding:27px 0 56px}
  .acm-live-showcase-tabs{justify-content:flex-start;gap:22px}
  .acm-live-showcase-heading{align-items:center;margin-bottom:16px}
  .acm-live-showcase-heading h2{font-size:25px}
  .acm-live-slider-controls button{width:38px;height:38px}
  .acm-live-showcase-products{gap:10px}
  .acm-live-mini-product{
    flex-basis:calc((100% - 10px)/2);
    grid-template-columns:1fr;
    align-content:start;
  }
  .acm-live-mini-product img{height:auto;aspect-ratio:1/1}
  .acm-live-mini-product__copy{padding:12px 10px 15px}
  .acm-live-mini-product strong{margin-top:5px;font-size:11px}
  .acm-live-mini-product em{margin-top:7px;font-size:11px}
  .acm-live-mini-product b{margin-top:12px;font-size:8px}
  .acm-footer--live{padding-top:54px}
  .acm-footer-live-grid{grid-template-columns:1fr;gap:38px}
  .acm-footer-contact{grid-column:auto}
  .acm-pdp-proof,.acm-pdp-compare,.acm-pdp-feature-stack{padding-top:52px}
  .acm-pdp-proof>h2,.acm-pdp-compare>h2,.acm-pdp-feature-heading h2{font-size:34px}
  .acm-pdp-compare>h2{font-size:30px}
  .acm-pdp-feature-stack{padding-top:24px}
  .single-product .acm-vehicle-form{grid-template-columns:repeat(2,minmax(0,1fr))}
  .single-product .acm-vehicle-form .acm-field--wide{grid-column:1/-1}
  .acm-pdp-proof{width:calc(100% - 30px)}
  .acm-pdp-proof-grid{
    display:flex;
    gap:12px;
    max-width:100%;
    overflow-x:auto;
    contain:layout paint;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
  }
  .acm-pdp-proof-grid::-webkit-scrollbar{display:none}
  .acm-pdp-proof-grid article{flex:0 0 100%;scroll-snap-align:start}
  .acm-pdp-compare-media{border-radius:14px}
  .acm-pdp-compare-media__label{top:16px;font-size:14px}
  .acm-pdp-compare-media__label--before{left:16px}
  .acm-pdp-compare-media__label--after{right:16px}
  .acm-pdp-feature-row{grid-template-columns:1fr;margin-bottom:22px}
  .acm-pdp-feature-row:nth-of-type(even) figure{order:0}
  .acm-pdp-feature-row>div{padding:28px 20px 34px}
  .acm-pdp-feature-row h3{font-size:31px}
  .acm-brand-directory-head{padding-top:12px}
  .acm-brand-directory-title{grid-template-columns:1fr;gap:14px}
  .acm-brand-directory-title h1{font-size:32px;letter-spacing:-.7px}
  .acm-brand-directory-benefits{display:grid;grid-template-columns:1fr 1fr}
  .acm-brand-directory-benefits>span{min-width:0;padding:5px 10px;border:1px solid #eee}
  .acm-brand-directory-benefits b{font-size:22px}
  .acm-brand-directory-finder{grid-template-columns:1fr;gap:10px;padding:15px}
  .acm-brand-directory-content{padding-top:18px}
  .acm-brand-alphabet{gap:5px 13px}
  .acm-brand-list-heading{align-items:flex-start;flex-direction:column}
  .acm-brand-directory-search{width:100%}
  .acm-brand-directory-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .acm-brand-directory-grid{gap:0}
  .acm-brand-directory-grid a{min-height:40px;font-size:12px}
  .acm-brand-directory-grid a:nth-child(3n+1){border-left:0}
  .acm-brand-directory-grid a:nth-child(2n+1){border-left:1px solid #eee}
  .acm-brand-featured-models{grid-template-columns:1fr 1fr}
}

/* Live route roots: the same hierarchy and proportions as anycarmats.com. */
.acm-route-root{
  background:#fff;
  color:#10131a;
}
.acm-route-root-hero{
  width:min(980px,calc(100% - 40px));
  margin:0 auto;
  padding:58px 0 46px;
  text-align:center;
}
.acm-route-root-back{
  display:inline-flex;
  min-height:40px;
  align-items:center;
  border:1px solid #d8d8d8;
  border-radius:999px;
  padding:0 18px;
  color:#111;
  font-size:13px;
  font-weight:900;
  text-decoration:none;
}
.acm-route-root-breadcrumb{
  display:flex;
  justify-content:center;
  gap:9px;
  margin:26px 0 20px;
  color:#111;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}
.acm-route-root-breadcrumb a{color:inherit}
.acm-route-root-hero h1{
  margin:0 0 20px;
  font-size:clamp(48px,5.4vw,76px);
  line-height:.92;
  letter-spacing:-2.4px;
  text-transform:uppercase;
}
.acm-route-root-hero>p{
  max-width:760px;
  margin:0 auto;
  color:#343941;
  font-size:15px;
  line-height:1.65;
}
.acm-route-root-products{
  width:min(1180px,calc(100% - 44px));
  margin:0 auto;
  padding:20px 0 66px;
}
.acm-route-root-toolbar{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin-bottom:26px;
  border-bottom:1px solid #dfe1e4;
  padding:0 0 18px;
  color:#abb0b8;
  font-size:15px;
}
.acm-route-root-toolbar strong{
  color:#8e949d;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
}
.acm-route-root-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:42px 24px;
}
.acm-route-root--category .acm-route-root-products{
  width:min(1180px,calc(100% - 44px));
  max-width:1180px;
  padding:20px 0 66px;
  background:#fff;
  color:#111;
}
.acm-route-root--category .acm-route-root-toolbar,
.acm-route-root--category .acm-route-root-grid{
  width:min(1180px,100%);
  margin-right:auto;
  margin-left:auto;
}
.acm-route-root--category .acm-route-root-toolbar{
  border-color:#dfe1e4;
}
.acm-route-root--category .acm-route-product-card a,
.acm-route-root--category .acm-route-root-grid>.acm-product-card a{
  color:#111;
}
.acm-route-root--category .acm-route-product-card img,
.acm-route-root--category .acm-route-root-grid>.acm-product-card img{
  background:#eee;
}
.acm-route-product-card,
.acm-route-root-grid>.acm-product-card{
  min-width:0;
  text-align:center;
}
.acm-route-product-card a,
.acm-route-root-grid>.acm-product-card a{
  display:block;
  color:#111;
  text-decoration:none;
}
.acm-route-product-card img,
.acm-route-root-grid>.acm-product-card img{
  display:block;
  width:100%;
  aspect-ratio:1;
  border-radius:0;
  background:#eee;
  object-fit:cover;
}
.acm-route-product-card>a>span{
  display:block;
  margin-top:14px;
  color:#777d86;
  font-size:9px;
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
}
.acm-route-product-card h2,
.acm-route-root-grid>.acm-product-card h2{
  display:flex;
  min-height:42px;
  align-items:flex-start;
  justify-content:center;
  margin:8px 0 8px;
  font-size:15px;
  line-height:1.14;
}
.acm-route-product-card .price,
.acm-route-root-grid>.acm-product-card .price{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:6px;
  color:#f0a000;
  font-size:12px;
  font-weight:900;
}
.acm-route-product-card .price ins{order:1;text-decoration:none}
.acm-route-product-card .price del{
  order:2;
  margin-left:0;
  color:#9ea3ab;
  font-size:10px;
}
.acm-route-root-finder{
  padding:44px 0 92px;
  background:#fff;
  text-align:center;
}
.acm-route-root-finder .acm-container{max-width:1180px}
.acm-route-root-finder .acm-eyebrow{
  margin:0 0 8px;
  color:#e21835;
  font-size:11px;
  font-weight:900;
  letter-spacing:1.4px;
  text-transform:uppercase;
}
.acm-route-root-finder h2{
  margin:0;
  font-size:clamp(38px,4.3vw,55px);
  line-height:1;
}
.acm-route-root-finder h2+ p{
  margin:28px 0 0;
  font-size:11px;
  font-weight:900;
  letter-spacing:1.8px;
  text-transform:uppercase;
}
.acm-route-root-finder .acm-brand-directory-search{
  width:min(560px,100%);
  margin-top:20px;
}
.acm-route-root-finder .acm-brand-directory-grid a{
  min-height:49px;
  border-radius:4px;
  font-size:14px;
}
.acm-route-root-seo{
  padding:64px 0 68px;
  border-top:1px solid #e3e5e8;
  background:#f5f5f3;
  text-align:center;
}
.acm-route-root-seo .acm-container{max-width:900px}
.acm-route-root-seo .acm-eyebrow{
  margin:0 0 12px;
  color:#a86f00;
  font-size:11px;
  font-weight:900;
  letter-spacing:1.5px;
  text-transform:uppercase;
}
.acm-route-root-seo h2{
  margin:0;
  font-size:clamp(32px,3.5vw,48px);
  line-height:1.02;
  text-transform:uppercase;
}
.acm-route-root-seo h2+p{
  max-width:780px;
  margin:20px auto 0;
  color:#343a43;
  font-size:16px;
  line-height:1.75;
}
.acm-route-root-faq{
  padding:66px 0 74px;
  background:#050607;
  color:#fff;
}
.acm-route-root-faq .acm-container{max-width:850px}
.acm-route-root-faq h2{
  margin:0 auto 38px;
  text-align:center;
  font-size:clamp(31px,3vw,46px);
  line-height:1;
}
.acm-route-root-faq h2 span{display:block}
.acm-route-root-faq-list details{
  margin-bottom:14px;
  overflow:hidden;
  border:0;
  border-radius:20px;
  background:#f3a900;
  color:#090909;
}
.acm-route-root-faq-list summary{
  position:relative;
  cursor:pointer;
  padding:16px 46px 16px 21px;
  font-size:14px;
  font-weight:900;
  list-style:none;
}
.acm-route-root-faq-list summary::-webkit-details-marker{display:none}
.acm-route-root-faq-list summary:after{
  content:"+";
  position:absolute;
  right:21px;
  top:50%;
  transform:translateY(-50%);
}
.acm-route-root-faq-list details[open] summary:after{content:"−"}
.acm-route-root-faq-list p{
  margin:0;
  padding:0 21px 18px;
  font-size:13px;
  line-height:1.6;
}

@media(max-width:720px){
  .acm-route-root-hero{
    width:calc(100% - 28px);
    padding:38px 0 30px;
  }
  .acm-route-root-seo{padding:42px 0 46px}
  .acm-route-root-seo h2{font-size:28px}
  .acm-route-root-seo h2+p{font-size:14px;line-height:1.65}
  .acm-route-root-back{
    min-height:42px;
    padding:0 18px;
    font-size:11px;
  }
  .acm-route-root-breadcrumb{
    margin:26px 0 22px;
    font-size:10px;
  }
  .acm-route-root-hero h1{
    max-width:330px;
    margin:0 auto 18px;
    font-size:38px;
    letter-spacing:-1.2px;
  }
  .acm-route-root-hero>p{
    max-width:360px;
    font-size:13px;
    line-height:1.72;
  }
  .acm-route-root-products{
    width:calc(100% - 20px);
    padding:14px 0 48px;
  }
  .acm-route-root-toolbar{
    gap:13px;
    margin-bottom:15px;
    padding-bottom:12px;
    font-size:10px;
  }
  .acm-route-root--category .acm-route-root-products{
    width:calc(100% - 24px);
  }
  .acm-route-root--category .acm-route-root-toolbar .dashicons{
    display:none;
  }
  .acm-route-root-toolbar strong{font-size:9px}
  .acm-route-root-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:28px 10px;
  }
  .acm-route-product-card>a>span{
    margin-top:8px;
    font-size:7px;
    letter-spacing:1.3px;
  }
  .acm-route-product-card h2,
  .acm-route-root-grid>.acm-product-card h2{
    min-height:32px;
    margin:5px 2px 4px;
    font-size:11px;
    line-height:1.12;
  }
  .acm-route-product-card .price,
  .acm-route-root-grid>.acm-product-card .price{font-size:9px}
  .acm-route-product-card .price del{font-size:8px}
  .acm-route-root-finder{padding:36px 0 55px}
  .acm-route-root-finder .acm-container{width:calc(100% - 20px)}
  .acm-route-root-finder .acm-eyebrow{font-size:9px}
  .acm-route-root-finder h2{
    max-width:300px;
    margin:0 auto;
    font-size:34px;
  }
  .acm-route-root-finder h2+ p{
    margin-top:20px;
    font-size:9px;
    line-height:1.35;
  }
  .acm-route-root-finder .acm-brand-directory-search{margin:16px auto 12px}
  .acm-route-root-finder .acm-brand-directory-search input{
    min-height:44px;
    font-size:12px;
  }
  .acm-route-root-finder .acm-brand-directory-grid{gap:7px}
  .acm-route-root-finder .acm-brand-directory-grid a{
    min-height:38px;
    padding:6px 8px;
    font-size:10px;
  }
  .acm-route-root-finder .acm-brand-directory-grid em{
    right:4px;
    top:4px;
    padding:2px 3px;
    font-size:6px;
  }
  .acm-route-root-faq{padding:46px 0 53px}
  .acm-route-root-faq .acm-container{width:calc(100% - 28px)}
  .acm-route-root-faq h2{
    margin-bottom:25px;
    font-size:27px;
  }
  .acm-route-root-faq-list details{margin-bottom:10px;border-radius:18px}
  .acm-route-root-faq-list summary{
    padding:14px 38px 14px 16px;
    font-size:11px;
  }
  .acm-route-root-faq-list p{
    padding:0 16px 16px;
    font-size:10px;
  }
}

/* PDP form parity: reference uses placeholders while retaining accessible labels. */
.single-product.acm-site-b .acm-vehicle-form legend,
.single-product.acm-site-b .acm-vehicle-field>span{
  position:absolute;
  width:1px;
  height:1px;
  margin:-1px;
  padding:0;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  border:0;
  white-space:nowrap;
}
.single-product.acm-site-b .acm-color-list{
  margin:7px 0 11px;
}
.single-product.acm-site-b .acm-vehicle-title{
  margin:11px 0 8px;
}

.acm-model-search{
  display:block;
  max-width:720px;
  margin:24px auto 22px;
}
.acm-model-search input{
  width:100%;
  min-height:54px;
  box-sizing:border-box;
  border:1px solid #cfd2d6;
  border-radius:6px;
  background:#fff;
  padding:0 18px;
  font:inherit;
  box-shadow:0 10px 26px #1111110c;
}
.acm-model-search input:focus{
  border-color:#f5a900;
  outline:3px solid #f5a90033;
}
[data-model-name][hidden]{display:none!important}
@media(max-width:720px){
  .acm-model-search{margin:18px 0}
  .acm-model-search input{min-height:50px}
  body:has(.acm-vehicle-route) .acm-chat{display:none}
}

/* Keep the compact mobile header; language remains available on desktop. */
@media (max-width: 720px) {
  body.home.acm-site-b .acm-language-switcher { display: none !important; }
}

/* Shopify-style live checkout. */
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-main{background:linear-gradient(90deg,#fff 0 58%,#f6f6f5 58% 100%)}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-commerce-page{width:min(1120px,100%);max-width:none;margin:0 auto;padding:0 24px 70px}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-commerce-heading{display:none}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-layout{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(390px,.85fr);gap:0;margin:0}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-fields{padding:46px 48px 40px 0;border:0;background:#fff;box-shadow:none}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review{align-self:stretch;margin:0;padding:46px 0 50px 42px;border:0;background:#f6f6f5;box-shadow:none}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review>h2{margin:0 0 18px;font-size:20px;letter-spacing:-.2px}
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields{padding:0;border:0;background:transparent}
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields>h3{margin:0 0 18px;font-size:20px;letter-spacing:-.2px}
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields__field-wrapper{display:grid;grid-template-columns:1fr 1fr;gap:10px 12px}
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields__field-wrapper .form-row{float:none;width:auto;margin:0;padding:0}
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields__field-wrapper .form-row-wide{grid-column:1/-1}
body.woocommerce-checkout:not(.woocommerce-order-received) .form-row label{display:block;margin:0 0 6px;color:#333;font-size:12px;font-weight:650;line-height:1.2}
body.woocommerce-checkout:not(.woocommerce-order-received) .form-row .optional{color:#777;font-weight:400}
body.woocommerce-checkout:not(.woocommerce-order-received) .form-row input.input-text,
body.woocommerce-checkout:not(.woocommerce-order-received) .form-row textarea,
body.woocommerce-checkout:not(.woocommerce-order-received) .form-row select,
body.woocommerce-checkout:not(.woocommerce-order-received) .select2-container .select2-selection--single{width:100%;min-height:48px;border:1px solid #c8c8c8;border-radius:7px;background:#fff;padding:0 13px;color:#202020;font-size:14px;box-shadow:none}
body.woocommerce-checkout:not(.woocommerce-order-received) .form-row textarea{min-height:88px;padding-top:13px}
body.woocommerce-checkout:not(.woocommerce-order-received) .select2-container .select2-selection--single .select2-selection__rendered{padding:8px 0;line-height:30px}
body.woocommerce-checkout:not(.woocommerce-order-received) .form-row input:focus,
body.woocommerce-checkout:not(.woocommerce-order-received) .form-row textarea:focus,
body.woocommerce-checkout:not(.woocommerce-order-received) .select2-container--focus .select2-selection--single{border-color:#0866d8!important;outline:1px solid #0866d8}
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-additional-fields{margin-top:28px}
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-additional-fields>h3{margin:0 0 14px;font-size:19px}
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review{padding:0;border:0;background:transparent;box-shadow:none}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table{margin:0 0 18px;border:0;border-collapse:collapse;background:transparent}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table thead{display:none}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table th,
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table td{border:0;border-bottom:1px solid #dedede;padding:16px 0;vertical-align:top;font-size:13px}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table td.product-name{padding-right:18px;font-weight:700}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table td.product-total,
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table tfoot td{text-align:right;white-space:nowrap}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta{display:grid!important;grid-template-columns:1fr;gap:5px;margin:11px 0 0!important;padding:0!important;list-style:none}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta li{display:grid!important;grid-template-columns:104px minmax(0,1fr);gap:8px;margin:0!important;color:#555;font-size:11px;font-weight:400;line-height:1.35}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta strong,
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta p{display:block!important;margin:0!important}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta strong{color:#222;font-weight:700}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table tfoot th{font-weight:650;text-align:left}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table .order-total th,
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table .order-total td{padding-top:20px;font-size:20px;font-weight:850}
body.woocommerce-checkout:not(.woocommerce-order-received) #payment{margin-top:18px;border:1px solid #d6d6d6;border-radius:8px;background:#fff;overflow:hidden}
body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods{margin:0;padding:0;border:0}
body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li{margin:0;padding:16px;border-bottom:1px solid #ddd}
body.woocommerce-checkout:not(.woocommerce-order-received) #payment div.payment_box{margin:14px -16px -16px;padding:16px;background:#f4f4f4}
body.woocommerce-checkout:not(.woocommerce-order-received) #payment div.form-row{margin:0;padding:16px}
body.woocommerce-checkout:not(.woocommerce-order-received) #place_order{float:none;width:100%;min-height:54px;margin:10px 0 0;border:0;border-radius:7px;background:#0866d8;color:#fff;font-size:15px;font-weight:800;text-transform:none;box-shadow:none}
body.woocommerce-checkout:not(.woocommerce-order-received) #place_order:hover{background:#0759bd}
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-privacy-policy-text{color:#666;font-size:11px;line-height:1.55}
@media(max-width:800px){
 body.woocommerce-checkout:not(.woocommerce-order-received) .acm-main{background:#fff}
 body.woocommerce-checkout:not(.woocommerce-order-received) .acm-commerce-page{padding:0}
 body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-layout{display:flex;flex-direction:column}
 body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review{order:-1;padding:24px 18px;background:#f6f6f5}
 body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-fields{padding:30px 18px 50px}
 body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields__field-wrapper{grid-template-columns:1fr}
 body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields__field-wrapper .form-row-wide{grid-column:auto}
}

/* Shopify-style order confirmation: keep the post-purchase flow visually consistent. */
body.woocommerce-order-received .acm-main {
  background:#f6f6f5;
  padding:48px 20px 80px;
}
body.woocommerce-order-received .woocommerce-order {
  width:min(1040px,100%);
  margin:0 auto;
  color:#202020;
}
body.woocommerce-order-received .woocommerce-thankyou-order-received {
  position:relative;
  margin:0 0 22px;
  border:1px solid #d7e6dc;
  border-radius:10px;
  background:#fff;
  padding:28px 28px 28px 76px;
  color:#17251c;
  font-size:24px;
  font-weight:850;
  line-height:1.25;
}
body.woocommerce-order-received .woocommerce-thankyou-order-received::before {
  content:'✓';
  position:absolute;
  left:26px;
  top:24px;
  display:grid;
  width:34px;
  height:34px;
  place-items:center;
  border-radius:50%;
  background:#1f8a4c;
  color:#fff;
  font-size:20px;
}
body.woocommerce-order-received .woocommerce-order-overview {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;
  margin:0 0 28px!important;
  padding:0!important;
  overflow:hidden;
  border:1px solid #dedede;
  border-radius:10px;
  background:#fff;
  list-style:none;
}
body.woocommerce-order-received .woocommerce-order-overview li {
  min-width:0;
  margin:0!important;
  border:0!important;
  border-right:1px solid #e3e3e3!important;
  padding:18px 20px!important;
  color:#707070;
  font-size:11px!important;
  letter-spacing:.03em;
  text-transform:uppercase;
}
body.woocommerce-order-received .woocommerce-order-overview li:last-child {border-right:0!important}
body.woocommerce-order-received .woocommerce-order-overview strong {
  display:block;
  margin-top:7px;
  overflow-wrap:anywhere;
  color:#171717;
  font-size:14px;
  font-weight:750;
  letter-spacing:0;
  text-transform:none;
}
body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details {
  margin:0 0 24px!important;
  border:1px solid #dedede;
  border-radius:10px;
  background:#fff;
  padding:26px;
}
body.woocommerce-order-received .woocommerce-order-details__title,
body.woocommerce-order-received .woocommerce-column__title {
  margin:0 0 20px;
  font-size:20px;
  line-height:1.25;
}
body.woocommerce-order-received table.woocommerce-table--order-details {
  margin:0!important;
  border:0!important;
  border-collapse:collapse;
}
body.woocommerce-order-received table.woocommerce-table--order-details th,
body.woocommerce-order-received table.woocommerce-table--order-details td {
  border:0!important;
  border-bottom:1px solid #e5e5e5!important;
  padding:16px 12px!important;
  vertical-align:top;
}
body.woocommerce-order-received table.woocommerce-table--order-details th:last-child,
body.woocommerce-order-received table.woocommerce-table--order-details td:last-child {
  width:150px;
  text-align:right;
}
body.woocommerce-order-received .wc-item-meta {
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px 22px;
  margin:14px 0 0!important;
  padding:0!important;
  list-style:none;
}
body.woocommerce-order-received .wc-item-meta li {
  display:grid!important;
  grid-template-columns:108px minmax(0,1fr);
  gap:8px;
  margin:0!important;
  color:#555;
  font-size:13px;
}
body.woocommerce-order-received .wc-item-meta strong,
body.woocommerce-order-received .wc-item-meta p {display:block!important;margin:0!important}
body.woocommerce-order-received .wc-item-meta strong {color:#222}
body.woocommerce-order-received .woocommerce-customer-details address {
  border:0!important;
  padding:0!important;
  color:#555;
  font-style:normal;
  line-height:1.65;
}
@media(max-width:720px){
  body.woocommerce-order-received .acm-main{padding:24px 14px 50px}
  body.woocommerce-order-received .woocommerce-thankyou-order-received{padding:22px 18px 22px 62px;font-size:20px}
  body.woocommerce-order-received .woocommerce-thankyou-order-received::before{left:18px;top:19px}
  body.woocommerce-order-received .woocommerce-order-overview{grid-template-columns:1fr 1fr}
  body.woocommerce-order-received .woocommerce-order-overview li:nth-child(2){border-right:0!important}
  body.woocommerce-order-received .woocommerce-order-overview li:nth-child(-n+2){border-bottom:1px solid #e3e3e3!important}
  body.woocommerce-order-received .woocommerce-order-details,body.woocommerce-order-received .woocommerce-customer-details{padding:18px}
  body.woocommerce-order-received .wc-item-meta{grid-template-columns:1fr}
  body.woocommerce-order-received .wc-item-meta li{grid-template-columns:100px minmax(0,1fr)}
}

/* Checkout product metadata must read as a specification list, not table totals. */
.acm-checkout-review td.product-name{
  width:auto;
  padding-right:16px;
  text-align:left;
  vertical-align:top;
}
.acm-checkout-review td.product-total{
  width:92px;
  text-align:right;
  vertical-align:top;
  white-space:nowrap;
}
.acm-checkout-review .wc-item-meta{
  display:grid;
  grid-template-columns:max-content minmax(0,1fr);
  gap:5px 10px;
  margin:12px 0 0;
  padding:0;
  text-align:left;
}
.acm-checkout-review .wc-item-meta li{display:contents}
.acm-checkout-review .wc-item-meta strong,
.acm-checkout-review .wc-item-meta p{margin:0;text-align:left}
@media(max-width:600px){
  .acm-checkout-review td.product-total{width:66px}
  .acm-checkout-review .wc-item-meta{
    grid-template-columns:minmax(84px,max-content) minmax(0,1fr);
    gap:4px 8px;
  }
}

.acm-vehicle-route{
  background:#fff;
  color:#11151d;
}
.acm-vehicle-route-hero{padding-bottom:48px}
.acm-vehicle-route-hero h1{max-width:980px;margin-inline:auto}
.acm-vehicle-picker{
  width:min(960px,calc(100% - 44px));
  margin:0 auto 52px;
  border:1px solid #dce0e4;
  padding:42px 38px;
  text-align:center;
}
.acm-vehicle-picker>.acm-container{
  width:100%;
  max-width:none;
}
.acm-vehicle-picker h2,
.acm-vehicle-line-choice h2{
  margin:0;
  font-size:clamp(34px,3.5vw,48px);
  letter-spacing:1px;
  text-transform:uppercase;
}
.acm-vehicle-picker>div>p{
  max-width:720px;
  margin:14px auto 30px;
  color:#343a43;
  font-size:14px;
  line-height:1.55;
}
.acm-vehicle-model-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:11px;
}
.acm-vehicle-model-grid a{
  display:flex;
  min-height:74px;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border:1px solid #d8dde2;
  border-radius:4px;
  padding:10px 11px 10px 15px;
  color:#111;
  text-align:left;
  text-decoration:none;
  box-sizing:border-box;
  overflow:hidden;
}
.acm-vehicle-model-grid a:hover{border-color:#f0a900}
.acm-vehicle-model-grid span{min-width:0;flex:1}
.acm-vehicle-model-grid strong,
.acm-vehicle-model-grid small{display:block}
.acm-vehicle-model-grid strong{
  font-size:12px;
  line-height:1.12;
  text-transform:uppercase;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.acm-vehicle-model-grid small{
  margin-top:5px;
  color:#4a515c;
  font-size:10px;
}
.acm-vehicle-model-grid em{
  flex:0 0 auto;
  white-space:nowrap;
  border-radius:2px;
  background:#f3aa00;
  padding:8px 9px;
  color:#090909;
  font-size:9px;
  font-style:normal;
  font-weight:900;
  text-transform:uppercase;
}
.acm-vehicle-year-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.acm-vehicle-year-grid a{
  display:flex;
  min-height:82px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border:1px solid #d8dde2;
  border-radius:4px;
  color:#111;
  text-decoration:none;
}
.acm-vehicle-year-grid a:hover{border-color:#f0a900}
.acm-vehicle-year-grid strong{font-size:20px}
.acm-vehicle-year-grid span{
  margin-top:4px;
  color:#555e69;
  font-size:10px;
  font-weight:800;
}
.acm-vehicle-route-products{padding-bottom:78px}
.acm-vehicle-specs{
  padding:70px 0 0;
  background:#f3f3f3;
}
.acm-vehicle-specs>.acm-container{max-width:1120px}
.acm-vehicle-specs h2{
  margin:0 0 27px;
  text-align:center;
  font-size:clamp(27px,3vw,39px);
  font-weight:500;
  letter-spacing:3px;
  text-transform:uppercase;
}
.acm-vehicle-specs ul{
  width:min(440px,100%);
  margin:0 auto;
  color:#303640;
  font-size:14px;
  line-height:1.8;
}
.acm-vehicle-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:40px;
  padding:64px 0 58px;
  text-align:center;
}
.acm-vehicle-proof div{
  display:flex;
  flex-direction:column;
  align-items:center;
}
.acm-vehicle-proof i{
  display:flex;
  width:28px;
  height:28px;
  align-items:center;
  justify-content:center;
  margin-bottom:15px;
  font-size:20px;
  font-style:normal;
}
.acm-vehicle-proof strong{
  margin-bottom:13px;
  font-size:12px;
  font-weight:500;
  letter-spacing:1.8px;
  text-transform:uppercase;
}
.acm-vehicle-proof span{
  max-width:270px;
  font-size:13px;
  line-height:1.55;
}
.acm-vehicle-story{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:500px;
  background:#f4f4f4;
}
.acm-vehicle-story>div{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:70px max(32px,calc((100vw - 1180px)/2));
}
.acm-vehicle-story>div>p{
  margin:0 0 28px;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
}
.acm-vehicle-story h2{
  max-width:540px;
  margin:0 0 30px;
  font-size:clamp(38px,4vw,58px);
  font-weight:500;
  line-height:1.02;
  letter-spacing:2px;
  text-transform:uppercase;
}
.acm-vehicle-story>div>span{
  max-width:530px;
  color:#313741;
  font-size:15px;
  line-height:1.75;
}
.acm-vehicle-story figure{
  min-height:500px;
  margin:0;
  background:linear-gradient(135deg,#141414,#242424);
}
.acm-vehicle-story img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.acm-vehicle-route-faq{margin-top:0}
.acm-vehicle-line-choice{padding:0 0 70px}
.acm-vehicle-line-choice>.acm-container{max-width:1000px}
.acm-vehicle-line-choice h2{margin-bottom:28px;text-align:center}
.acm-vehicle-line-choice .acm-container>div{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.acm-vehicle-line-choice a{
  display:flex;
  min-height:150px;
  flex-direction:column;
  justify-content:flex-end;
  background:#101113;
  color:#fff;
  padding:26px;
  text-decoration:none;
}
.acm-vehicle-line-choice strong{
  font-size:23px;
  text-transform:uppercase;
}
.acm-vehicle-line-choice span{
  margin-top:18px;
  color:#f3aa00;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

@media(max-width:900px){
  .acm-vehicle-model-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .acm-vehicle-year-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media(max-width:720px){
  .acm-vehicle-route-hero{padding-bottom:30px}
  .acm-vehicle-picker{
    width:calc(100% - 28px);
    margin-bottom:32px;
    padding:28px 14px;
  }
  .acm-vehicle-picker h2,
  .acm-vehicle-line-choice h2{font-size:30px}
  .acm-vehicle-picker>div>p{
    margin:11px auto 20px;
    font-size:11px;
  }
  .acm-vehicle-model-grid{grid-template-columns:1fr;gap:8px}
  .acm-vehicle-model-grid a{min-height:64px}
  .acm-vehicle-model-grid strong{font-size:11px}
  .acm-vehicle-model-grid em{font-size:8px}
  .acm-vehicle-year-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .acm-vehicle-year-grid a{min-height:68px}
  .acm-vehicle-year-grid strong{font-size:17px}
  .acm-vehicle-year-grid span{font-size:8px}
  .acm-vehicle-route-products{padding-bottom:48px}
  .acm-vehicle-specs{padding-top:45px}
  .acm-vehicle-specs h2{
    font-size:25px;
    letter-spacing:1.5px;
  }
  .acm-vehicle-specs ul{
    width:calc(100% - 38px);
    padding-left:22px;
    font-size:12px;
  }
  .acm-vehicle-proof{
    grid-template-columns:1fr;
    gap:33px;
    padding:45px 0;
  }
  .acm-vehicle-proof span{font-size:11px}
  .acm-vehicle-story{grid-template-columns:1fr;min-height:0}
  .acm-vehicle-story>div{padding:48px 20px}
  .acm-vehicle-story h2{font-size:34px}
  .acm-vehicle-story>div>span{font-size:13px}
  .acm-vehicle-story figure{min-height:320px}
  .acm-vehicle-line-choice{padding-bottom:45px}
  .acm-vehicle-line-choice .acm-container>div{grid-template-columns:1fr}
}

/* 1:1 storefront correction pass: global shell and first product viewport. */
.acm-site-b{
  width:100%;
  max-width:none;
  overflow-x:hidden;
}
.acm-site-b .acm-promo,
.acm-site-b .acm-header,
.acm-site-b .acm-main,
.acm-site-b .acm-footer{
  width:100%;
  max-width:none;
  box-sizing:border-box;
}
.acm-site-b .acm-breadcrumbs{display:none}
.acm-site-b .acm-pdp{
  width:min(calc(100% - 40px),1216px);
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:40px;
  padding-top:46px;
}
.acm-site-b .acm-summary>.acm-eyebrow{display:none}
.acm-site-b .acm-summary h1{
  margin:4px 0 8px;
  font-size:clamp(38px,3.6vw,48px);
  line-height:.96;
  letter-spacing:-1.7px;
}
.acm-site-b .acm-short-description{display:none}
.acm-site-b .acm-vehicle-title{margin:10px 0 10px;font-size:25px;line-height:1.05}
.acm-site-b .acm-vehicle-form{border-radius:8px;padding:18px}
.acm-site-b .acm-buy-row{margin-top:14px}
.acm-site-b .acm-secure{margin-top:12px}

@media(max-width:720px){
  .acm-site-b .acm-pdp{
    width:calc(100% - 24px);
    grid-template-columns:1fr;
    gap:18px;
    padding-top:18px;
  }
  .acm-site-b .acm-summary h1{font-size:34px;letter-spacing:-1px}
  .acm-site-b .acm-vehicle-title{font-size:23px}
}

/* Brand, model and year hierarchy: compact storefront proportions. */
.acm-site-b .acm-vehicle-route-hero{
  width:min(1040px,calc(100% - 40px));
  padding:42px 0 34px;
}
.acm-site-b .acm-vehicle-route-hero .acm-route-root-breadcrumb{margin:20px 0 14px}
.acm-site-b .acm-vehicle-route-hero h1{
  max-width:1040px;
  margin-inline:auto;
  font-size:clamp(42px,4.8vw,64px);
  line-height:.96;
  letter-spacing:-2px;
  overflow-wrap:anywhere;
}
.acm-site-b .acm-vehicle-route-hero>p{max-width:820px;font-size:15px}
.acm-site-b .acm-vehicle-line-choice{padding-bottom:48px}
.acm-site-b .acm-vehicle-line-choice>.acm-container{max-width:1000px}
.acm-site-b .acm-vehicle-line-choice h2{margin-bottom:22px;font-size:40px}
.acm-site-b .acm-vehicle-line-choice a{min-height:126px;padding:22px}
.acm-site-b .acm-brand-model-picker{margin-top:0}
.acm-brand-product-line{padding-top:44px}
.acm-brand-directory-reference{background:#fff;color:#111}
.acm-brand-reference-picker{padding:60px 0 76px;text-align:center}
.acm-brand-reference-picker>.acm-route-kicker{display:block;margin-bottom:12px;color:#ef1745;font-size:12px;font-weight:900;letter-spacing:.17em;text-transform:uppercase}
.acm-brand-reference-picker h2{margin:0 0 22px;font-size:40px;line-height:1.1}
.acm-brand-reference-picker>p{margin:0 0 22px;font-size:13px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}
.acm-brand-reference-search{display:block;max-width:560px;margin:0 auto 20px}
.acm-brand-reference-search input{width:100%;height:54px;padding:0 18px;border:1px solid #bfc6cf;border-radius:5px;background:#fff;font-size:16px}
.acm-brand-reference-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px;text-align:left}
.acm-brand-reference-grid a{position:relative;min-height:64px;padding:21px 18px;border:1px solid #ddd;border-radius:5px;color:#111;text-decoration:none;background:#fff}
.acm-brand-reference-grid a:hover,.acm-brand-reference-grid a:focus{border-color:#f5aa00;box-shadow:0 3px 12px rgba(0,0,0,.08)}
.acm-brand-reference-grid strong{font-size:15px}
.acm-brand-reference-grid em{position:absolute;top:8px;right:8px;padding:3px 6px;border-radius:3px;background:#ef1745;color:#fff;font-size:9px;font-style:normal;font-weight:900;text-transform:uppercase}
.acm-brand-product-line+.acm-brand-product-line{padding-top:12px}
.acm-brand-popular-models{padding:56px 0 76px;background:#fff}
.acm-brand-popular-models h2{margin:0 0 30px;font-size:36px;line-height:1.1;text-transform:uppercase}
.acm-brand-popular-columns{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:54px}
.acm-brand-popular-columns h3{margin:0 0 16px;font-size:18px;text-transform:uppercase}
.acm-brand-popular-columns a{display:block;padding:9px 0;border-bottom:1px solid #dedede;color:#111;text-decoration:none;font-size:15px}
.acm-brand-popular-columns a:hover,.acm-brand-popular-columns a:focus{text-decoration:underline;text-underline-offset:3px}
@media(max-width:767px){.acm-brand-product-line{padding-top:28px}.acm-brand-popular-models{padding:38px 0 48px}.acm-brand-popular-models h2{font-size:27px}.acm-brand-popular-columns{grid-template-columns:1fr;gap:34px}.acm-brand-reference-picker{padding:38px 16px 48px}.acm-brand-reference-picker h2{font-size:30px}.acm-brand-reference-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.acm-brand-reference-grid a{min-height:58px;padding:19px 12px}}

/* Keep support visible; move it above the first-visit consent notice. */
.acm-cookie-notice~.acm-chat{display:block;bottom:180px}

@media(max-width:720px){
  html,.acm-site-b{width:100%;max-width:100vw;overflow-x:hidden}
  .acm-site-b .acm-nav{width:100%;max-width:100%;box-sizing:border-box}
  .acm-site-b .acm-vehicle-route-hero{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    padding:28px 0 24px;
    padding-inline:14px;
  }
  .acm-site-b .acm-vehicle-route-hero h1{
    width:100%;
    max-width:100%;
    font-size:30px;
    line-height:1;
    letter-spacing:-1px;
    overflow-wrap:anywhere;
    word-break:normal;
  }
  .acm-site-b .acm-vehicle-route-hero>p{
    width:100%;
    max-width:100%;
    font-size:12px;
    line-height:1.55;
    overflow-wrap:anywhere;
  }
  .acm-site-b .acm-vehicle-line-choice{padding-bottom:32px}
  .acm-site-b .acm-vehicle-line-choice>.acm-container{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    padding-inline:12px;
  }
  .acm-site-b .acm-vehicle-line-choice h2{margin-bottom:18px;font-size:31px}
  .acm-site-b .acm-vehicle-line-choice a{min-height:104px;padding:18px}
  .acm-cookie-notice{
    right:8px;
    bottom:8px;
    width:calc(100vw - 16px);
    padding:11px;
  }
  .acm-cookie-notice p{margin-bottom:9px;font-size:10px;line-height:1.35}
  .acm-cookie-notice>div{display:grid;grid-template-columns:1fr 1fr;gap:7px}
  .acm-cookie-notice button{min-width:0;min-height:38px;padding:6px 5px;font-size:9px;white-space:normal}
}

/* PDP alignment pass 0.3.4: measured desktop split and mobile conversion area. */
@media(min-width:901px){
  .acm-site-b .acm-pdp{
    width:min(calc(100% - 48px),1204px);
    grid-template-columns:repeat(2,minmax(0,582px));
    align-items:start;
    gap:40px;
    padding:46px 0 40px;
  }
  .acm-site-b .acm-gallery{min-width:0}
  .acm-site-b .acm-gallery-main{border-radius:0;background:#f6f6f4}
  .acm-site-b .acm-gallery-main img{
    display:block;width:100%;aspect-ratio:1/1;object-fit:cover;
  }
  .acm-site-b .acm-gallery-thumbs{
    grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:12px;
  }
  .acm-site-b .acm-summary{
    position:sticky;top:18px;align-self:start;
    max-height:none;overflow:visible;
    padding:2px 8px 18px 0;
  }
  .acm-site-b.admin-bar .acm-summary{top:50px;max-height:none}
  .acm-site-b .acm-summary h1{max-width:490px}
}

.acm-site-b .acm-rating{margin:0 0 14px}
.acm-site-b .acm-price{margin:0 0 18px}
.acm-site-b .acm-color-list{margin:9px 0 20px}
.acm-site-b .acm-vehicle-title{margin:18px 0 12px}
.acm-site-b .acm-summary form.cart{margin:0}
.acm-site-b .acm-secure{border-top:1px solid #e3e3e3;padding-top:14px}
.acm-site-b .acm-delivery{margin-top:16px}
.acm-site-b .acm-pdp-promises{margin-top:14px}
.acm-checkout-review .wc-item-meta{
  display:grid;
  grid-template-columns:max-content minmax(0,1fr);
  gap:5px 10px;
  margin:10px 0 0;
  padding:0;
  list-style:none;
}
.acm-checkout-review .wc-item-meta li{display:contents}
.acm-checkout-review .wc-item-meta-label,
.acm-checkout-review .wc-item-meta p{margin:0;font-size:12px;line-height:1.4}
.acm-checkout-review .wc-item-meta-label{font-weight:850}

@media(max-width:900px){
  .acm-site-b .acm-pdp{
    width:calc(100% - 30px);grid-template-columns:1fr;gap:0;
    margin-inline:auto;padding:18px 0 94px;
  }
  .acm-site-b .acm-gallery{width:100%;min-width:0;overflow:hidden}
  .acm-site-b .acm-gallery-main{
    width:100%;border-radius:10px;background:#f6f6f4;touch-action:pan-y;
  }
  .acm-site-b .acm-gallery-main img{
    display:block;width:100%;height:auto;aspect-ratio:1/1;object-fit:cover;
  }
  .acm-site-b .acm-gallery-thumbs{
    display:flex;width:100%;gap:7px;margin:8px 0 0;padding:0 0 4px;
    overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;
  }
  .acm-site-b .acm-gallery-thumbs::-webkit-scrollbar{display:none}
  .acm-site-b .acm-gallery-thumbs button{
    flex:0 0 62px;scroll-snap-align:start;border-radius:2px;
  }
  .acm-site-b .acm-summary{
    position:static;width:100%;max-height:none;overflow:visible;
    box-sizing:border-box;padding:14px 0 28px;
  }
  .acm-site-b .acm-summary h1{
    margin:0 0 8px;font-size:29px;line-height:1.02;letter-spacing:-.8px;
  }
  .acm-site-b .acm-rating{margin-bottom:10px}
  .acm-site-b .acm-price{margin-bottom:15px}
  .acm-site-b .acm-color-list{margin:8px 0 17px}
  .acm-site-b .acm-vehicle-title{margin:17px 0 10px;font-size:22px}
  .acm-site-b .acm-vehicle-form{padding:14px}
  .acm-site-b.acm-pdp-buy-fixed .acm-buy-row{
    position:fixed;z-index:900;left:0;right:0;bottom:0;
    display:grid;grid-template-columns:112px minmax(0,1fr);gap:8px;
    height:80px;margin:0;padding:10px 12px;border-top:1px solid #d9d9d9;
    background:#fff;box-shadow:0 -10px 30px #00000018;box-sizing:border-box;
  }
  .acm-site-b.acm-pdp-buy-fixed .acm-buy-row .acm-qty,
  .acm-site-b.acm-pdp-buy-fixed .acm-buy-row .single_add_to_cart_button{height:60px}
  .acm-site-b.acm-reviews-reached .acm-buy-row{display:none!important}
  .acm-site-b .acm-buy-now{margin-top:10px}
  .acm-site-b .acm-cookie-notice{z-index:1000}
}

/* Keep support accessible without covering PDP conversion controls. */
.single-product.acm-site-b .acm-chat__launcher{
  width:56px;
  min-width:56px;
  height:56px;
  padding:0;
  overflow:hidden;
  border-radius:50%;
  font-size:0;
}
.single-product.acm-site-b .acm-chat__launcher::before{
  content:"↝";
  font-size:18px;
}
@media(max-width:900px){
  .single-product.acm-site-b .acm-chat{display:block}
}

/* Category conversion order: products first, then vehicle selection. */
.acm-route-root-finder--featured{
  margin:0;
  padding:42px 0 38px;
  background:#0d0f10;
  color:#fff;
}
.acm-route-root-finder--featured>.acm-container{
  width:min(calc(100% - 40px),1180px);
}
.acm-route-root-finder--featured h2{
  margin:3px 0 8px;
  color:#fff;
  font-size:clamp(34px,4vw,52px);
  line-height:1;
  letter-spacing:-1.4px;
}
.acm-route-root-finder--featured>div>p:not(.acm-eyebrow){
  margin:0 0 18px;color:#d1d1d1;
}
.acm-route-root-finder--featured .acm-brand-directory-search{
  max-width:720px;
  margin:0 auto 18px;
}
.acm-route-root-finder--featured .acm-brand-directory-search input{
  min-height:58px;
  border:0;
  border-radius:2px;
  background:#fff;
  color:#111;
  box-shadow:0 12px 34px #00000028;
}
.acm-route-root-finder--featured .acm-brand-directory-grid{
  grid-template-columns:repeat(5,minmax(0,1fr));
  max-height:none;
  overflow:visible;
  padding:2px;
}
.acm-route-root-finder--featured .acm-brand-directory-grid a{
  min-height:50px;
  border-color:#303337;
  background:#181b1e;
  color:#fff;
}
.acm-route-root-finder--featured .acm-brand-directory-grid a:hover,
.acm-route-root-finder--featured .acm-brand-directory-grid a:focus-visible{
  border-color:#ffad00;
  background:#ffad00;
  color:#0b0b0b;
}
.acm-route-root-finder--featured .acm-brand-directory-grid em{color:#ffad00}
.acm-route-root-products{padding-top:44px}

@media(max-width:900px){
  .acm-route-root-finder--featured{padding:30px 0 26px}
  .acm-route-root-finder--featured>.acm-container{width:calc(100% - 24px)}
  .acm-route-root-finder--featured h2{font-size:32px}
  .acm-route-root-finder--featured .acm-brand-directory-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-height:none;
  }
  .acm-route-root-finder--featured .acm-brand-directory-grid a{min-height:48px}
  .acm-route-root-products{padding-top:28px}
}

/* Global support control: consistent footprint across every storefront route. */
.acm-site-b .acm-chat__launcher{
  width:56px;
  min-width:56px;
  height:56px;
  padding:0;
  overflow:hidden;
  border-radius:50%;
  font-size:0;
}
.acm-site-b .acm-chat::before{content:"↝";font-size:18px}
@media(max-width:720px){
  .acm-site-b .acm-chat{
    right:12px;
    bottom:12px;
    width:50px;
    min-width:50px;
    height:50px;
  }
}

/* Chat visibility regression fix: the fixed root must never be clipped or
   sized like its launcher, otherwise both the button and panel collapse. */
.acm-site-b .acm-chat{
  width:auto;
  min-width:0;
  height:auto;
  padding:0;
  overflow:visible;
  border-radius:0;
  font-size:inherit;
}
.acm-site-b .acm-chat::before{content:none}
.acm-site-b .acm-cookie-notice~.acm-chat{bottom:180px}
@media(max-width:720px){
  .acm-site-b .acm-chat{width:auto;min-width:0;height:auto;overflow:visible}
  .acm-site-b .acm-chat__launcher{width:50px;min-width:50px;height:50px;padding:0}
  .acm-site-b .acm-cookie-notice~.acm-chat{bottom:250px}
}

/* PDP related products: match the live storefront card rhythm and mobile rail. */
.single-product.acm-site-b .acm-related-products{
  width:min(calc(100% - 48px),1194px);
  padding-top:44px;
  padding-bottom:72px;
}
.single-product.acm-site-b .acm-related-products>.acm-section-title{
  margin:0 0 24px;
  font-size:clamp(38px,4vw,46px);
  line-height:.98;
  letter-spacing:-1.4px;
}
.single-product.acm-site-b .acm-related-products .acm-product-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.single-product.acm-site-b .acm-related-products .acm-route-product-card,
.single-product.acm-site-b .acm-related-products .acm-product-card{
  overflow:hidden;
  border:1px solid #e4d8c7;
  background:#fff;
  text-align:left;
}
.single-product.acm-site-b .acm-related-products .acm-route-product-card img,
.single-product.acm-site-b .acm-related-products .acm-product-card img{
  display:block;
  width:100%;
  aspect-ratio:1;
  border-radius:0;
  object-fit:cover;
}
.single-product.acm-site-b .acm-related-products .acm-route-product-card>a>span{
  display:block;
  margin:16px 14px 0;
  color:#6b6f75;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
}
.single-product.acm-site-b .acm-related-products .acm-route-product-card h2,
.single-product.acm-site-b .acm-related-products .acm-product-card h2{
  display:block;
  min-height:48px;
  margin:12px 14px 8px;
  font-size:16px;
  line-height:1.18;
  text-align:left;
}
.single-product.acm-site-b .acm-related-products .price{
  display:flex;
  min-height:126px;
  flex-direction:column;
  align-items:flex-start;
  gap:16px;
  margin:0 14px;
  padding:10px 0 18px;
  border-top:1px solid #e4d8c7;
  color:#eea000;
  font-size:36px;
  font-weight:950;
  line-height:1;
}
.single-product.acm-site-b .acm-related-products .price ins{
  color:#eea000;
  text-decoration:none;
}
.single-product.acm-site-b .acm-related-products .price del{
  color:#9ba1aa;
  font-size:26px;
}

@media(max-width:800px){
  .single-product.acm-site-b .acm-related-products{
    width:100%;
    box-sizing:border-box;
    overflow:hidden;
    padding:42px 0 76px;
  }
  .single-product.acm-site-b .acm-related-products>.acm-section-title{
    width:calc(100% - 30px);
    margin:0 auto 20px;
    font-size:38px;
    text-align:center;
  }
  .single-product.acm-site-b .acm-related-products .acm-product-grid{
    display:flex;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    gap:16px;
    overflow-x:auto;
    contain:layout paint;
    padding:0 15px 12px;
    scroll-padding-inline:15px;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }
  .single-product.acm-site-b .acm-related-products .acm-product-grid::-webkit-scrollbar{
    display:none;
  }
  .single-product.acm-site-b .acm-related-products .acm-route-product-card,
  .single-product.acm-site-b .acm-related-products .acm-product-card{
    flex:0 0 min(282px,78vw);
    scroll-snap-align:start;
  }
  .single-product.acm-site-b .acm-related-products .price{
    min-height:108px;
    font-size:30px;
  }
  .single-product.acm-site-b .acm-related-products .price del{
    font-size:22px;
  }
}

/* PDP gallery controls: visible, compact and usable with mouse, touch or keyboard. */
.single-product.acm-site-b .acm-gallery-arrow{
  position:absolute;
  z-index:3;
  top:50%;
  display:grid;
  width:32px;
  height:32px;
  place-items:center;
  padding:0;
  transform:translateY(-50%);
  border:1px solid #ddd;
  border-radius:50%;
  background:#fff;
  color:#111;
  font:700 24px/1 Arial,sans-serif;
  cursor:pointer;
  box-shadow:0 2px 8px #00000012;
}
.single-product.acm-site-b .acm-gallery-arrow--prev{left:12px}
.single-product.acm-site-b .acm-gallery-arrow--next{right:12px}
.single-product.acm-site-b .acm-gallery-arrow:focus-visible{
  outline:3px solid #f5a900;
  outline-offset:2px;
}

/* PDP conversion assurances: match the readable 2 x 2 reference card grid. */
.single-product.acm-site-b .acm-pdp-promises{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  margin-top:16px;
  border:0;
  border-radius:0;
  background:transparent;
}
.single-product.acm-site-b .acm-pdp-promises>div{
  min-width:0;
  min-height:68px;
  padding:11px 13px;
  border:1px solid #ecd3ad;
  border-radius:10px;
  background:#fff8ed;
}
.single-product.acm-site-b .acm-pdp-promises b{
  font-size:12px;
  line-height:1.2;
  letter-spacing:.25px;
  white-space:normal;
}
.single-product.acm-site-b .acm-pdp-promises span{
  margin-top:4px;
  font-size:11px;
  line-height:1.4;
}

@media(max-width:900px){
  .single-product.acm-site-b .acm-pdp-promises{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    margin-top:12px;
  }
  .single-product.acm-site-b .acm-pdp-promises>div{
    min-height:64px;
    padding:10px 11px;
    text-align:left;
  }
  .single-product.acm-site-b .acm-pdp-promises b{
    font-size:11px;
    white-space:normal;
  }
  .single-product.acm-site-b .acm-pdp-promises span{
    font-size:10px;
    line-height:1.35;
  }
}

/* PDP mobile 1:1 pass: remove the conversion-panel gap and match the review carousel. */
@media(max-width:800px){
  .single-product.acm-site-b .acm-pdp{
    padding-bottom:24px;
  }
  .single-product.acm-site-b .acm-summary{
    padding-bottom:0;
  }
  .single-product.acm-site-b .acm-reference-reviews{
    width:100%;
    padding-inline:24px;
    overflow:hidden;
  }
  .single-product.acm-site-b .acm-reference-reviews__head{
    max-width:320px;
  }
  .single-product.acm-site-b .acm-reference-reviews__list{
    display:flex;
    width:calc(100% + 24px);
    max-height:none;
    gap:12px;
    overflow-x:auto;
    padding:0 24px 4px 0;
    scroll-padding-right:24px;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }
  .single-product.acm-site-b .acm-reference-reviews__list::-webkit-scrollbar{
    display:none;
  }
  .single-product.acm-site-b .acm-reference-reviews__load{
    flex:0 0 auto;
  }
  .single-product.acm-site-b .acm-reference-review{
    flex:0 0 calc(100% - 20px);
    min-height:184px;
    max-height:184px;
    scroll-snap-align:start;
  }
  .single-product.acm-site-b .acm-reference-review__verified{
    border:1px solid #bfe1c5;
    background:#ecfaef;
    color:#087c25;
  }
  .single-product.acm-site-b .acm-reference-reviews__controls{
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    gap:10px;
  }
  .single-product.acm-site-b .acm-reference-reviews__controls span{
    order:initial;
    width:auto;
    min-width:0;
  }
  .single-product.acm-site-b .acm-reference-reviews__controls .is-primary{
    grid-column:1/-1;
    margin:0 auto;
  }
}

/* Final cascade lock for the verified Luxus-inspired support control. */
.acm-site-b .acm-chat__launcher,
.single-product.acm-site-b .acm-chat__launcher{
  width:auto;
  min-width:0;
  height:60px;
  padding:0;
  overflow:visible;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  color:#172033;
  font-size:15px;
}
.single-product.acm-site-b .acm-chat__launcher::before{content:none}
@media(max-width:600px){
  .acm-site-b .acm-chat__launcher,
  .single-product.acm-site-b .acm-chat__launcher{width:auto;min-width:0;height:54px;padding:0;font-size:15px}
  .acm-site-b .acm-chat__launcher .acm-chat__launcher-circle{display:grid;width:54px;min-width:54px;height:54px}
}

/* ACM policy page alignment 2026-08-08 */
.acm-section:has(.acm-policy-copy) > .acm-section-title{width:100%;max-width:780px;margin-left:auto;margin-right:auto;}
@media(max-width:767px){.acm-section:has(.acm-policy-copy) > .acm-section-title{max-width:none;}}

/* Final checkout density lock: Shopify-scale order summary. */
@media(min-width:801px){
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-commerce-page{width:min(1180px,100%)}
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-layout{grid-template-columns:minmax(0,1fr) 460px}
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-fields{padding:36px 54px 34px 0}
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review{padding:36px 0 42px 38px}
}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review>h2{margin-bottom:14px;font-size:18px}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table tr.cart_item{display:table-row}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table tr.cart_item td{padding:14px 0 16px!important}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table td.product-name{
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  grid-template-rows:auto auto;
  column-gap:13px;
  align-items:start;
  min-height:76px;
  padding-right:12px!important;
  font-size:13px;
  line-height:1.3;
}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table td.product-name::before{
  content:'';
  grid-column:1;
  grid-row:1/3;
  width:70px;
  height:70px;
  border:1px solid #d6d6d6;
  border-radius:7px;
  background:#fff url('/wp-content/themes/anycarmats-live-match/assets/images/pdp/gray-black-main.jpg') center/contain no-repeat;
}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta{
  grid-column:2;
  grid-row:2;
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:6px 12px;
  margin:9px 0 0!important;
}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta li{
  display:block!important;
  min-width:0;
  margin:0!important;
  color:#575757;
  font-size:10px;
  line-height:1.25;
}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta strong,
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta p{display:block!important;margin:0!important}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta strong{margin-bottom:2px!important;font-size:9px;text-transform:uppercase;letter-spacing:.02em}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table td.product-total{width:68px;padding-top:17px!important;font-size:12px}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table tfoot th,
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table tfoot td{padding:13px 0!important;font-size:12px}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table .order-total th,
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table .order-total td{padding:16px 0!important;font-size:19px}
body.woocommerce-checkout:not(.woocommerce-order-received) #payment{margin-top:14px}
body.woocommerce-checkout:not(.woocommerce-order-received) #payment div.form-row{padding:14px}
@media(max-width:800px){
 body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table td.product-name{grid-template-columns:64px minmax(0,1fr)}
 body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table td.product-name::before{width:62px;height:62px}
 body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta{grid-template-columns:1fr 1fr}
}

/* Woo table cells cannot reliably become grid containers; use a floated thumbnail and full-width metadata. */
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review,
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review,
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table{width:100%!important;max-width:none!important;box-sizing:border-box}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table{table-layout:auto!important}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table td.product-name{display:table-cell!important;min-height:0!important;padding-right:14px!important;overflow:hidden}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table td.product-name::before{display:block!important;float:left!important;width:70px!important;height:70px!important;margin:0 13px 8px 0!important}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:6px 14px!important;margin:10px 0 0 83px!important;width:auto!important;clear:none!important}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta li{display:block!important;width:auto!important;min-width:0!important;padding:0!important;overflow-wrap:normal!important;word-break:normal!important}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta strong,
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review .wc-item-meta p{white-space:normal!important;overflow-wrap:normal!important;word-break:normal!important}
body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table td.product-name::after{content:'';display:block;clear:both}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation{
  display:grid!important;
  grid-template-columns:max-content minmax(54px,1fr) max-content minmax(54px,1fr)!important;
  gap:6px 8px!important;
  width:auto!important;
  margin:10px 0 0 83px!important;
  padding:0!important;
  color:#555;
  font-size:10px;
  line-height:1.25;
}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation dt,
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation dd{
  display:block!important;
  float:none!important;
  width:auto!important;
  min-width:0!important;
  margin:0!important;
  padding:0!important;
  clear:none!important;
  white-space:normal!important;
  overflow-wrap:normal!important;
  word-break:normal!important;
}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation dt{color:#222;font-weight:700}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation dd p{margin:0!important}
@media(max-width:800px){body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation{grid-template-columns:max-content 1fr!important;margin-left:75px!important}}

/* Keep every vehicle attribute label attached to its value. */
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation{
  display:block!important;
  margin:9px 0 0 83px!important;
  font-size:10px;
  line-height:1.45;
}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation dt,
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation dd{
  display:inline!important;
  float:none!important;
  width:auto!important;
  margin:0!important;
}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation dt{margin-right:4px!important}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation dd::after{content:'';display:block}
@media(max-width:800px){body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation{margin-left:75px!important}}

/* Final metadata alignment: labels left, values right. */
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation{
  display:grid!important;
  grid-template-columns:96px minmax(0,1fr)!important;
  gap:5px 10px!important;
  margin:9px 0 0 83px!important;
  align-items:start!important;
}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation dt,
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation dd{
  display:block!important;
  float:none!important;
  width:auto!important;
  margin:0!important;
  padding:0!important;
  text-align:left!important;
}
body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation dd::after{content:none!important}
@media(max-width:800px){
 body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation{grid-template-columns:92px minmax(0,1fr)!important;margin-left:75px!important}
}

/* Desktop proportion benchmark: widen the right rail to Shopify's checkout ratio. */
@media(min-width:1000px){
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-commerce-page{width:min(1320px,100%)!important}
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-layout{grid-template-columns:minmax(0,1fr) 560px!important}
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review{padding-left:42px!important}
}

/* Mobile checkout polish: clean Shopify-style collapsible summary and payment card. */
@media(max-width:800px){
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review{
    padding:0 18px!important;
    border-bottom:1px solid #dedede!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-summary-toggle{
    display:grid!important;
    grid-template-columns:1fr auto 18px!important;
    align-items:center!important;
    gap:9px!important;
    width:100%!important;
    min-height:58px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    background:transparent!important;
    color:#111!important;
    font-size:14px!important;
    text-align:left!important;
    box-shadow:none!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-summary-toggle strong{
    font-size:16px!important;
    font-weight:750!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-summary-toggle>span:last-child{
    font-size:16px!important;
    text-align:center!important;
    transition:transform .2s ease!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-summary-toggle[aria-expanded="true"]>span:last-child{
    transform:rotate(180deg)!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-summary-toggle[aria-expanded="false"]~#order_review{
    display:none!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-summary-toggle[aria-expanded="true"]~#order_review{
    display:block!important;
    padding:0 0 16px!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.woocommerce-checkout-review-order-table{
    display:table!important;
    width:100%!important;
    table-layout:fixed!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.woocommerce-checkout-review-order-table tbody{
    display:table-row-group!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.woocommerce-checkout-review-order-table tfoot{
    display:table-footer-group!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.woocommerce-checkout-review-order-table tr{
    display:table-row!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.woocommerce-checkout-review-order-table td,
  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.woocommerce-checkout-review-order-table th{
    display:table-cell!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.woocommerce-checkout-review-order-table td.product-total{
    width:72px!important;
    min-width:72px!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review td.product-name dl.variation{
    clear:both!important;
    grid-template-columns:104px minmax(0,1fr)!important;
    gap:5px 10px!important;
    width:100%!important;
    margin:12px 0 0!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) #payment{
    margin-top:24px!important;
    border-color:#dedede!important;
    border-radius:9px!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) #payment .wc_payment_methods{
    list-style:none!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) #payment .wc_payment_methods li::marker{
    content:''!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) #payment .wc_payment_methods:has(.woocommerce-info){
    display:none!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) #payment div.form-row{
    padding:22px 18px!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) #place_order{
    min-height:52px!important;
    margin-top:14px!important;
  }
}

/* Desktop checkout symmetry: equal columns, equal gutters, centered divider. */
@media(min-width:1000px){
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-main>.woocommerce{
    width:100%!important;
    max-width:1440px!important;
    margin-left:auto!important;
    margin-right:auto!important;
    box-sizing:border-box!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-main{
    background:linear-gradient(90deg,#fff 0 50%,#f6f6f5 50% 100%)!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-commerce-page{
    width:100%!important;
    max-width:none!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-layout{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:0!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-fields{
    min-width:0!important;
    box-sizing:border-box!important;
    padding-right:42px!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) .acm-checkout-review{
    min-width:0!important;
    box-sizing:border-box!important;
    padding-left:42px!important;
    padding-right:42px!important;
  }
  body.woocommerce-checkout:not(.woocommerce-order-received) table.woocommerce-checkout-review-order-table td.product-total{
    width:90px!important;
    min-width:90px!important;
    text-align:right!important;
  }
}
