.new-hero-banner {
  background-color: rgba(0, 0, 0, 0.7) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-blend-mode: multiply;
}

.kitZoomModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: zoom-out;
}

.ic-product-0b489011 {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.ic-product-86ab638e {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.ic-product-d616b7d0 {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ic-product-ff9a3f78 {
  text-align: center;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  margin-top: .75rem;
  letter-spacing: .5px;
}


.ic-product-signup-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: .6rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: .6rem;
}




/* ── HERO WITH BANNER IMAGE (light/dark safe) ── */

.v2-hero.new-hero-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark scrim so text stays readable over ANY photo, in BOTH themes */
.v2-hero.new-hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .55),
      rgba(0, 0, 0, .35));
}

[data-theme="light"] .v2-page .v2-hero.new-hero-banner::after {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .62),
      rgba(0, 0, 0, .42));
}

/* Force text to stay light-on-image regardless of site theme */
.v2-hero.new-hero-banner .v2-hero-content h1,
.v2-hero.new-hero-banner .v2-hero-content p {
  color: #fff !important;
}

.v2-hero.new-hero-banner .v2-hero-content p {
  color: rgba(255, 255, 255, .82) !important;
}

.v2-hero.new-hero-banner .v2-hero-eyebrow {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}

/* keep content above scrim */
.v2-hero.new-hero-banner .v2-hero-content {
  position: relative;
  z-index: 2;
}


/* Quicklink pills — stay visible over banner image in BOTH themes */
.v2-hero.new-hero-banner .v2-hero-quicklinks {
  position: relative;
  z-index: 2;
}

.v2-hero.new-hero-banner .v2-quicklink {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.v2-hero.new-hero-banner .v2-quicklink i {
  color: #fff;
}

.v2-hero.new-hero-banner .v2-quicklink:hover {
  background: var(--mono-accent);
  border-color: var(--mono-accent);
  color: #fff;
}

.v2-hero.new-hero-banner .v2-quicklink:hover i {
  color: #fff;
}


/* ── PRICE BOX (final) ── */

.v2-price-box {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-top: .6rem;
  min-width: 0;
}

.v2-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 8px;
  row-gap: 4px;
  padding: .5rem .65rem;
  border-radius: 8px;
  border: 1px solid var(--border, #e5e5e5);
  border-left: 3px solid var(--border, #e5e5e5);
  background: var(--card, #fafafa);
  min-width: 0;
  position: relative;
}

.v2-price-label {
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--text3, #9a9a9f);
  white-space: nowrap;
  /* no more ellipsis truncation — was cutting "Detailer Price" to "DETAI..." */
}

.v2-price-value {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text, #111);
  white-space: nowrap;
  flex-shrink: 0;
}

/* MRP row — plain, struck-through */
.v2-price-mrp {
  border-left-color: var(--border, #e5e5e5);
}

.v2-price-mrp .v2-price-value {
  /* text-decoration: line-through; */
  color: red;
  font-weight: 500;
}

/* Detailer row — blue accent (reference design) */
.v2-price-row.v2-price-detailer {
  border-color: #cfd9ff;
  border-left-color: #868fbd;
  background: rgba(79, 107, 255, .06);
}

.v2-price-row.v2-price-detailer .v2-price-label,
.v2-price-row.v2-price-detailer .v2-price-value {
  color: #4f6bff;
}

/* Distributor / "Your Price" row — red accent, highlighted */
.v2-price-row.v2-price-yours {
  border-color: var(--accent, #e81c1c);
  border-left-color: var(--accent, #e81c1c);
  background: rgba(232, 28, 28, .05);
}

.v2-price-row.v2-price-yours .v2-price-label {
  color: var(--accent, #e81c1c);
  font-weight: 700;
}

.v2-price-row.v2-price-yours .v2-price-value {
  color: var(--accent, #e81c1c);
  font-size: .95rem;
}

/* small "Your Price" badge — stacked ABOVE the row, never cut off */
.v2-price-row.v2-price-yours::before {
  content: 'Your Price';
  position: absolute;
  top: -9px;
  right: 10px;
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: #fff;
  background: var(--accent, #e81c1c);
  padding: .15rem .45rem;
  border-radius: 999px;
}

/* % OFF pill */
.v2-price-off {
  background: #fdecec;
  color: #e0261f;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  margin-left: auto;
  width: 100%;
  text-align: center;
}

.v2-price-row.v2-price-detailer .v2-price-off {
  background: #e8ecff;
  color: #4f6bff;
}

/* "Save ₹X (Y%) vs MRP" line */
.v2-price-save {
  font-size: .75rem;
  font-weight: 600;
  color: #1a9e4a;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: -.15rem;
}

.v2-price-save i {
  font-size: .75rem;
}

/* GST note */
.v2-price-gst-note {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
  font-style: italic;
}

/* Slightly reduce label/value size pressure on small cards */
@media (max-width: 480px) {
  .v2-price-row {
    font-size: 12px;
  }

  .v2-price-value {
    font-size: 13px !important;
  }

  .v2-price-row.v2-price-yours .v2-price-value {
    font-size: 14px !important;
  }
}















/* =========================================================
   KIT PRICING CARD CSS
   (MRP / Detailer / Distributor tiered price box
   + Qty selector + Add to Cart row)
   ========================================================= */

/* ── PRICE BOX WRAPPER ── */
.v2-price-box {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-top: .6rem;
  min-width: 0;
}

/* ── BASE PRICE ROW ── */
.v2-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 8px;
  row-gap: 4px;
  padding: .5rem .65rem;
  border-radius: 8px;
  border: 1px solid var(--border, #e5e5e5);
  border-left: 3px solid var(--border, #e5e5e5);
  background: var(--card, #fafafa);
  min-width: 0;
  position: relative;
}

.v2-price-label {
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--text3, #9a9a9f);
  white-space: nowrap;
}

.v2-price-value {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text, #111);
  white-space: nowrap;
  flex-shrink: 0;
}

/* MRP row — plain */
.v2-price-mrp {
  border-left-color: var(--border, #e5e5e5);
}

.v2-price-mrp .v2-price-value {
  color: red;
  font-weight: 500;
}

/* Detailer row — blue accent */
.v2-price-row.v2-price-detailer {
  border-color: #cfd9ff;
  border-left-color: #868fbd;
  background: rgba(79, 107, 255, .06);
}

.v2-price-row.v2-price-detailer .v2-price-label,
.v2-price-row.v2-price-detailer .v2-price-value {
  color: #4f6bff;
}

/* Distributor / "Your Price" row — red accent, highlighted */
.v2-price-row.v2-price-yours {
  border-color: var(--accent, #e81c1c);
  border-left-color: var(--accent, #e81c1c);
  background: rgba(232, 28, 28, .05);
}

.v2-price-row.v2-price-yours .v2-price-label {
  color: var(--accent, #e81c1c);
  font-weight: 700;
}

.v2-price-row.v2-price-yours .v2-price-value {
  color: var(--accent, #e81c1c);
  font-size: .95rem;
}

/* "Your Price" badge — stacked above the row */
.v2-price-row.v2-price-yours::before {
  content: 'Your Price';
  position: absolute;
  top: -9px;
  right: 10px;
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: #fff;
  background: var(--accent, #e81c1c);
  padding: .15rem .45rem;
  border-radius: 999px;
}

/* % OFF pill */
.v2-price-off {
  background: #fdecec;
  color: #e0261f;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  margin-left: auto;
  width: 100%;
  text-align: center;
}

.v2-price-row.v2-price-detailer .v2-price-off {
  background: #e8ecff;
  color: #4f6bff;
}

/* "Save ₹X (Y%) vs MRP" line */
.v2-price-save {
  font-size: .75rem;
  font-weight: 600;
  color: #1a9e4a;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: -.15rem;
}

.v2-price-save i {
  font-size: .75rem;
}

/* GST note */
.v2-price-gst-note {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
  font-style: italic;
}

/* ── QTY SELECTOR + ADD TO CART ROW ── */
.final-add-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #444;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.qty-selector button {
  background: var(--card);
  color: var(--text);
  border: none;
  width: 30px;
  height: 34px;
  cursor: pointer;
  font-size: 16px;
}

.qty-selector button:hover {
  background: #e02020;
  color: #fff;
}

.qty-selector input {
  width: 40px;
  text-align: center;
  border: none;
  background: var(--card);
  color: var(--text);
  height: 34px;
  -moz-appearance: textfield;
}

.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.final-add-row .ic-product-signup-btn,
.final-add-row button.add-btn {
  flex: 1;
  background: #e02020;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0 10px;
  height: 34px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease;
}

.final-add-row .add-btn:hover {
  background: #b81717;
}

/* ── Standalone signup/dealer buttons (guest state) ── */
.ic-product-signup-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: .6rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: .6rem;
}

/* Slightly reduce label/value size pressure on small cards */
@media (max-width: 480px) {
  .v2-price-row {
    font-size: 12px;
  }

  .v2-price-value {
    font-size: 13px !important;
  }

  .v2-price-row.v2-price-yours .v2-price-value {
    font-size: 14px !important;
  }
}

.v2-brand-count {
  color: #e81c1c !important;
  background: rgba(232, 28, 28, .08);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}