.bxvc,
.bxvc * {
  box-sizing: border-box;
}

.bxvc {
  --bxvc-bg: #eef1f6;
  --bxvc-ink: #090b0f;
  --bxvc-muted: #5f6672;
  --bxvc-card: rgba(255,255,255,.86);
  --bxvc-card-border: rgba(255,255,255,.72);
  --bxvc-shadow: 0 22px 60px rgba(22, 28, 42, .14);
  --bxvc-radius: 28px;
  --bxvc-accent: #e8323a;
  --bxvc-soft-line: rgba(18, 24, 38, .12);
  position: relative;
  width: 100%;
  color: var(--bxvc-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.bxvc-shell {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1080px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.96), rgba(233,237,245,.94) 35%, rgba(220,225,235,.98) 80%),
    linear-gradient(120deg, #f6f8fb 0%, #dfe4ee 100%);
}

.bxvc-shell:before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 55%;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,.95), rgba(255,255,255,0) 68%);
  z-index: -1;
}

/* ── Topbar ─────────────────────────────────────────────────── */
.bxvc-topbar {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 36px 0;
  flex-shrink: 0;
}

.bxvc-product-heading h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 900;
  text-transform: uppercase;
}

.bxvc-product-heading p {
  margin: 8px 0 0;
  color: #303744;
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.bxvc-price-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 0;
  gap: 5px;
  text-align: right;
}

.bxvc-product-heading .bxvc-cta-row {
  justify-content: flex-start;
  margin-top: 16px;
}

.bxvc-product-heading .bxvc-model-switcher {
  align-items: flex-start;
  margin-top: 12px;
  width: auto;
}

.bxvc-product-heading .bxvc-model-select-wrap {
  width: 240px;
}

.bxvc-price {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .01em;
}

.bxvc-prices-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bxvc-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.bxvc-prices-link:hover {
  color: var(--bxvc-ink);
}

.bxvc-cta-row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 6px;
}

.bxvc-reset,
.bxvc-add {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}

.bxvc-reset {
  padding: 10px 16px;
  font-size: 13px;
  background: rgba(255,255,255,.9);
  color: #1d2430;
  box-shadow: inset 0 0 0 1px rgba(12,17,27,.10);
}

.bxvc-add {
  padding: 11px 20px;
  font-size: 13px;
  background: #0c111b;
  color: #fff;
  box-shadow: 0 14px 28px rgba(12,17,27,.18);
}

.bxvc-reset:hover,
.bxvc-add:hover {
  transform: translateY(-1px);
}

.bxvc-add:disabled,
.bxvc-reset:disabled {
  cursor: wait;
  opacity: .72;
}

.bxvc-view-cart {
  display: none;
  color: #10141d;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bxvc-view-cart.is-visible {
  display: inline-block;
}

/* ── Stage (vehicle image) ───────────────────────────────────── */
.bxvc-stage {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(18px, 4vw, 60px) 8px;
}

.bxvc-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bxvc-main-image {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: 100%;
  max-width: min(100%, 1300px);
  aspect-ratio: 1747 / 888;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(17, 24, 39, .16));
  transition: opacity .34s ease, transform .34s ease, filter .34s ease;
}

.bxvc-main-image.is-changing {
  opacity: 0;
  transform: scale(.985) translateY(4px);
  filter: drop-shadow(0 8px 12px rgba(17, 24, 39, .08));
}

.bxvc-ground-shadow {
  position: absolute;
  z-index: 1;
  left: 9%;
  right: 9%;
  bottom: 6%;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(104, 113, 128, .28);
  opacity: .9;
}

.bxvc-side-actions {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 3vw, 44px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bxvc-side-actions button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: #0d111a;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(30, 38, 55, .10), inset 0 0 0 1px rgba(12,17,27,.05);
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.bxvc-side-actions button:hover {
  transform: translateY(-2px);
  background: #fff;
  color: var(--bxvc-accent);
  box-shadow: 0 14px 34px rgba(30, 38, 55, .16), inset 0 0 0 1px rgba(12,17,27,.05);
}

.bxvc-side-actions button:active {
  transform: translateY(0);
}

.bxvc-side-actions button.is-saved {
  color: var(--bxvc-accent);
  box-shadow: 0 10px 30px rgba(30, 38, 55, .10), inset 0 0 0 2px var(--bxvc-accent);
}

.bxvc-stage-nav {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 34px rgba(26, 33, 48, .12);
}

.bxvc-stage-nav button {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #121723;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  font-family: inherit;
  padding: 0;
  transition: background .2s ease, color .2s ease;
}

.bxvc-stage-nav button:hover {
  background: rgba(18, 23, 35, .08);
  color: var(--bxvc-accent);
}

/* ── Options cards ───────────────────────────────────────────── */
.bxvc-options-wrap {
  position: relative;
  flex-shrink: 0;
}

.bxvc-options {
  position: relative;
  z-index: 7;
  display: flex;
  gap: 12px;
  padding: 0 36px 85px;
  flex-shrink: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bxvc-options::-webkit-scrollbar {
  display: none;
}

.bxvc-options-arrow {
  position: absolute;
  top: calc(50% - 42px);
  transform: translateY(-50%);
  z-index: 8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.92);
  color: #111722;
  box-shadow: 0 8px 20px rgba(16,22,35,.18);
  cursor: pointer;
  font-size: 17px;
}

.bxvc-options-arrow:hover {
  background: #fff;
  color: var(--bxvc-accent);
}

.bxvc-options-arrow--prev {
  left: 6px;
}

.bxvc-options-arrow--next {
  right: 6px;
}

.bxvc-card {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  scroll-snap-align: start;
  border: 1px solid var(--bxvc-card-border);
  border-radius: 20px;
  background: var(--bxvc-card);
  box-shadow: var(--bxvc-shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.bxvc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px 2px;
}

.bxvc-card h2 {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.bxvc-card-hint {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(18, 23, 34, .08);
  color: #6b7280;
  font-size: 9px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  vertical-align: middle;
}

.bxvc-card-arrow {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color: #111722;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  font-family: inherit;
  padding: 0;
  box-shadow: 0 8px 20px rgba(14, 20, 31, .10);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.bxvc-card-arrow:hover {
  background: #fff;
  color: var(--bxvc-accent);
  box-shadow: 0 10px 24px rgba(14, 20, 31, .16);
}

.bxvc-choice-track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.bxvc-choice-track::-webkit-scrollbar {
  display: none;
}

.bxvc-choice {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 60px;
  padding: 0;
  scroll-snap-align: center;
  color: #121722;
}

.bxvc-choice:focus-visible {
  outline: 3px solid rgba(13, 17, 26, .24);
  outline-offset: 6px;
  border-radius: 18px;
}

.bxvc-swatch,
.bxvc-thumb {
  position: relative;
  width: clamp(42px, 3.8vw, 60px);
  height: clamp(42px, 3.8vw, 60px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.bxvc-swatch {
  background: var(--bxvc-swatch);
  box-shadow: inset 0 0 0 1px rgba(12,17,27,.12), 0 8px 20px rgba(20, 27, 40, .08);
}

.bxvc-thumb {
  background: #eef1f6;
  box-shadow: inset 0 0 0 1px rgba(12,17,27,.08), 0 8px 20px rgba(20, 27, 40, .08);
}

.bxvc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bxvc-thumb span {
  font-size: 12px;
  font-weight: 900;
  color: #3b4351;
}

.bxvc-choice:hover .bxvc-swatch,
.bxvc-choice:hover .bxvc-thumb {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(12,17,27,.12), 0 0 0 3px rgba(12,17,27,.08), 0 12px 24px rgba(20, 27, 40, .12);
}

.bxvc-choice.is-selected .bxvc-swatch,
.bxvc-choice.is-selected .bxvc-thumb {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--bxvc-accent), 0 14px 28px rgba(20, 27, 40, .16);
}

.bxvc-choice.is-selected:hover .bxvc-swatch,
.bxvc-choice.is-selected:hover .bxvc-thumb {
  transform: translateY(-4px) scale(1.06);
}

/* Multi-select (accessories): a small checkmark badge on the thumbnail shows
   which ones are currently toggled on, since several can be active at once. */
.bxvc-choice-check {
  position: absolute;
  top: -2px;
  right: calc(50% - clamp(42px, 3.8vw, 60px) / 2 - 2px);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px var(--bxvc-accent), 0 4px 10px rgba(20, 27, 40, .2);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 1;
}

.bxvc-choice-check::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--bxvc-accent);
  border-bottom: 2px solid var(--bxvc-accent);
  transform: rotate(-45deg);
}

.bxvc-choice.is-multi.is-selected .bxvc-choice-check {
  opacity: 1;
  transform: scale(1);
}

.bxvc-choice-label,
.bxvc-choice-price {
  display: none;
  max-width: 90px;
  text-align: center;
  font-size: 10px;
  line-height: 1.2;
}

.bxvc-choice-price {
  color: var(--bxvc-muted);
  font-weight: 700;
}

.bxvc-card:hover .bxvc-choice-label,
.bxvc-card:hover .bxvc-choice-price,
.bxvc-choice:focus-visible .bxvc-choice-label,
.bxvc-choice:focus-visible .bxvc-choice-price,
.bxvc-choice.is-selected .bxvc-choice-label,
.bxvc-choice.is-selected .bxvc-choice-price {
  display: block;
}

/* ── Mobile bar ──────────────────────────────────────────────── */
.bxvc-mobile-bar {
  position: fixed;
  z-index: 999;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px 12px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 45px rgba(16, 22, 35, .24);
  backdrop-filter: blur(14px);
}

.bxvc-mobile-bar span {
  display: block;
  margin-bottom: 3px;
  color: var(--bxvc-muted);
  font-size: 12px;
  font-weight: 700;
}

.bxvc-mobile-bar strong {
  display: block;
  font-size: 20px;
  line-height: 1;
}

/* ── Toast ───────────────────────────────────────────────────── */
.bxvc-toast {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 48px));
  padding: 14px 16px;
  border-radius: 18px;
  background: #10141d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 18px 45px rgba(10, 13, 20, .28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.bxvc-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Layered composition mode ────────────────────────────────── */
.bxvc-layer-stage {
  position: relative;
  z-index: 2;
  display: none;
  width: auto;
  height: 100%;
  max-width: min(100%, 1300px);
  aspect-ratio: 1747 / 888;
  filter: drop-shadow(0 22px 28px rgba(17, 24, 39, .16));
  transition: opacity .34s ease, transform .34s ease, filter .34s ease;
}

.bxvc[data-render-mode="layered"] .bxvc-layer-stage {
  display: block;
}

.bxvc[data-render-mode="layered"] .bxvc-main-image {
  display: none;
}

.bxvc-layer-stage.is-changing {
  opacity: .08;
  transform: scale(.985) translateY(4px);
  filter: drop-shadow(0 8px 12px rgba(17, 24, 39, .08));
}

.bxvc-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.bxvc-layer-base { z-index: 1; }
.bxvc-layer-colors { z-index: 2; }
.bxvc-layer-wheels { z-index: 3; }
.bxvc-layer.is-empty { display: none; }

/* Accessories: a plain container holding any number of independent overlay
   images, one per currently-selected accessory. Each fades in on select and
   fades out on deselect without affecting any other layer. */
.bxvc-layer-accessories {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.bxvc-layer-accessory {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
}

.bxvc-layer-accessory.is-active {
  opacity: 1;
}

/* ── Model Switcher ──────────────────────────────────────────── */
.bxvc-model-switcher {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-top: 6px;
  width: 100%;
}

.bxvc-model-switcher.is-loaded {
  display: flex;
}

.bxvc-model-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bxvc-muted);
  user-select: none;
}

.bxvc-model-select-wrap {
  position: relative;
  width: 100%;
  max-width: 240px;
}

.bxvc-model-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(12, 17, 27, 0.12);
  border-radius: 999px;
  padding: 9px 40px 9px 16px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  color: var(--bxvc-ink);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(12, 17, 27, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}

.bxvc-model-select:hover {
  border-color: rgba(12, 17, 27, 0.22);
  box-shadow: 0 6px 18px rgba(12, 17, 27, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.bxvc-model-select:focus {
  border-color: var(--bxvc-accent);
  box-shadow: 0 0 0 3px rgba(232, 50, 58, 0.15), 0 6px 18px rgba(12, 17, 27, 0.10);
}

.bxvc-model-select:disabled {
  opacity: 0.55;
  cursor: wait;
}

.bxvc-model-select-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bxvc-muted);
  pointer-events: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.bxvc-model-select:focus ~ .bxvc-model-select-icon {
  color: var(--bxvc-accent);
  transform: translateY(-50%) rotate(180deg);
}

.bxvc-model-select-spinner {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(12, 17, 27, 0.15);
  border-top-color: var(--bxvc-accent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  animation: bxvc-spin 0.7s linear infinite;
}

.bxvc-model-select-spinner.is-active {
  opacity: 1;
}

@keyframes bxvc-spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

.bxvc-shell.bxvc-switching {
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.bxvc-shell {
  transition: opacity 0.28s ease;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .bxvc-topbar {
    padding: 16px 28px 0;
  }

  .bxvc-options {
    gap: 10px;
    padding: 0 28px 85px;
  }
}

@media (max-width: 980px) {
  .bxvc-shell {
    height: auto;
    max-height: none;
    min-height: auto;
    padding-bottom: 88px;
  }

  .bxvc-topbar {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 18px 0;
  }

  .bxvc-price-panel {
    align-items: flex-start;
    text-align: left;
  }

  .bxvc-cta-row {
    display: none;
  }

  .bxvc-stage {
    flex: none;
    min-height: 300px;
    height: 38vh;
    padding: 8px 18px 8px;
  }

  .bxvc-options {
    flex-direction: column;
    overflow-x: visible;
    padding-inline: 18px;
    padding-bottom: 18px;
  }

  .bxvc-card {
    flex: 1 1 auto;
    max-width: none;
    min-height: auto;
  }

  .bxvc-options-arrow {
    display: none;
  }

  .bxvc-card-head {
    padding-top: 12px;
  }

  .bxvc-choice-track {
    padding-bottom: 16px;
  }

  .bxvc-choice-label,
  .bxvc-choice-price {
    display: block;
  }

  .bxvc-side-actions {
    top: auto;
    bottom: 36px;
    right: 18px;
    flex-direction: row;
    gap: 10px;
    transform: none;
  }

  .bxvc-side-actions button {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .bxvc-mobile-bar {
    display: flex;
  }

  .bxvc-model-switcher {
    align-items: flex-start;
  }

  .bxvc-model-select-wrap {
    max-width: 100%;
  }

  .bxvc-toast {
    left: 18px;
    right: 18px;
    bottom: 92px;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .bxvc-product-heading h1 {
    font-size: clamp(28px, 11vw, 44px);
    letter-spacing: -.06em;
  }

  .bxvc-product-heading p {
    font-size: 11px;
  }

  .bxvc-topbar {
    padding: 16px 16px 0;
    gap: 12px;
  }

  .bxvc-price-panel {
    min-width: 0;
  }

  .bxvc-price {
    font-size: 20px;
  }

  .bxvc-stage {
    min-height: 220px;
    height: 32vh;
    padding: 4px 8px 6px;
  }

  .bxvc-ground-shadow {
    left: 4%;
    right: 4%;
    bottom: 10%;
    height: 36px;
  }

  .bxvc-stage-nav {
    bottom: 2px;
  }

  .bxvc-side-actions {
    bottom: 24px;
    gap: 8px;
  }

  .bxvc-side-actions button {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .bxvc-card {
    border-radius: 18px;
  }

  .bxvc-choice-track {
    gap: 10px;
    padding: 8px 14px 14px;
  }

  .bxvc-swatch,
  .bxvc-thumb {
    width: 46px;
    height: 46px;
  }

  .bxvc-model-select {
    font-size: 11px;
    padding: 8px 36px 8px 14px;
  }
}

/* ── Theme/page-builder isolation ────────────────────────────────
   Many WordPress themes and page builders (Elementor, Astra, etc.)
   apply a global accent color to every <button> on hover/focus/active
   via a plain `button:hover` style. Because that combines an element
   selector with a pseudo-class, it can outrank our own plain class
   selectors and silently recolor every button in the configurator.
   These rules pin every one of our buttons back to its own intended
   colors in every state, regardless of what the active theme does
   elsewhere on the site. */
.bxvc-choice,
.bxvc-choice:hover,
.bxvc-choice:focus,
.bxvc-choice:active,
.bxvc-choice:focus-visible {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.bxvc-card-arrow,
.bxvc-card-arrow:focus,
.bxvc-card-arrow:active {
  background: rgba(255,255,255,.85) !important;
  color: #111722 !important;
}

.bxvc-card-arrow:hover {
  background: #fff !important;
  color: var(--bxvc-accent) !important;
}

.bxvc-stage-nav button,
.bxvc-stage-nav button:focus,
.bxvc-stage-nav button:active {
  background: transparent !important;
  color: #121723 !important;
}

.bxvc-stage-nav button:hover {
  background: rgba(18, 23, 35, .08) !important;
  color: var(--bxvc-accent) !important;
}

.bxvc-side-actions button,
.bxvc-side-actions button:focus,
.bxvc-side-actions button:active {
  background: rgba(255,255,255,.96) !important;
  color: #0d111a !important;
}

.bxvc-side-actions button:hover {
  background: #fff !important;
  color: var(--bxvc-accent) !important;
}

.bxvc-side-actions button.is-saved {
  color: var(--bxvc-accent) !important;
}

.bxvc-reset,
.bxvc-reset:hover,
.bxvc-reset:focus,
.bxvc-reset:active {
  background: rgba(255,255,255,.9) !important;
  color: #1d2430 !important;
}

.bxvc-add,
.bxvc-add:hover,
.bxvc-add:focus,
.bxvc-add:active {
  background: #0c111b !important;
  color: #fff !important;
}

/* Hide the "+X.XX AED" add-on price shown under each individual choice
   (Colors/Wheels/Accessories thumbnails). The mobile sticky bar still shows
   a running total price even with this hidden. */
.bxvc-choice-price {
  display: none !important;
}