@charset "UTF-8";
.pay,
.pay *,
.pay *::before,
.pay *::after {
  box-sizing: border-box;
}

.pay {
  --space-10: 0.625rem;
  --space-11: 0.6875rem;
  --space-12: 0.75rem;
  --space-13: 0.8125rem;
  --space-14: 0.875rem;
  --space-15: 0.9375rem;
  --space-16: 1rem;
  --space-18: 1.125rem;
  --space-24: 1.5rem;
}
.pay .container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 15px;
}

/* ══════════════════════════════════════════════════════
   Payment Page — Modern Redesign
══════════════════════════════════════════════════════ */
/* ── Hero ──────────────────────────────────────────── */
.pay {
  padding: 32px 0 60px;
  background: #f7f6fc;
  min-height: calc(100vh - 300px);
}

.pay__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #0f0b48 0%, #372ced 100%);
  border-radius: 20px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.pay__hero::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.pay__title {
  font-size: var(--space-24);
  font-weight: 800;
  margin: 0 0 6px;
}

.pay__subtitle {
  font-size: var(--space-14);
  font-weight: 500;
  opacity: 0.75;
  margin: 0;
}

.pay__hero-badges {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.pay__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  font-size: var(--space-12);
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.pay__badge svg {
  flex-shrink: 0;
  opacity: 0.8;
}

/* ── Quick-pick chips (under the banner) ───────────────
   Mirrors the header .mh__chips look (gradient tone pills)
   but works everywhere and acts as buttons: a click fills
   the "type" field via [data-ct] → [data-ct-target] (JS). */
.pay__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -14px 0 24px;
}

.pay__chip {
  --ch1: #a855f7;
  --ch2: #7c3aed;
  --ch-rgb: 139, 92, 246;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  font-family: inherit;
  font-size: var(--space-12);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--ch1), var(--ch2));
  border: none;
  border-radius: 20px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 5px 14px -5px rgba(var(--ch-rgb), 0.5);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  /* clicked/selected state (JS toggles .is-active) */
}
.pay__chip svg {
  opacity: 0.95;
  flex-shrink: 0;
}
.pay__chip[data-tone=violet] {
  --ch1: #a855f7;
  --ch2: #7c3aed;
  --ch-rgb: 139, 92, 246;
}
.pay__chip[data-tone=orange] {
  --ch1: #fb923c;
  --ch2: #ea580c;
  --ch-rgb: 251, 146, 60;
}
.pay__chip[data-tone=rose] {
  --ch1: #fb7185;
  --ch2: #e11d48;
  --ch-rgb: 244, 63, 94;
}
.pay__chip[data-tone=emerald] {
  --ch1: #34d399;
  --ch2: #059669;
  --ch-rgb: 16, 185, 129;
}
.pay__chip[data-tone=sky] {
  --ch1: #38bdf8;
  --ch2: #0284c7;
  --ch-rgb: 14, 165, 233;
}
.pay__chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(var(--ch-rgb), 0.65);
  filter: brightness(1.04);
}
.pay__chip:active {
  transform: scale(0.96);
}
.pay__chip.is-active {
  box-shadow: 0 0 0 3px rgba(var(--ch-rgb), 0.35), 0 5px 14px -5px rgba(var(--ch-rgb), 0.5);
}

/* ── Grid: Form + Sidebar ──────────────────────────── */
.pay__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

.pay__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Cards ─────────────────────────────────────────── */
.pay__card {
  background: #fff;
  border: 1px solid rgba(15, 11, 72, 0.08);
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(15, 11, 72, 0.04);
}

.pay__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.pay__card-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #5b52f0, #908af5);
  color: #fff;
  font-size: var(--space-14);
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(91, 82, 240, 0.2);
}

.pay__card-title {
  font-size: var(--space-16);
  font-weight: 700;
  color: #0f0b48;
  margin: 0;
}
.pay__card-title small {
  font-size: var(--space-12);
  font-weight: 500;
  color: rgba(15, 11, 72, 0.4);
}

/* ── Currency Selector ─────────────────────────────── */
.pay__currencies {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.pay__cur {
  cursor: pointer;
}
.pay__cur input {
  display: none;
}
.pay__cur-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 14px;
  background: rgba(15, 11, 72, 0.04);
  border: 1.5px solid rgba(15, 11, 72, 0.1);
  font-size: var(--space-14);
  font-weight: 600;
  color: #0f0b48;
  transition: all 0.22s ease;
  user-select: none;
}
.pay__cur-flag {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
}
.pay__cur input:checked + .pay__cur-pill {
  background: #5b52f0;
  border-color: #5b52f0;
  color: #fff;
  box-shadow: 0 4px 16px rgba(91, 82, 240, 0.3);
}
.pay__cur:hover .pay__cur-pill {
  border-color: rgba(91, 82, 240, 0.3);
}

/* ── Form Fields ───────────────────────────────────── */
.pay__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.pay__row:last-child {
  margin-bottom: 0;
}

.pay__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pay__field--full {
  grid-column: 1/-1;
}

.pay__label {
  font-size: var(--space-13);
  font-weight: 600;
  color: rgba(15, 11, 72, 0.65);
}

.pay__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.pay__input,
.pay__select,
.pay__textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid rgba(15, 11, 72, 0.1);
  border-radius: 14px;
  background: rgba(15, 11, 72, 0.025);
  font-size: var(--space-14);
  font-weight: 500;
  color: #0f0b48;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.pay__input::placeholder,
.pay__select::placeholder,
.pay__textarea::placeholder {
  color: rgba(15, 11, 72, 0.3);
}
.pay__input:focus,
.pay__select:focus,
.pay__textarea:focus {
  border-color: rgba(91, 82, 240, 0.45);
  box-shadow: 0 0 0 3px rgba(91, 82, 240, 0.08);
  background: #fff;
}

.pay__textarea {
  height: auto;
  padding: 14px 16px;
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
  line-height: 1.6;
}

.pay__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230f0b48' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
  cursor: pointer;
}

.pay__input-suffix {
  position: absolute;
  left: 14px;
  font-size: var(--space-12);
  font-weight: 600;
  color: rgba(15, 11, 72, 0.35);
  pointer-events: none;
}

.pay__input-wrap .pay__input {
  padding-left: 50px;
}

/* ── File Upload ───────────────────────────────────── */
.pay__dropzone input {
  display: none;
}

.pay__dropzone-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 120px;
  padding: 24px;
  border: 2px dashed rgba(91, 82, 240, 0.25);
  border-radius: 16px;
  background: rgba(91, 82, 240, 0.03);
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: center;
}
.pay__dropzone-label svg {
  color: #5b52f0;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.pay__dropzone-label:hover {
  border-color: rgba(91, 82, 240, 0.45);
  background: rgba(91, 82, 240, 0.06);
}
.pay__dropzone-label:hover svg {
  opacity: 0.8;
}

.pay__dropzone-text {
  font-size: var(--space-14);
  font-weight: 600;
  color: #0f0b48;
}

.pay__dropzone-hint {
  font-size: var(--space-12);
  color: rgba(15, 11, 72, 0.4);
}

/* ── Sidebar: Summary ──────────────────────────────── */
.pay__sidebar {
  position: sticky;
  top: 24px;
}

.pay__summary {
  background: #fff;
  border: 1px solid rgba(15, 11, 72, 0.08);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(15, 11, 72, 0.04);
}

.pay__summary-title {
  font-size: var(--space-16);
  font-weight: 700;
  color: #0f0b48;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 11, 72, 0.07);
}

.pay__summary-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(15, 11, 72, 0.1);
}

.pay__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--space-14);
  font-weight: 500;
  color: rgba(15, 11, 72, 0.6);
}

.pay__summary-val {
  font-weight: 700;
  color: #0f0b48;
}
.pay__summary-val ins {
  text-decoration: none;
}
.pay__summary-val small {
  font-size: var(--space-11);
  font-weight: 500;
  opacity: 0.6;
  margin-right: 3px;
}

.pay__summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(91, 82, 240, 0.08) 0%, rgba(91, 82, 240, 0.04) 100%);
  border-radius: 12px;
  font-size: var(--space-14);
  font-weight: 700;
  color: #0f0b48;
}

.pay__summary-price {
  font-size: var(--space-18);
  font-weight: 800;
  color: #5b52f0;
}
.pay__summary-price ins {
  text-decoration: none;
}
.pay__summary-price small {
  font-size: var(--space-12);
  font-weight: 600;
  opacity: 0.6;
  margin-right: 3px;
}

.pay__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  background: linear-gradient(120deg, #00b389 0%, #00d4a0 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: var(--space-16);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 18px rgba(0, 179, 137, 0.3);
  margin-bottom: 14px;
}
.pay__submit svg {
  flex-shrink: 0;
}
.pay__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 179, 137, 0.4);
}
.pay__submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 179, 137, 0.25);
}

.pay__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: var(--space-12);
  font-weight: 500;
  color: rgba(15, 11, 72, 0.4);
}
.pay__trust svg {
  color: #00b389;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   Dark Mode
══════════════════════════════════════════════════════ */
[data-theme=dark] .pay {
  background: #0e0c1e;
}
[data-theme=dark] .pay__hero {
  background: linear-gradient(135deg, #140e5e 0%, #5b52f0 100%);
}
[data-theme=dark] .pay__card {
  background: #161430;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
[data-theme=dark] .pay__card-title {
  color: #e4e1ff;
}
[data-theme=dark] .pay__card-title small {
  color: rgba(255, 255, 255, 0.3);
}
[data-theme=dark] .pay__label {
  color: rgba(255, 255, 255, 0.45);
}
[data-theme=dark] .pay__input,
[data-theme=dark] .pay__select,
[data-theme=dark] .pay__textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #e4e1ff;
}
[data-theme=dark] .pay__input::placeholder,
[data-theme=dark] .pay__select::placeholder,
[data-theme=dark] .pay__textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
[data-theme=dark] .pay__input:focus,
[data-theme=dark] .pay__select:focus,
[data-theme=dark] .pay__textarea:focus {
  border-color: rgba(91, 82, 240, 0.5);
  box-shadow: 0 0 0 3px rgba(91, 82, 240, 0.12);
  background: rgba(255, 255, 255, 0.08);
}
[data-theme=dark] .pay__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23e4e1ff' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
[data-theme=dark] .pay__input-suffix {
  color: rgba(255, 255, 255, 0.25);
}
[data-theme=dark] .pay__cur-pill {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}
[data-theme=dark] .pay__cur input:checked + .pay__cur-pill {
  background: #5b52f0;
  border-color: #5b52f0;
  color: #fff;
}
[data-theme=dark] .pay__dropzone-label {
  border-color: rgba(91, 82, 240, 0.2);
  background: rgba(91, 82, 240, 0.04);
}
[data-theme=dark] .pay__dropzone-label:hover {
  border-color: rgba(91, 82, 240, 0.4);
  background: rgba(91, 82, 240, 0.08);
}
[data-theme=dark] .pay__dropzone-text {
  color: #e4e1ff;
}
[data-theme=dark] .pay__dropzone-hint {
  color: rgba(255, 255, 255, 0.3);
}
[data-theme=dark] .pay__summary {
  background: #161430;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
[data-theme=dark] .pay__summary-title {
  color: #e4e1ff;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
[data-theme=dark] .pay__summary-row {
  color: rgba(255, 255, 255, 0.45);
}
[data-theme=dark] .pay__summary-val {
  color: #e4e1ff;
}
[data-theme=dark] .pay__summary-total {
  background: rgba(91, 82, 240, 0.1);
  color: #e4e1ff;
}
[data-theme=dark] .pay__summary-price {
  color: #9e98f6;
}
[data-theme=dark] .pay__trust {
  color: rgba(255, 255, 255, 0.3);
}

/* ══════════════════════════════════════════════════════
   Responsive
══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .pay__grid {
    grid-template-columns: 1fr;
  }
  .pay__sidebar {
    position: static;
  }
  .pay__hero {
    flex-direction: column;
    text-align: center;
  }
  .pay__hero-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .pay {
    padding: 16px 0 32px;
  }
  .pay__hero {
    padding: 18px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    gap: 14px;
  }
  .pay__title {
    font-size: var(--space-18);
    margin-bottom: 3px;
  }
  .pay__subtitle {
    font-size: var(--space-12);
  }
  .pay__hero-badges {
    width: 100%;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .pay__hero-badges::-webkit-scrollbar {
    display: none;
  }
  .pay__badge {
    flex-shrink: 0;
    padding: 6px 10px;
    font-size: var(--space-11);
    border-radius: 9px;
  }
  .pay__badge svg {
    width: 14px;
    height: 14px;
  }
  .pay__chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px;
    margin: -6px -14px 14px;
    padding: 2px 14px;
  }
  .pay__chips::-webkit-scrollbar {
    display: none;
  }
  .pay__chip {
    flex-shrink: 0;
    padding: 8px 13px;
    font-size: var(--space-11);
  }
  .pay__grid {
    gap: 14px;
  }
  .pay__main {
    gap: 14px;
  }
  .pay__card {
    padding: 14px;
    border-radius: 14px;
  }
  .pay__card-head {
    margin-bottom: 14px;
    gap: 10px;
  }
  .pay__card-step {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    font-size: var(--space-12);
  }
  .pay__card-title {
    font-size: var(--space-14);
  }
  .pay__card-title small {
    font-size: var(--space-11);
  }
  .pay__currencies {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px;
    margin: 0 -14px 14px;
    padding: 2px 14px;
  }
  .pay__currencies::-webkit-scrollbar {
    display: none;
  }
  .pay__cur {
    flex-shrink: 0;
  }
  .pay__cur-pill {
    padding: 8px 14px;
    font-size: var(--space-12);
    border-radius: 10px;
    gap: 6px;
  }
  .pay__cur-flag {
    width: 18px;
    height: 13px;
  }
  .pay__row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
  .pay__field {
    gap: 5px;
  }
  .pay__label {
    font-size: var(--space-12);
  }
  .pay__input,
.pay__select,
.pay__textarea {
    font-size: var(--space-13);
    padding: 10px 12px;
    border-radius: 10px;
  }
  .pay__input-suffix {
    font-size: var(--space-12);
    padding: 0 12px;
  }
  .pay__dropzone-label {
    padding: 20px 14px;
    gap: 8px;
  }
  .pay__dropzone-label svg {
    width: 28px;
    height: 28px;
  }
  .pay__dropzone-text {
    font-size: var(--space-12);
  }
  .pay__dropzone-hint {
    font-size: var(--space-10);
  }
  .pay__sidebar {
    position: static;
  }
  .pay__summary {
    padding: 16px;
    border-radius: 14px;
  }
  .pay__summary-title {
    font-size: var(--space-14);
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
  .pay__summary-rows {
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }
  .pay__summary-row {
    font-size: var(--space-12);
  }
  .pay__summary-val small {
    font-size: var(--space-10);
  }
  .pay__summary-total {
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: var(--space-13);
    border-radius: 10px;
  }
  .pay__summary-price {
    font-size: var(--space-16);
  }
  .pay__summary-price small {
    font-size: var(--space-11);
  }
  .pay__submit {
    height: 46px;
    font-size: var(--space-14);
    border-radius: 12px;
  }
  .pay__submit svg {
    width: 16px;
    height: 16px;
  }
  .pay__trust {
    font-size: var(--space-11);
  }
}
@media (max-width: 420px) {
  .pay__title {
    font-size: var(--space-16);
  }
  .pay__subtitle {
    font-size: var(--space-11);
  }
  .pay__card-title {
    font-size: var(--space-13);
  }
  .pay__cur-pill {
    padding: 7px 12px;
    font-size: var(--space-12);
  }
  .pay__summary-price {
    font-size: var(--space-15);
  }
}
/* ══════════════════════════════════════════════════════
   [CHANGE][2026-07-27] Site integration only (redesign-arzi-page).
   The block above is the design file verbatim. Everything below covers
   the parts the standalone mock has no markup for but the live page
   needs: the reCAPTCHA widget, the logged-out CTA, a currency with no
   flag asset, and the legacy .arzi-breadcromb / .aboutus neighbours.
══════════════════════════════════════════════════════ */

/* reCAPTCHA — required by handelCustomProductOrder(); the mock has no slot. */
.pay__captcha {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.pay__captcha > div {
  max-width: 100%;
}
/* The widget is a fixed 304px iframe; scale it down inside the 320px column. */
@media (max-width: 400px) {
  .pay__captcha {
    transform: scale(0.86);
    transform-origin: top center;
    margin-bottom: 4px;
  }
}

/* Logged-out state: same box as .pay__submit, different colour + <a>. */
.pay__submit--login {
  background: linear-gradient(120deg, #e0245e 0%, #ff4d7e 100%);
  box-shadow: 0 4px 18px rgba(224, 36, 94, 0.3);
  text-decoration: none;
}
.pay__submit--login:hover {
  box-shadow: 0 8px 28px rgba(224, 36, 94, 0.4);
  color: #fff;
}

/* A currency row whose slug has no flag asset still renders (never dropped —
   dropping it would remove a sellable option from the form). */
.pay__cur-pill .pay__cur-flag[hidden] {
  display: none;
}

/* The legacy breadcrumb + SEO text sections sit outside .pay; give them the
   same page background so the redesign does not end in a white seam. */
.arzi-breadcromb,
.arzi-banner {
  background: #f7f6fc;
}

/* ── [CHANGE][2026-07-27] add-new-arzi-product — three fixes the block above
      does not cover. Kept separate so the two integration blocks stay
      independently revertable. ────────────────────────────────────────── */

/* 1. Dark-mode select arrow tiled across the whole control.
      The design's `[data-theme=dark] .pay__input, …, .pay__select, …` rule sets
      the `background` SHORTHAND, which resets the repeat/position `.pay__select`
      had set; the dark override that follows it only restores background-image.
      Restore the other two. The standalone mock never sets data-theme, which is
      why the mock looks correct and the live page did not. */
[data-theme="dark"] .pay__select {
  background-repeat: no-repeat;
  background-position: left 14px center;
}

/* 2. The amount field is <input type="number"> (the backend reads number_pay as
      a float); hide the native spinners so they do not collide with the
      currency suffix chip. Carried over from the inline <style> the old
      custom_product view shipped. */
.pay input[type="number"]::-webkit-outer-spin-button,
.pay input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pay input[type="number"] {
  -moz-appearance: textfield;
}

/* 3. The legacy neighbours get a light band; in dark mode that reads as a white
      seam above the hero. Match the dark page background instead. */
[data-theme="dark"] .arzi-breadcromb,
[data-theme="dark"] .arzi-banner {
  background: transparent;
}
