/* ea-home-redesign marker: Beetle-only Light Editorial */
.ea-home-v2 {
  --ea-bg: #fffdf8;
  --ea-paper: #fff7ea;
  --ea-panel: #ffffff;
  --ea-ink: #141312;
  --ea-text: #322f2a;
  --ea-muted: #756f65;
  --ea-line: #e8dfd2;
  --ea-line-strong: #141312;
  --ea-red: #dc2626;
  --ea-red-dark: #b91c1c;
  --ea-tan: #c9a368;
  --ea-tan-dark: #9c743b;
  --ea-success: #047857;
  --ea-radius: 8px;
  --ea-max: 1380px;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  background: var(--ea-bg);
  color: var(--ea-ink);
  font-family: Barlow, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ea-home-v2 *,
.ea-home-v2 *::before,
.ea-home-v2 *::after {
  box-sizing: border-box;
}

.ea-home-v2 :where(h1, h2, h3, p, figure, blockquote, dl, dd) {
  margin: 0;
}

.ea-home-v2 img {
  display: block;
  max-width: 100%;
}

.ea-home-v2 :where(a, button, input):focus-visible {
  outline: 3px solid var(--ea-red);
  outline-offset: 3px;
}

.ea-home__inner {
  width: min(var(--ea-max), calc(100% - 36px));
  margin-inline: auto;
}

.ea-home__eyebrow,
.ea-product-card__meta,
.ea-product-card__fitment,
.ea-product-card__select-wrap > span,
.ea-product-card__addon-label,
.ea-product-card__addon-tag,
.ea-product-card__total-label,
.ea-product-card__stock-note,
.ea-review-card__meta,
.ea-review-card__product,
.ea-review-card__verified,
.ea-review-card__rating {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ea-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--ea-tan-dark);
  font-size: 12px;
  font-weight: 900;
}

.ea-home__eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--ea-red);
}

.ea-home-v2 :where(h1, h2) {
  color: var(--ea-ink);
  font-family: "Barlow Condensed", Barlow, Impact, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: .94;
  text-transform: uppercase;
}

.ea-home-v2 h2 {
  max-width: 820px;
  font-size: clamp(36px, 4.4vw, 62px);
}

.ea-home-v2 :where(p, blockquote) {
  color: var(--ea-text);
  font-size: 17px;
  line-height: 1.62;
}

.ea-home-v2 :where(.ea-home-hero, .ea-home-build-paths, .ea-home-featured, .ea-home-gallery, .ea-home-reviews, .ea-home-final) {
  padding-block: clamp(54px, 7vw, 102px);
}

.ea-home-v2 > section {
  order: 0;
}

.ea-home-button,
.ea-home-v2 :where(.ea-product-card__button, .ea-product-card__variation-button, .ea-product-card__addon-item, .ea-product-card__qty button, .ea-review-card__quick-add) {
  min-height: 44px;
}

.ea-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 14px 22px;
  border: 1px solid var(--ea-line-strong);
  border-radius: 999px;
  color: var(--ea-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.ea-home-button:hover {
  transform: translateY(-1px);
}

.ea-home-button--primary {
  background: var(--ea-red);
  border-color: var(--ea-red);
  color: #fff;
}

.ea-home-button--primary:hover {
  background: var(--ea-red-dark);
  border-color: var(--ea-red-dark);
  color: #fff;
}

.ea-home-button--secondary {
  background: var(--ea-paper);
  border-color: var(--ea-tan);
  color: var(--ea-ink);
}

.ea-home-button--secondary:hover {
  border-color: var(--ea-tan-dark);
  color: var(--ea-red-dark);
}

.ea-home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fffdf8 0%, #fffdf8 39%, #fff5e4 39%, #fff5e4 100%);
  border-bottom: 1px solid var(--ea-line);
}

.ea-home-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 42%;
  width: 1px;
  background: rgba(20, 19, 18, .12);
  z-index: -1;
}

.ea-home-hero::after {
  content: "VW BEETLE PARTS";
  position: absolute;
  right: clamp(18px, 5vw, 84px);
  bottom: clamp(18px, 3vw, 38px);
  color: rgba(20, 19, 18, .055);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(34px, 5vw, 82px);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  pointer-events: none;
  z-index: -1;
}

.ea-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(360px, .38fr) minmax(680px, .62fr);
  align-items: center;
  gap: clamp(28px, 4.5vw, 68px);
  min-height: min(690px, calc(100dvh - 78px));
}

.ea-home-hero__copy {
  position: static !important;
  z-index: 2;
  grid-column: 1 !important;
  grid-row: 1 !important;
  max-width: 500px;
  padding-block: clamp(28px, 4vw, 58px);
}

.ea-home-hero__title {
  max-width: 520px;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: .88;
}

.ea-home-hero__body {
  max-width: 500px;
  margin-top: 22px;
  color: #2f2a24;
  font-size: clamp(17px, 1.25vw, 19px);
  font-weight: 500;
}

.ea-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ea-home-hero__proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--ea-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .66);
}

.ea-home-hero__proof div {
  min-height: 62px;
  padding: 11px 14px;
  background: transparent;
  border-right: 1px solid var(--ea-line);
  border-bottom: 1px solid var(--ea-line);
}

.ea-home-hero__proof div:nth-child(2n),
.ea-home-hero__proof div:last-child {
  border-right: 0;
}

.ea-home-hero__proof div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.ea-home-hero__proof dt {
  color: var(--ea-muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ea-home-hero__proof dd {
  margin-top: 4px;
  color: var(--ea-ink);
  font-size: 13px;
  font-weight: 900;
}

.ea-home-hero__car {
  position: relative;
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: grid;
  align-items: end;
  min-height: clamp(470px, 42vw, 610px);
  padding: clamp(18px, 2.6vw, 36px);
  background:
    linear-gradient(180deg, #ffffff 0%, #fff8ec 100%);
  border: 1px solid #d8cbbb;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(20, 19, 18, .13);
}

.ea-home-hero__car::before {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 62px);
  right: clamp(18px, 4vw, 62px);
  bottom: clamp(84px, 7vw, 112px);
  height: 18px;
  border-radius: 50%;
  background: rgba(20, 19, 18, .16);
  filter: blur(16px);
}

.ea-home-hero__car picture {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 1366 / 774;
  transform: scale(1.08) translateY(2px);
  opacity: 1 !important;
  filter: none !important;
}

.ea-home-hero__car img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.ea-home-hero__ledger {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(14px, 2vw, 22px);
  overflow: hidden;
  background: var(--ea-line);
  border: 1px solid var(--ea-line);
  border-radius: 999px;
}

.ea-home-hero__ledger span {
  padding: 10px 12px;
  background: rgba(255, 255, 255, .9);
  color: var(--ea-text);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  letter-spacing: .04em;
}

.ea-home-section-head {
  margin-bottom: clamp(26px, 4.5vw, 50px);
}

.ea-home-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ea-line);
}

.ea-home-build-paths {
  background: var(--ea-panel);
}

.ea-home-build-paths__grid,
.ea-home-featured__grid,
.ea-home-gallery__grid,
.ea-home-reviews__grid {
  display: grid;
  gap: 20px;
}

.ea-home-build-paths__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ea-home-build-card,
.ea-product-card,
.ea-review-card {
  min-width: 0;
  background: var(--ea-panel);
  border: 1px solid var(--ea-line);
  border-radius: var(--ea-radius);
}

.ea-home-build-card {
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(20, 19, 18, .045);
}

.ea-home-build-card__image {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 18px;
  background: var(--ea-paper);
  border-bottom: 1px solid var(--ea-line);
}

.ea-home-build-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ea-home-build-card__copy {
  padding: 20px;
}

.ea-home-build-card__copy span {
  display: block;
  color: var(--ea-tan-dark);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ea-home-build-card h3,
.ea-product-card__title,
.ea-review-card__name {
  color: var(--ea-ink);
  font-size: 23px;
  line-height: 1.08;
}

.ea-home-build-card h3 {
  margin-top: 8px;
}

.ea-home-build-card p {
  margin-top: 10px;
  font-size: 16px;
}

.ea-home-build-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 10px;
  margin-top: 16px;
}

.ea-home-build-card__add,
.ea-home-build-card__copy a,
.ea-product-card__support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--ea-red-dark);
  font-weight: 900;
  text-decoration: none;
}

.ea-home-build-card__add {
  border: 1px solid var(--ea-red);
  border-radius: 999px;
  background: var(--ea-red);
  color: #fff;
  cursor: pointer;
}

.ea-home-build-card__copy a {
  border: 1px solid var(--ea-line);
  border-radius: 999px;
  color: var(--ea-ink);
}

.ea-home-build-card__price {
  display: block;
  margin-top: 12px;
  color: var(--ea-ink);
  font-size: 20px;
  font-weight: 900;
}

.ea-home-featured {
  background: var(--ea-bg);
}

.ea-home-featured__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ea-home-v2 .ea-home-featured__grid.ea-product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
  grid-auto-columns: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  padding: 0 !important;
  scroll-snap-type: none !important;
}

.ea-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(20, 19, 18, .045);
}

.ea-product-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.16 / 1;
  padding: 28px;
  background: var(--ea-paper);
  border-bottom: 1px solid var(--ea-line);
}

.ea-product-card__image {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.ea-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  padding: 6px 9px;
  background: var(--ea-red);
  border-radius: 999px;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.ea-product-card__main,
.ea-product-card__addons,
.ea-product-card__actions {
  padding: 20px;
}

.ea-product-card__main {
  padding-bottom: 0;
}

.ea-product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ea-muted);
  font-size: 11px;
  font-weight: 900;
}

.ea-product-card__title {
  margin-top: 10px;
}

.ea-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.ea-product-card__fitment {
  display: inline-flex;
  max-width: 100%;
  margin-top: 12px;
  padding: 7px 10px;
  background: #f0fdf4;
  border: 1px solid rgba(4, 120, 87, .24);
  border-radius: 999px;
  color: var(--ea-success);
  font-size: 11px;
  font-weight: 900;
}

.ea-product-card__summary {
  margin-top: 12px;
  font-size: 16px;
}

.ea-product-card__select-wrap,
.ea-product-card__addons,
.ea-product-card__actions {
  margin-top: 18px;
  border-top: 1px solid var(--ea-line);
}

.ea-product-card__select-wrap > span,
.ea-product-card__addon-label,
.ea-product-card__addon-tag {
  display: block;
  color: var(--ea-muted);
  font-size: 11px;
  font-weight: 900;
}

.ea-product-card__variation-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.ea-product-card__variation-button,
.ea-product-card__addon-item {
  border: 1px solid var(--ea-line);
  border-radius: 999px;
  background: var(--ea-panel);
  color: var(--ea-ink);
  font-weight: 900;
  cursor: pointer;
}

.ea-product-card__variation-button {
  padding: 10px 13px;
  font-size: 13px;
}

.ea-product-card__variation-button.is-active,
.ea-product-card__variation-button--static.is-active {
  background: var(--ea-ink);
  border-color: var(--ea-ink);
  color: #fff;
}

.ea-product-card__addon-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ea-product-card__addon-tag {
  color: var(--ea-tan-dark);
  text-align: right;
}

.ea-product-card__addon-list {
  display: grid;
  gap: 9px;
}

.ea-product-card__addon-item {
  display: grid;
  grid-template-columns: 22px 48px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  min-height: 58px;
  gap: 10px;
  padding: 9px;
  border-radius: var(--ea-radius);
  text-align: left;
}

.ea-product-card__addon-item.is-selected {
  background: #fff8ed;
  border-color: var(--ea-tan);
}

.ea-product-card__addon-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--ea-line);
  border-radius: 5px;
  color: var(--ea-red);
  font-weight: 900;
}

.ea-product-card__addon-thumb {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.ea-product-card__addon-copy {
  min-width: 0;
}

.ea-product-card__addon-copy strong,
.ea-product-card__addon-copy span {
  display: block;
}

.ea-product-card__addon-copy strong {
  overflow-wrap: anywhere;
  color: var(--ea-ink);
  font-size: 14px;
}

.ea-product-card__addon-copy span {
  margin-top: 2px;
  color: var(--ea-tan-dark);
  font-size: 13px;
  font-weight: 900;
}

.ea-product-card__addon-empty {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: var(--ea-bg);
  border: 1px dashed var(--ea-line);
  border-radius: var(--ea-radius);
}

.ea-product-card__addon-empty span {
  color: var(--ea-text);
  font-size: 14px;
}

.ea-product-card__actions {
  margin-top: auto;
}

.ea-product-card__total,
.ea-product-card__buy,
.ea-product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ea-product-card__total {
  padding: 12px;
  background: var(--ea-bg);
  border: 1px solid var(--ea-line);
  border-radius: var(--ea-radius);
}

.ea-product-card__total-label {
  display: block;
  color: var(--ea-muted);
  font-size: 11px;
  font-weight: 900;
}

.ea-product-card__total-note {
  display: block;
  margin-top: 2px;
  color: var(--ea-text);
  font-size: 13px;
}

.ea-product-card__total-amount,
.ea-product-card__price {
  color: var(--ea-ink);
  font-size: 23px;
  font-weight: 900;
}

.ea-product-card__price-row {
  margin-top: 12px;
}

.ea-product-card__price-was {
  color: var(--ea-muted);
  text-decoration: line-through;
}

.ea-product-card__buy {
  margin-top: 14px;
}

.ea-product-card__qty {
  display: inline-flex;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid var(--ea-line-strong);
  border-radius: 999px;
}

.ea-product-card__qty button,
.ea-product-card__qty input {
  width: 42px;
  border: 0;
  background: var(--ea-panel);
  color: var(--ea-ink);
  font-weight: 900;
  text-align: center;
}

.ea-product-card__qty input {
  border-inline: 1px solid var(--ea-line);
}

.ea-product-card__split-buy {
  flex: 1;
}

.ea-product-card__button {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--ea-red);
  border-radius: 999px;
  background: var(--ea-red);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.ea-product-card__button:hover {
  background: var(--ea-red-dark);
  border-color: var(--ea-red-dark);
}

.ea-product-card__support-link {
  color: var(--ea-red-dark);
}

.ea-product-card__stock-note {
  display: block;
  margin-top: 10px;
  color: var(--ea-success);
  font-size: 12px;
  font-weight: 900;
}

.ea-home-gallery {
  background: var(--ea-paper);
  border-block: 1px solid var(--ea-line);
}

.ea-home-gallery__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ea-home-gallery__item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--ea-panel);
  border: 1px solid var(--ea-line);
  border-radius: var(--ea-radius);
}

.ea-home-gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.ea-home-gallery__item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.ea-home-gallery__item figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--ea-line);
  border-radius: var(--ea-radius);
}

.ea-home-gallery__item span,
.ea-home-gallery__item strong {
  color: var(--ea-ink);
  font-size: 13px;
}

.ea-home-gallery__item span {
  color: var(--ea-tan-dark);
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
  text-transform: uppercase;
}

.ea-home-reviews {
  background: var(--ea-panel);
}

.ea-home-reviews__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ea-review-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.ea-review-card__head,
.ea-review-card__person,
.ea-review-card__reviewed-product,
.ea-review-card__foot {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ea-review-card__head,
.ea-review-card__foot {
  justify-content: space-between;
}

.ea-review-card__avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  background: var(--ea-paper);
  border: 1px solid var(--ea-line);
  border-radius: 50%;
  color: var(--ea-ink);
  font-weight: 900;
}

.ea-review-card__name {
  font-size: 18px;
}

.ea-review-card__meta,
.ea-review-card__product {
  color: var(--ea-muted);
  font-size: 11px;
  font-weight: 900;
}

.ea-review-card__stars {
  margin-top: 18px;
  color: var(--ea-tan-dark);
  letter-spacing: 2px;
}

.ea-review-card__quote {
  margin-top: 12px;
  font-size: 16px;
}

.ea-review-card__reviewed-product {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto auto;
  margin-top: auto;
  padding: 10px;
  background: var(--ea-bg);
  border: 1px solid var(--ea-line);
  border-radius: var(--ea-radius);
}

.ea-review-card__reviewed-product img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.ea-review-card__product-link {
  min-width: 0;
  color: var(--ea-ink);
  text-decoration: none;
}

.ea-review-card__product-link small,
.ea-review-card__product-link strong {
  display: block;
}

.ea-review-card__product-link small {
  color: var(--ea-muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.ea-review-card__product-link strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ea-review-card__reviewed-product em {
  color: var(--ea-ink);
  font-style: normal;
  font-weight: 900;
}

.ea-review-card__quick-add {
  padding: 8px 12px;
  border: 1px solid var(--ea-red);
  border-radius: 999px;
  background: var(--ea-red);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.ea-review-card__foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--ea-line);
}

.ea-review-card__verified {
  color: var(--ea-success);
  font-size: 11px;
  font-weight: 900;
}

.ea-review-card__rating {
  color: var(--ea-ink);
  font-size: 11px;
  font-weight: 900;
}

.ea-home-final {
  background: var(--ea-paper);
  border-top: 1px solid var(--ea-line);
}

.ea-home-final__panel {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.ea-home-final h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.ea-home-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ea-home-sticky-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: grid;
  gap: 10px;
}

.ea-home-sticky-actions__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 118px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--ea-line-strong, #141312);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(20, 19, 18, .18);
  font-weight: 900;
  text-decoration: none;
}

.ea-home-sticky-actions__button--cart {
  background: var(--ea-red, #dc2626);
  color: #fff;
  border-color: var(--ea-red, #dc2626);
}

.ea-home-sticky-actions__button--help {
  background: #fff;
  color: var(--ea-ink, #141312);
}

.ea-home-sticky-actions__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #fff;
  color: var(--ea-red, #dc2626);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .ea-home-hero__grid,
  .ea-home-section-head--split {
    grid-template-columns: 1fr;
  }

  .ea-home-hero__grid {
    min-height: 0;
  }

  .ea-home-hero__copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
    max-width: 760px;
  }

  .ea-home-hero__car {
    grid-column: 1 !important;
    grid-row: 2 !important;
    min-height: 0;
  }

  .ea-home-hero {
    background: #fffdf8;
  }

  .ea-home-build-paths__grid,
  .ea-home-featured__grid,
  .ea-home-v2 .ea-home-featured__grid.ea-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ea-home-gallery__grid,
  .ea-home-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ea-home__inner {
    width: min(100% - 24px, var(--ea-max));
  }

  .ea-home-v2 :where(.ea-home-hero, .ea-home-build-paths, .ea-home-featured, .ea-home-gallery, .ea-home-reviews, .ea-home-final) {
    padding-block: 42px;
  }

  .ea-home-hero__title {
    font-size: clamp(40px, 12vw, 52px);
  }

  .ea-home-hero__body,
  .ea-home-v2 :where(p, blockquote) {
    font-size: 16px;
  }

  .ea-home-hero__actions,
  .ea-home-final__actions,
  .ea-home-button {
    width: 100%;
  }

  .ea-home-hero__proof {
    grid-template-columns: 1fr !important;
  }

  .ea-home-button {
    justify-content: center;
  }

  .ea-home-build-paths__grid,
  .ea-home-gallery__grid,
  .ea-home-featured__grid,
  .ea-home-v2 .ea-home-featured__grid.ea-product-grid,
  .ea-home-reviews__grid {
    grid-template-columns: 1fr !important;
  }

  .ea-home-hero__ledger {
    grid-template-columns: 1fr;
    border-radius: var(--ea-radius);
  }

  .ea-home-hero__proof {
    border-radius: var(--ea-radius);
  }

  .ea-home-hero__proof div {
    border-right: 0;
    border-bottom: 1px solid var(--ea-line);
  }

  .ea-home-hero__proof div:last-child {
    border-bottom: 0;
  }

  .ea-home-gallery__item--large {
    grid-column: auto;
    grid-row: auto;
  }

  .ea-home-gallery__item {
    min-height: 320px;
  }

  .ea-product-card__buy {
    align-items: stretch;
  }

  .ea-product-card__qty {
    flex: 0 0 auto;
  }

  .ea-review-card__reviewed-product {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .ea-review-card__reviewed-product em,
  .ea-review-card__quick-add {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .ea-product-card__buy {
    flex-direction: column;
  }

  .ea-product-card__qty,
  .ea-product-card__split-buy {
    width: 100%;
  }

  .ea-home-build-card__actions {
    grid-template-columns: 1fr;
  }

  .ea-home-sticky-actions {
    right: 12px;
    bottom: 12px;
  }

  .ea-home-sticky-actions__button {
    min-width: 96px;
    min-height: 46px;
    padding-inline: 13px;
  }

  .ea-product-card__qty button,
  .ea-product-card__qty input {
    flex: 1 1 0;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ea-home-v2 *,
  .ea-home-v2 *::before,
  .ea-home-v2 *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Legacy homepage shield: this file loads alongside older homepage bundles. */
html body.home main.ea-home.ea-home-v2 {
  display: flex !important;
  flex-direction: column !important;
}

html body.home main.ea-home.ea-home-v2 > section {
  order: 0 !important;
}

body.home main.ea-home.ea-home-v2 > .ea-home-hero,
body.home main.ea-home > .ea-home-hero {
  order: 0 !important;
}

body.home main.ea-home.ea-home-v2 .ea-home-build-paths__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.home main.ea-home.ea-home-v2 .ea-home-build-card,
body.home main.ea-home.ea-home-v2 .ea-product-card,
body.home main.ea-home.ea-home-v2 .ea-review-card {
  background: #fff !important;
  border: 1px solid #e8dfd2 !important;
  border-radius: 8px !important;
  outline: 0 !important;
  box-shadow: 0 18px 48px rgba(20, 19, 18, .045) !important;
}

body.home main.ea-home.ea-home-v2 .ea-home-build-card::before,
body.home main.ea-home.ea-home-v2 .ea-home-build-card::after,
body.home main.ea-home.ea-home-v2 .ea-product-card::before,
body.home main.ea-home.ea-home-v2 .ea-product-card::after,
body.home main.ea-home.ea-home-v2 .ea-product-card__stock::before,
body.home main.ea-home.ea-home-v2 .ea-product-card__stock::after {
  content: none !important;
}

body.home main.ea-home.ea-home-v2 .ea-home-build-card__image,
body.home main.ea-home.ea-home-v2 .ea-product-card__visual {
  background: #fff7ea !important;
  border: 0 !important;
  border-bottom: 1px solid #e8dfd2 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

body.home main.ea-home.ea-home-v2 .ea-product-card__visual {
  min-height: 0 !important;
  height: auto !important;
  padding: 28px !important;
}

body.home main.ea-home.ea-home-v2 .ea-product-card__image {
  width: 88% !important;
  height: 88% !important;
  max-height: none !important;
  object-fit: contain !important;
  filter: none !important;
}

body.home main.ea-home.ea-home-v2 .ea-product-card__button,
body.home main.ea-home.ea-home-v2 .ea-home-build-card__add {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #fff !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

body.home main.ea-home.ea-home-v2 .ea-product-card__variation-button,
body.home main.ea-home.ea-home-v2 .ea-product-card__addon-item,
body.home main.ea-home.ea-home-v2 .ea-product-card__qty {
  border-color: #e8dfd2 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

@media (max-width: 1180px) {
  body.home main.ea-home.ea-home-v2 .ea-home-build-paths__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  body.home main.ea-home.ea-home-v2 .ea-home-build-paths__grid {
    grid-template-columns: 1fr !important;
  }
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__grid {
  display: grid !important;
  grid-template-columns: minmax(360px, .38fr) minmax(680px, .62fr) !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__copy {
  position: static !important;
  inset: auto !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: auto !important;
  transform: none !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__car {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-trust,
html body.home main.ea-home.ea-home-v2 .ea-home-fitment {
  display: none !important;
}

html body.home main.ea-home.ea-home-v2 .ea-product-card__qty button,
html body.home main.ea-home.ea-home-v2 .ea-product-card__qty input,
html body.home main.ea-home.ea-home-v2 .ea-product-card__variation-button,
html body.home main.ea-home.ea-home-v2 [data-ea-home-product-add],
html body.home main.ea-home.ea-home-v2 [data-ea-review-add] {
  min-height: 44px !important;
}

@media (max-width: 1180px) {
  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__grid {
    grid-template-columns: 1fr !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__car {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
}

/* Premium header + showroom hero final override.
   The theme header ships old inline widths, so these homepage-only rules must win. */
html body.home .ea-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9000 !important;
  isolation: isolate !important;
  background: #fffdf8 !important;
  border-bottom: 1px solid rgba(20, 19, 18, .12) !important;
  box-shadow: 0 18px 48px rgba(20, 19, 18, .075) !important;
}

html body.home .ea-header__announce {
  height: 38px !important;
  min-height: 38px !important;
  background:
    linear-gradient(90deg, rgba(220, 38, 38, .32), transparent 18%),
    #17110d !important;
  border-bottom: 1px solid rgba(255, 247, 234, .16) !important;
}

html body.home .ea-header__announce-inner,
html body.home .ea-header__inner.ea-header__announce-inner {
  width: min(1400px, calc(100% - 40px)) !important;
  height: 38px !important;
  min-height: 38px !important;
  margin-inline: auto !important;
  padding: 0 !important;
}

html body.home .ea-announce-strip {
  grid-template-columns: auto minmax(0, 1fr) auto auto auto !important;
  gap: 16px !important;
  height: 38px !important;
  min-height: 38px !important;
  color: #fff7ea !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .075em !important;
  text-transform: uppercase !important;
}

html body.home .ea-announce-strip__status {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

html body.home .ea-announce-strip__status::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #dc2626 !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .16) !important;
}

html body.home .ea-announce-strip__message {
  color: #f9ead3 !important;
  opacity: .92 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

html body.home .ea-announce-strip__pill {
  min-height: 25px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(255, 247, 234, .22) !important;
  background: rgba(255, 247, 234, .075) !important;
  color: #fff7ea !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04) !important;
}

html body.home .ea-announce-strip__close {
  border-radius: 999px !important;
}

html body.home .ea-header__frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 253, 248, .98)) !important;
  backdrop-filter: blur(16px) saturate(1.08) !important;
}

html body.home .ea-header__inner.ea-header__top {
  width: min(1400px, calc(100% - 40px)) !important;
  min-height: 84px !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: minmax(270px, .8fr) minmax(520px, 1.28fr) minmax(300px, .92fr) !important;
  align-items: center !important;
  gap: 22px !important;
  padding: 10px 0 !important;
}

html body.home .ea-header__brand {
  min-width: 0 !important;
  height: 62px !important;
  padding: 8px 12px 8px 8px !important;
  border: 1px solid rgba(20, 19, 18, .12) !important;
  border-radius: 999px !important;
  background: #fff !important;
  box-shadow: 0 12px 34px rgba(20, 19, 18, .06) !important;
  color: #141312 !important;
  text-decoration: none !important;
}

html body.home .ea-header__brand-mark {
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  border-radius: 999px !important;
  box-shadow: 0 0 0 1px rgba(20, 19, 18, .12) !important;
}

html body.home .ea-header__brand-name {
  color: #141312 !important;
  font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif !important;
  font-size: 22px !important;
  line-height: .96 !important;
  font-weight: 900 !important;
  letter-spacing: .015em !important;
  text-transform: uppercase !important;
}

html body.home .ea-header__brand-sub {
  margin-top: 3px !important;
  color: #756f65 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

html body.home .ea-header__nav {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  justify-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3px !important;
  padding: 6px !important;
  border: 1px solid rgba(20, 19, 18, .12) !important;
  border-radius: 999px !important;
  background: #fff7ea !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 12px 32px rgba(20, 19, 18, .045) !important;
}

html body.home .ea-header__nav a {
  min-height: 40px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  color: #322f2a !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: .02em !important;
  text-decoration: none !important;
  transition: background-color .18s ease, color .18s ease, transform .18s ease !important;
}

html body.home .ea-header__nav a:hover,
html body.home .ea-header__nav a:focus-visible {
  background: #141312 !important;
  color: #fff7ea !important;
  transform: translateY(-1px) !important;
}

html body.home .ea-header__utilities {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
}

html body.home .ea-language-switcher__button,
html body.home .ea-header__action,
html body.home .ea-header__cart,
html body.home .ea-header__action--login {
  min-height: 46px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(20, 19, 18, .13) !important;
  background: #fff !important;
  color: #141312 !important;
  box-shadow: 0 12px 30px rgba(20, 19, 18, .045) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  text-decoration: none !important;
}

html body.home .ea-language-switcher__button {
  min-width: 94px !important;
  padding: 6px 12px !important;
}

html body.home .ea-language-switcher__eyebrow {
  color: #a16207 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace !important;
  font-size: 9px !important;
  letter-spacing: .09em !important;
}

html body.home .ea-header__cart {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #fff !important;
  padding-inline: 14px !important;
}

html body.home .ea-header__cart svg,
html body.home .ea-header__cart path {
  stroke: currentColor !important;
}

html body.home .ea-header__count {
  min-width: 22px !important;
  height: 22px !important;
  background: #fff !important;
  color: #dc2626 !important;
  border-radius: 999px !important;
  font-weight: 950 !important;
}

html body.home .ea-header__cart-total {
  color: #fff !important;
  opacity: .92 !important;
}

html body.home .ea-header__action--login {
  padding-inline: 15px !important;
  background: #fff7ea !important;
}

html body.home .ea-header__toggle {
  width: 48px !important;
  height: 48px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(20, 19, 18, .13) !important;
  background: #fff !important;
  box-shadow: 0 12px 30px rgba(20, 19, 18, .055) !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero {
  min-height: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, #fffdf8 0 39%, #fff7ea 39% 100%) !important;
  border-bottom: 1px solid #e8dfd2 !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero::before {
  opacity: .65 !important;
  background:
    linear-gradient(90deg, rgba(20,19,18,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20,19,18,.045) 1px, transparent 1px) !important;
  background-size: 80px 80px !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero::after {
  opacity: .32 !important;
  background:
    radial-gradient(circle at 78% 54%, rgba(220, 38, 38, .12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,247,234,.2)) !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__grid {
  width: min(1400px, calc(100% - 60px)) !important;
  min-height: min(690px, calc(100dvh - 122px)) !important;
  display: grid !important;
  grid-template-columns: minmax(360px, .37fr) minmax(700px, .63fr) !important;
  gap: clamp(36px, 5vw, 74px) !important;
  align-items: center !important;
  padding-block: clamp(38px, 5vw, 68px) !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__copy {
  max-width: 540px !important;
  padding: 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home__eyebrow {
  color: #a16207 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .12em !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__title {
  max-width: 560px !important;
  color: #141312 !important;
  font-size: clamp(46px, 4.25vw, 64px) !important;
  line-height: .96 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
  text-transform: none !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__body {
  max-width: 500px !important;
  color: #322f2a !important;
  font-size: 18px !important;
  line-height: 1.58 !important;
  font-style: normal !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-button {
  min-height: 50px !important;
  border-radius: 999px !important;
  padding-inline: 22px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  box-shadow: none !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-button--primary {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #fff !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-button--secondary {
  background: #fff !important;
  border-color: #c9a368 !important;
  color: #141312 !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__proof {
  max-width: 545px !important;
  margin-top: 24px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  background: rgba(255, 255, 255, .78) !important;
  border: 1px solid rgba(20, 19, 18, .13) !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 40px rgba(20, 19, 18, .055) !important;
  overflow: hidden !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__proof div {
  min-height: 70px !important;
  padding: 15px 16px !important;
  background: transparent !important;
  border-right: 1px solid rgba(20,19,18,.1) !important;
  border-bottom: 1px solid rgba(20,19,18,.1) !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__proof dt {
  color: #a16207 !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__proof dd {
  color: #141312 !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__car {
  min-height: clamp(500px, 43vw, 630px) !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  position: relative !important;
  z-index: 1 !important;
  overflow: hidden !important;
  border: 1px solid rgba(20, 19, 18, .14) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, #fff 0%, #fff7ea 100%) !important;
  box-shadow:
    0 34px 86px rgba(20, 19, 18, .16),
    inset 0 0 0 1px rgba(255,255,255,.8) !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__car::before {
  opacity: .65 !important;
  background:
    linear-gradient(90deg, rgba(20, 19, 18, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 19, 18, .04) 1px, transparent 1px) !important;
  background-size: 72px 72px !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__car picture {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__car img {
  width: min(94%, 820px) !important;
  max-width: 94% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: 1 !important;
  filter: saturate(1.14) contrast(1.08) brightness(1.01) drop-shadow(0 28px 32px rgba(20,19,18,.24)) !important;
  mix-blend-mode: normal !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__ledger {
  right: 18px !important;
  bottom: 18px !important;
  left: 18px !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 10px !important;
  background: rgba(255, 253, 248, .86) !important;
  border: 1px solid rgba(20, 19, 18, .13) !important;
  border-radius: 999px !important;
  padding: 9px 12px !important;
  color: #322f2a !important;
  box-shadow: 0 16px 36px rgba(20, 19, 18, .08) !important;
}

@media (max-width: 1240px) {
  html body.home .ea-header__inner.ea-header__top {
    grid-template-columns: minmax(250px, auto) 1fr auto !important;
    gap: 14px !important;
  }

  html body.home .ea-header__nav {
    display: none !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__grid {
    width: min(1120px, calc(100% - 42px)) !important;
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__car {
    grid-column: 1 !important;
    grid-row: 2 !important;
    min-height: clamp(380px, 52vw, 560px) !important;
  }
}

@media (max-width: 720px) {
  html body.home .ea-header__announce-inner,
  html body.home .ea-header__inner.ea-header__announce-inner,
  html body.home .ea-header__inner.ea-header__top {
    width: min(100% - 24px, 680px) !important;
  }

  html body.home .ea-announce-strip {
    grid-template-columns: auto 1fr auto !important;
    gap: 10px !important;
  }

  html body.home .ea-announce-strip__message,
  html body.home .ea-announce-strip__pill--hbl {
    display: none !important;
  }

  html body.home .ea-header__inner.ea-header__top {
    min-height: 72px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    padding-block: 8px !important;
  }

  html body.home .ea-header__brand {
    height: 54px !important;
    padding-right: 10px !important;
  }

  html body.home .ea-header__brand-mark {
    width: 40px !important;
    height: 40px !important;
    flex-basis: 40px !important;
  }

  html body.home .ea-header__brand-name {
    font-size: 18px !important;
  }

  html body.home .ea-header__utilities {
    gap: 6px !important;
  }

  html body.home .ea-language-switcher,
  html body.home .ea-header__action--login,
  html body.home .ea-header__cart-total {
    display: none !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__grid {
    width: min(100% - 24px, 680px) !important;
    padding-block: 30px 36px !important;
    gap: 28px !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__title {
    font-size: clamp(40px, 12vw, 52px) !important;
    line-height: .94 !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__body {
    font-size: 16px !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__actions {
    grid-template-columns: 1fr !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__proof {
    grid-template-columns: 1fr !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__car {
    min-height: 330px !important;
    border-radius: 14px !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__car img {
    width: 116% !important;
    max-width: 116% !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__ledger {
    display: none !important;
  }
}

/* ea-showroom-editorial-v3: premium reset after visual review */
html body.home .ea-header {
  box-shadow: 0 10px 34px rgba(20, 19, 18, .07) !important;
}

html body.home .ea-header__announce {
  height: 32px !important;
  min-height: 32px !important;
  background: #17130f !important;
}

html body.home .ea-header__announce-inner,
html body.home .ea-header__inner.ea-header__announce-inner,
html body.home .ea-announce-strip {
  height: 32px !important;
  min-height: 32px !important;
}

html body.home .ea-header__inner.ea-header__top {
  min-height: 74px !important;
  padding: 7px 0 !important;
}

html body.home .ea-header__brand {
  height: 56px !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

html body.home .ea-header__brand-mark {
  width: 40px !important;
  height: 40px !important;
  flex-basis: 40px !important;
}

html body.home .ea-header__brand-name {
  font-size: 19px !important;
  letter-spacing: .02em !important;
}

html body.home .ea-header__nav {
  box-shadow: none !important;
  background: #fff9ee !important;
}

html body.home .ea-header__nav a {
  min-height: 38px !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero,
html body.home main.ea-home .ea-home-hero {
  background:
    linear-gradient(90deg, #fffdf8 0, #fffdf8 42%, #fff5e6 42%, #fff5e6 100%) !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__grid,
html body.home main.ea-home .ea-home-hero .ea-home-hero__grid {
  width: min(1400px, calc(100% - 56px)) !important;
  min-height: min(646px, calc(100dvh - 106px)) !important;
  grid-template-columns: minmax(390px, .4fr) minmax(620px, .6fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  padding-block: clamp(34px, 4.6vw, 58px) !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__copy,
html body.home main.ea-home .ea-home-hero .ea-home-hero__copy {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  max-width: 560px !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home__eyebrow,
html body.home main.ea-home .ea-home-hero .ea-home__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #9f1d1d !important;
  font-size: 12px !important;
  letter-spacing: .16em !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home__eyebrow::before,
html body.home main.ea-home .ea-home-hero .ea-home__eyebrow::before {
  content: "" !important;
  width: 34px !important;
  height: 2px !important;
  background: #dc2626 !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__title,
html body.home main.ea-home .ea-home-hero .ea-home-hero__title {
  max-width: 555px !important;
  margin-top: 18px !important;
  color: #17130f !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(52px, 5.25vw, 76px) !important;
  font-weight: 700 !important;
  line-height: .96 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__body,
html body.home main.ea-home .ea-home-hero .ea-home-hero__body {
  max-width: 520px !important;
  margin-top: 22px !important;
  color: #3b342b !important;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 18px !important;
  line-height: 1.62 !important;
  border-left: 2px solid #c9a368 !important;
  padding-left: 20px !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__actions,
html body.home main.ea-home .ea-home-hero .ea-home-hero__actions {
  margin-top: 26px !important;
  gap: 12px !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-button,
html body.home main.ea-home .ea-home-hero .ea-home-button {
  min-height: 48px !important;
  padding-inline: 22px !important;
  border-radius: 10px !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-button--secondary,
html body.home main.ea-home .ea-home-hero .ea-home-button--secondary {
  background: transparent !important;
  border-color: rgba(20, 19, 18, .28) !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__proof,
html body.home main.ea-home .ea-home-hero .ea-home-hero__proof {
  max-width: 540px !important;
  margin-top: 30px !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  background: #fff !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__proof div,
html body.home main.ea-home .ea-home-hero .ea-home-hero__proof div {
  min-height: 64px !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__car,
html body.home main.ea-home .ea-home-hero .ea-home-hero__car {
  min-height: clamp(500px, 40vw, 590px) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 50% 82%, rgba(20, 19, 18, .11), transparent 34%),
    linear-gradient(180deg, #fff 0, #fff9ee 100%) !important;
  box-shadow: 0 24px 64px rgba(20, 19, 18, .13), inset 0 0 0 1px rgba(255,255,255,.8) !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__car::before,
html body.home main.ea-home .ea-home-hero .ea-home-hero__car::before {
  opacity: .08 !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__car img,
html body.home main.ea-home .ea-home-hero .ea-home-hero__car img {
  width: min(88%, 760px) !important;
  max-width: 88% !important;
  filter: saturate(1.12) contrast(1.07) brightness(1.02) drop-shadow(0 22px 28px rgba(20,19,18,.2)) !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__ledger,
html body.home main.ea-home .ea-home-hero .ea-home-hero__ledger {
  max-width: 76% !important;
  margin-inline: auto !important;
  background: #fffdf8 !important;
  box-shadow: none !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-build-paths,
html body.home main.ea-home .ea-home-build-paths {
  padding-top: clamp(54px, 7vw, 86px) !important;
  background: #fff !important;
}

html body.home main.ea-home.ea-home-v2 .ea-home-build-paths h2,
html body.home main.ea-home .ea-home-build-paths h2 {
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(36px, 4vw, 58px) !important;
  line-height: 1.02 !important;
  text-transform: none !important;
}

@media (max-width: 1240px) {
  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__grid,
  html body.home main.ea-home .ea-home-hero .ea-home-hero__grid {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }
}

@media (max-width: 720px) {
  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__title,
  html body.home main.ea-home .ea-home-hero .ea-home-hero__title {
    font-size: clamp(42px, 12vw, 52px) !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__body,
  html body.home main.ea-home .ea-home-hero .ea-home-hero__body {
    padding-left: 14px !important;
  }

  html body.home main.ea-home.ea-home-v2 .ea-home-hero .ea-home-hero__car,
  html body.home main.ea-home .ea-home-hero .ea-home-hero__car {
    min-height: 320px !important;
  }
}
