/* DVC purchase flow — navy & gold theme */
body.dvc-order-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  box-sizing: border-box;
}

.dvc-order-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 16px;
  box-sizing: border-box;
  animation: dvcOrderFadeIn 0.55s ease both;
}

.dvc-order-page .dvc-order-shell--wide,
.dvc-order-shell--wide {
  max-width: 1400px !important;
  width: 95% !important;
}

@keyframes dvcOrderFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.dvc-order-card {
  padding: 28px 24px 32px !important;
}

/* ── Contact form pages (dvc-with-nfc / dvc-without-nfc) ── */
.dvc-order-contact-form .dvc-order-card,
.dvc-order-page .dvc-order-card {
  background: linear-gradient(165deg, rgba(23, 16, 32, 0.98) 0%, rgba(59, 7, 100, 0.99) 100%);
  border: 1px solid rgba(109, 40, 217, 0.32);
  border-radius: 16px;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  min-height: 0;
  height: auto;
}

.dvc-order-page .dvc-order-card {
  padding: 20px 22px 22px !important;
}

.dvc-order-page .dvc-order-header,
.dvc-order-page .pi-form-header {
  margin-bottom: 12px;
}

.dvc-order-page .pi-form-logo {
  height: 40px;
  margin-bottom: 4px;
}

.dvc-order-page .dvc-order-kicker {
  margin: 4px 0 2px;
}

.dvc-order-page .pi-form-title {
  margin-bottom: 4px;
}

.dvc-order-page .dvc-order-subtitle {
  margin: 2px 0 0;
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* Single View Layout Overrides for NFC/DVC Select Page */
.dvc-order-shell--wide {
  padding: 8px 16px 10px !important;
}

.dvc-order-shell--wide .dvc-order-card {
  padding: 16px 24px 14px !important;
}

.dvc-order-shell--wide .dvc-order-header {
  margin-bottom: 8px !important;
}

.dvc-order-shell--wide .pi-form-logo {
  height: 32px !important;
  margin-bottom: 2px !important;
}

.dvc-order-shell--wide .dvc-order-kicker {
  margin: 2px 0 1px !important;
  font-size: 0.68rem !important;
}

.dvc-order-shell--wide .pi-form-title {
  margin-bottom: 1px !important;
  font-size: 1.35rem !important;
}

.dvc-order-shell--wide .dvc-order-subtitle {
  margin: 1px 0 0 !important;
  font-size: 0.76rem !important;
}

.dvc-order-shell--wide .dvc-order-steps {
  margin-bottom: 10px !important;
  gap: 6px !important;
}

.dvc-order-shell--wide .dvc-order-step {
  padding: 3px 10px !important;
  font-size: 0.64rem !important;
}

.dvc-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dvc-contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.dvc-contact-row--full {
  grid-template-columns: minmax(0, 1fr);
}

.dvc-order-contact-form .pi-field {
  margin-bottom: 0;
  min-width: 0;
}

.dvc-order-contact-form .pi-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.dvc-order-contact-form .pi-field label i {
  width: 16px;
  flex-shrink: 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--dvc-soft-purple);
}

.dvc-order-contact-form .pi-field input,
.dvc-order-contact-form .pi-field textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(109, 40, 217, 0.22);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  color: #ffffff;
  font-size: 0.875rem;
  font-family: inherit;
  line-height: 1.4;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.dvc-order-contact-form .pi-field textarea {
  height: auto;
  min-height: 80px;
  padding: 10px 14px;
  resize: vertical;
}

.dvc-order-page .pi-form-card form textarea {
  min-height: 80px;
}

.dvc-order-contact-form .pi-field input::placeholder,
.dvc-order-contact-form .pi-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.dvc-order-contact-form .pi-field input:focus,
.dvc-order-contact-form .pi-field textarea:focus {
  outline: none;
  border-color: rgba(109, 40, 217, 0.55);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}

.dvc-order-contact-form .dvc-field-error {
  min-height: 0;
  margin-top: 3px;
  line-height: 1.3;
}

.dvc-contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.dvc-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--dvc-primary) 0%, var(--dvc-soft-purple) 100%);
  color: var(--dvc-bg-secondary);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(109, 40, 217, 0.22);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.dvc-contact-submit:hover,
.dvc-contact-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.32);
  outline: none;
}

.dvc-contact-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.dvc-contact-back {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.dvc-contact-back:hover,
.dvc-contact-back:focus-visible {
  color: var(--dvc-soft-purple);
  outline: none;
}

@media (max-width: 767px) {
  .dvc-contact-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dvc-order-page .dvc-order-shell {
    padding: 14px 14px 28px;
  }

  .dvc-order-page .dvc-order-card {
    padding: 18px 16px 20px !important;
  }
}

.dvc-order-header {
  text-align: center;
  margin-bottom: 20px;
}

.dvc-order-kicker {
  margin: 8px 0 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(168, 85, 247, 0.9);
}

.dvc-order-subtitle {
  margin: 6px 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}

.dvc-order-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.dvc-order-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dvc-order-step.is-active {
  color: var(--dvc-bg-secondary);
  background: linear-gradient(135deg, var(--dvc-primary) 0%, var(--dvc-soft-purple) 100%);
  border-color: rgba(109, 40, 217, 0.6);
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.25);
}

.dvc-order-step.is-done {
  color: rgba(168, 85, 247, 0.95);
  border-color: rgba(109, 40, 217, 0.35);
}

.dvc-order-form .pi-field {
  margin-bottom: 16px;
}

.dvc-order-form .pi-field--full {
  grid-column: 1 / -1;
}

.dvc-field-error {
  display: block;
  min-height: 1.1em;
  margin-top: 4px;
  font-size: 0.75rem;
  color: #FDA4AF;
}

.dvc-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.dvc-order-actions--center {
  justify-content: center;
}

.dvc-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.dvc-order-btn--primary {
  color: var(--dvc-bg-secondary);
  background: linear-gradient(135deg, var(--dvc-primary) 0%, var(--dvc-soft-purple) 100%);
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.28);
}

.dvc-order-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.38);
}

.dvc-order-btn--ghost {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.dvc-order-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.dvc-order-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.dvc-nfc-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-rows: 1fr !important;
  gap: 18px !important;
  margin-bottom: 14px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 991px) {
  .dvc-nfc-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
  }
}

.dvc-nfc-option {
  padding: 19px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(109, 40, 217, 0.22);
  display: flex;
  flex-direction: column;
  height: auto !important;
  min-height: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.dvc-nfc-option .dvc-order-btn {
  margin-top: auto;
  width: 100%;
  font-size: 0.86rem;
  padding: 11px 14px;
  border-radius: 8px;
}

.dvc-nfc-option:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 40, 217, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.dvc-nfc-option-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.dvc-nfc-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(109, 40, 217, 0.15);
  color: var(--dvc-soft-purple);
  font-size: 0.98rem;
}

.dvc-nfc-option h2 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.dvc-price-breakdown {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}

.dvc-price-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6.5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.dvc-price-breakdown li strong {
  color: #fff;
  white-space: nowrap;
}

.dvc-price-breakdown .dvc-price-total {
  border-bottom: none;
  padding-top: 9px;
  font-size: 0.88rem;
  font-weight: 700;
}

.dvc-price-breakdown .dvc-price-total strong {
  color: var(--dvc-soft-purple);
  font-size: 1.08rem;
}

.dvc-price-breakdown--center {
  max-width: 360px;
  margin: 0 auto 16px;
}

.dvc-pricing-single {
  text-align: center;
  padding: 12px 0 8px;
}

.dvc-pricing-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 420px;
  margin: 0 auto;
}

.dvc-delivery-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(109, 40, 217, 0.08);
  border: 1px solid rgba(109, 40, 217, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.dvc-delivery-note i {
  color: var(--dvc-soft-purple);
  font-size: 1.125rem;
  margin-top: 2px;
}

/* NFC select page — delivery notice box alignment only */
.dvc-order-shell--wide .dvc-delivery-note {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 14px !important;
  margin-bottom: 10px !important;
  padding: 7px 14px !important;
  font-size: 0.76rem !important;
  border-radius: 8px !important;
  min-height: 0 !important;
  height: auto !important;
  line-height: 1.4 !important;
  position: relative !important;
  z-index: 10 !important;
  clear: both !important;
}

.dvc-order-shell--wide .dvc-delivery-note i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 1rem;
  flex-shrink: 0;
  align-self: center;
}

.dvc-order-shell--wide .dvc-delivery-note p {
  margin: 0;
  padding: 0;
  line-height: 1.4;
  white-space: nowrap;
}

html, body {
  overflow-x: hidden !important;
}

@media (max-width: 768px) {
  .dvc-order-shell,
  .dvc-order-page .dvc-order-shell,
  .dvc-order-shell--wide,
  .dvc-order-page .dvc-order-shell--wide {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 10px 20px !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }

  .dvc-order-card,
  .pi-form-card,
  .form-wrapper.pi-form-card,
  .dvc-order-page .dvc-order-card,
  .dvc-order-shell--wide .dvc-order-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px 14px 18px !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .pi-form-header,
  .dvc-order-header {
    margin-bottom: 14px !important;
    text-align: center !important;
  }

  .pi-form-title {
    font-size: 1.35rem !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
  }

  .dvc-order-subtitle,
  .pi-form-subtitle {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  /* Form controls responsive */
  .pi-field,
  .form-group {
    margin-bottom: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .pi-input,
  .form-control,
  .form-select,
  textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 0.9rem !important;
    padding: 10px 12px !important;
  }

  .dvc-order-btn,
  .pi-submit-btn,
  .btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .dvc-order-actions {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 16px !important;
  }

  .dvc-contact-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .dvc-order-steps {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0 6px !important;
    gap: 4px !important;
    margin-bottom: 12px !important;
  }

  .dvc-order-step {
    padding: 4px 8px !important;
    font-size: 0.58rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .dvc-nfc-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
  }

  .dvc-nfc-option {
    padding: 16px 14px !important;
    border-radius: 12px !important;
  }

  .dvc-nfc-option-head {
    gap: 10px !important;
    margin-bottom: 10px !important;
  }

  .dvc-nfc-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.95rem !important;
  }

  .dvc-nfc-option h2 {
    font-size: 0.98rem !important;
  }

  .dvc-price-breakdown li {
    padding: 6px 0 !important;
    font-size: 0.8rem !important;
  }

  .dvc-price-breakdown .dvc-price-total {
    padding-top: 8px !important;
    font-size: 0.88rem !important;
  }

  .dvc-price-breakdown .dvc-price-total strong {
    font-size: 1.05rem !important;
  }

  .dvc-order-shell--wide .dvc-delivery-note {
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    margin-top: 16px !important;
    margin-bottom: 14px !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .dvc-order-shell--wide .dvc-delivery-note p {
    white-space: normal !important;
    font-size: 0.76rem !important;
    line-height: 1.4 !important;
    text-align: left !important;
    flex: 1 1 auto !important;
  }
}

/* NFC select page — select buttons bottom-right inside each card */
.dvc-order-shell--wide .dvc-nfc-option {
  display: flex;
  flex-direction: column;
}

.dvc-order-shell--wide .dvc-nfc-option .dvc-price-breakdown {
  flex: 1 1 auto;
}

.dvc-order-shell--wide .dvc-nfc-option .dvc-select-nfc-btn {
  align-self: center;
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .dvc-order-shell--wide .dvc-nfc-option .dvc-select-nfc-btn {
    align-self: stretch;
    width: 100%;
    min-width: 0;
  }
}

.dvc-order-summary {
  margin: 20px 0;
  padding: 18px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dvc-order-summary h3 {
  margin: 0 0 12px;
  font-size: 0.9375rem;
  color: var(--dvc-soft-purple);
}

.dvc-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  font-size: 0.8125rem;
}

.dvc-summary-grid dt {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.dvc-summary-grid dd {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 560px) {
  .dvc-summary-grid {
    grid-template-columns: 1fr;
  }
}

.dvc-order-alert {
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
}

.dvc-order-alert--error {
  background: #FFF1F2 !important;
  border: 1px solid #F43F5E !important;
  color: #9F1239 !important;
  font-weight: 600 !important;
}

.dvc-order-alert--success,
.dvc-order-page .dvc-order-alert--success {
  background: #ECFDF5 !important;
  border: 1px solid #10B981 !important;
  color: #065F46 !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  padding: 12px 18px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.12) !important;
}

.dvc-order-alert--success i {
  color: #10B981 !important;
  margin-right: 8px !important;
  font-size: 1.1rem !important;
}

.dvc-order-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.dvc-order-loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(23, 16, 32, 0.25);
  border-top-color: var(--dvc-bg-secondary);
  border-radius: 50%;
  animation: dvcSpin 0.7s linear infinite;
}

@keyframes dvcSpin {
  to { transform: rotate(360deg); }
}

/* Navbar DVC product dropdown */
.dvc-product-dropdown {
  min-width: 220px;
}

.dvc-product-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92) !important;
  text-decoration: none !important;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.dvc-product-option:hover,
.dvc-product-option:focus-visible {
  background: rgba(109, 40, 217, 0.14);
  color: var(--dvc-primary) !important;
  outline: none;
}

.dvc-product-option i {
  width: 18px;
  text-align: center;
  color: var(--dvc-soft-purple);
}

.dvc-nav-product-toggle {
  cursor: pointer;
}

@media (max-width: 991px) {
  .dvc-nav-dropdown-wrap .dvc-login-dropdown,
  .dvc-nav-dropdown-wrap .dvc-product-dropdown {
    position: static;
    min-width: 100%;
    margin-top: 4px;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
  }

  .dvc-nav-dropdown-wrap.is-open .dvc-login-dropdown,
  .dvc-nav-dropdown-wrap.is-open .dvc-product-dropdown {
    display: block;
  }
}

/* ==========================================================================
   HOMEPAGE DVC CARD LIGHT THEME OVERRIDES FOR ORDER FLOW (Image 2 Match)
   ========================================================================== */

body.dvc-order-page {
  background-color: var(--dvc-bg-dark) !important;
  color: #211524;
}

body.dvc-order-page .pi-bg {
  background:
    radial-gradient(ellipse 72% 58% at 52% 42%, rgba(109, 40, 217, 0.24) 0%, transparent 66%),
    radial-gradient(ellipse 50% 45% at 82% 72%, rgba(225, 29, 72, 0.12) 0%, transparent 70%),
    var(--dvc-gradient-dark) !important;
}

/* Main Container Card */
.dvc-order-page .dvc-order-card,
.dvc-order-contact-form .dvc-order-card,
.dvc-order-shell--wide .dvc-order-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(59, 7, 100, 0.1) !important;
  border-radius: 20px !important;
  box-shadow: 0 14px 40px rgba(59, 7, 100, 0.08), 0 2px 6px rgba(59, 7, 100, 0.03) !important;
}

/* Header Text & Logo */
.dvc-order-page .pi-form-logo {
  height: 40px !important;
  margin-bottom: 6px !important;
  filter: brightness(0) saturate(100%) invert(10%) sepia(80%) saturate(5000%) hue-rotate(265deg) !important;
}

.dvc-order-page .dvc-order-kicker {
  color: #6D28D9 !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
}

.dvc-order-page .pi-form-title,
.dvc-order-page h1,
.dvc-order-page h2,
.dvc-order-page h3 {
  color: #3B0764 !important;
  font-weight: 700 !important;
}

.dvc-order-page .dvc-order-subtitle {
  color: #675C70 !important;
}

.dvc-order-page .dvc-order-subtitle strong {
  color: #3B0764 !important;
}

/* Progress Steps */
.dvc-order-page .dvc-order-step {
  color: #675C70 !important;
  background: #F3E8FF !important;
  border: 1px solid rgba(109, 40, 217, 0.18) !important;
}

.dvc-order-page .dvc-order-step.is-active {
  color: #FFFFFF !important;
  background: linear-gradient(180deg, #6D28D9 0%, #3B0764 100%) !important;
  border-color: #3B0764 !important;
  box-shadow: 0 4px 14px rgba(59, 7, 100, 0.25) !important;
}

.dvc-order-page .dvc-order-step.is-done {
  color: #6D28D9 !important;
  background: rgba(109, 40, 217, 0.08) !important;
  border-color: rgba(109, 40, 217, 0.25) !important;
}

/* NFC Option Cards */
.dvc-order-page .dvc-nfc-option {
  background: #FFFFFF !important;
  border: 1px solid rgba(59, 7, 100, 0.12) !important;
  border-radius: 16px !important;
  box-shadow: 0 6px 20px rgba(59, 7, 100, 0.05) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.dvc-order-page .dvc-nfc-option:hover {
  transform: translateY(-4px) !important;
  border-color: #6D28D9 !important;
  box-shadow: 0 16px 36px rgba(59, 7, 100, 0.12) !important;
}

.dvc-order-page .dvc-nfc-icon {
  background: #3B0764 !important;
  color: #FFFFFF !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 14px rgba(59, 7, 100, 0.22) !important;
}

.dvc-order-page .dvc-nfc-option h2 {
  color: #3B0764 !important;
  font-weight: 700 !important;
}

/* Price breakdown list */
.dvc-order-page .dvc-price-breakdown li {
  border-bottom: 1px solid rgba(59, 7, 100, 0.08) !important;
  color: #675C70 !important;
}

.dvc-order-page .dvc-price-breakdown li span {
  color: #675C70 !important;
}

.dvc-order-page .dvc-price-breakdown li strong {
  color: #211524 !important;
}

.dvc-order-page .dvc-price-breakdown .dvc-price-total {
  border-bottom: none !important;
}

.dvc-order-page .dvc-price-breakdown .dvc-price-total span {
  color: #211524 !important;
  font-weight: 700 !important;
}

.dvc-order-page .dvc-price-breakdown .dvc-price-total strong {
  color: #3B0764 !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
}

.dvc-order-page .dvc-pricing-note {
  color: #675C70 !important;
}

/* Delivery Note box */
.dvc-order-page .dvc-delivery-note {
  background: #F3E8FF !important;
  border: 1px solid rgba(109, 40, 217, 0.22) !important;
  color: #3B0764 !important;
}

.dvc-order-page .dvc-delivery-note i {
  color: #6D28D9 !important;
}

.dvc-order-page .dvc-delivery-note p {
  color: #3B0764 !important;
  font-weight: 500 !important;
}

/* Buttons */
.dvc-order-page .dvc-order-btn--primary,
.dvc-order-page .dvc-select-nfc-btn,
.dvc-order-page .dvc-contact-submit {
  background: linear-gradient(180deg, #6D28D9 0%, #3B0764 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(59, 7, 100, 0.28) !important;
  border: none !important;
  font-weight: 700 !important;
}

.dvc-order-page .dvc-order-btn--primary:hover,
.dvc-order-page .dvc-select-nfc-btn:hover,
.dvc-order-page .dvc-contact-submit:hover {
  background: linear-gradient(180deg, #7C3AED 0%, #4C1D95 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 28px rgba(59, 7, 100, 0.38) !important;
}

.dvc-order-page .dvc-order-btn--ghost,
.dvc-order-page .dvc-contact-back {
  color: #3B0764 !important;
  background: #F3E8FF !important;
  border: 1px solid rgba(109, 40, 217, 0.22) !important;
}

.dvc-order-page .dvc-order-btn--ghost:hover,
.dvc-order-page .dvc-contact-back:hover {
  background: #E9D5FF !important;
  color: #3B0764 !important;
}

/* Contact & Order Form Inputs — Proper Light Theme Styling */
.dvc-order-page .pi-field label,
.dvc-order-contact-form .pi-field label,
.dvc-order-card label {
  color: #3B0764 !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  margin-bottom: 6px !important;
}

.dvc-order-page .pi-field label i,
.dvc-order-contact-form .pi-field label i,
.dvc-order-card label i {
  color: #6D28D9 !important;
}

.dvc-order-page .pi-field input,
.dvc-order-page .pi-field textarea,
.dvc-order-page .pi-field select,
.dvc-order-contact-form .pi-field input,
.dvc-order-contact-form .pi-field textarea,
.dvc-order-card input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.dvc-order-card textarea,
.dvc-order-card select {
  background: #FFFFFF !important;
  border: 1.5px solid rgba(109, 40, 217, 0.22) !important;
  border-radius: 10px !important;
  color: #211524 !important;
  font-size: 0.9rem !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.dvc-order-page .pi-field input::placeholder,
.dvc-order-page .pi-field textarea::placeholder,
.dvc-order-contact-form .pi-field input::placeholder,
.dvc-order-contact-form .pi-field textarea::placeholder,
.dvc-order-card input::placeholder,
.dvc-order-card textarea::placeholder {
  color: #8C7D9B !important;
  opacity: 0.8 !important;
}

.dvc-order-page .pi-field input:focus,
.dvc-order-page .pi-field textarea:focus,
.dvc-order-page .pi-field select:focus,
.dvc-order-contact-form .pi-field input:focus,
.dvc-order-contact-form .pi-field textarea:focus,
.dvc-order-card input:focus,
.dvc-order-card textarea:focus,
.dvc-order-card select:focus {
  outline: none !important;
  border-color: #6D28D9 !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 0 3.5px rgba(109, 40, 217, 0.14) !important;
}

/* Back Link Clean Styling */
.dvc-order-page .dvc-contact-back,
.dvc-order-page .dvc-order-btn--ghost {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #6D28D9 !important;
  background: #F3E8FF !important;
  border: 1px solid rgba(109, 40, 217, 0.2) !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  font-size: 0.84rem !important;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

.dvc-order-page .dvc-contact-back:hover,
.dvc-order-page .dvc-contact-back:focus-visible,
.dvc-order-page .dvc-order-btn--ghost:hover {
  background: #E9D5FF !important;
  color: #3B0764 !important;
  border-color: rgba(109, 40, 217, 0.35) !important;
  outline: none !important;
}

/* Order Summary Box */
.dvc-order-page .dvc-order-summary {
  background: #FAF7FC !important;
  border: 1px solid rgba(109, 40, 217, 0.15) !important;
}

.dvc-order-page .dvc-order-summary h3 {
  color: #3B0764 !important;
}

.dvc-order-page .dvc-summary-grid dt {
  color: #675C70 !important;
}

.dvc-order-page .dvc-summary-grid dd {
  color: #211524 !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   PREMIUM DVC INQUIRY FORM MAGENTA / ROSE PINK THEME (Card 2 Match)
   ========================================================================== */

/* Kicker & Accent Colors */
.is-premium-dvc .dvc-order-kicker {
  color: #E11D48 !important;
  font-weight: 700 !important;
}

.is-premium-dvc .pi-form-title,
.is-premium-dvc h1,
.is-premium-dvc h2,
.is-premium-dvc h3 {
  color: #3B0764 !important;
}

/* Label Icons & Input Focus */
.is-premium-dvc .pi-field label i {
  color: #E11D48 !important;
}

.is-premium-dvc .pi-field input:focus,
.is-premium-dvc .pi-field textarea:focus,
.is-premium-dvc .pi-field select:focus {
  border-color: #E11D48 !important;
  box-shadow: 0 0 0 3.5px rgba(225, 29, 72, 0.15) !important;
}

/* Progress Step Indicators */
.is-premium-dvc .dvc-order-step.is-active {
  background: linear-gradient(135deg, #DB2777 0%, #E11D48 100%) !important;
  color: #FFFFFF !important;
  border-color: #E11D48 !important;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25) !important;
}

.is-premium-dvc .dvc-order-step.is-done {
  color: #E11D48 !important;
  background: rgba(225, 29, 72, 0.08) !important;
  border-color: rgba(225, 29, 72, 0.25) !important;
}

/* Primary Action Buttons */
.is-premium-dvc .dvc-order-btn--primary,
.is-premium-dvc .dvc-select-nfc-btn,
.is-premium-dvc .dvc-contact-submit {
  background: linear-gradient(135deg, #DB2777 0%, #E11D48 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.32) !important;
  border: none !important;
  font-weight: 700 !important;
}

.is-premium-dvc .dvc-order-btn--primary:hover,
.is-premium-dvc .dvc-select-nfc-btn:hover,
.is-premium-dvc .dvc-contact-submit:hover {
  background: linear-gradient(135deg, #C1185C 0%, #BE123C 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 28px rgba(225, 29, 72, 0.42) !important;
}

/* Ghost / Back Button */
.is-premium-dvc .dvc-contact-back,
.is-premium-dvc .dvc-order-btn--ghost {
  color: #E11D48 !important;
  background: #FFE4E6 !important;
  border: 1px solid rgba(225, 29, 72, 0.22) !important;
}

.is-premium-dvc .dvc-contact-back:hover,
.is-premium-dvc .dvc-order-btn--ghost:hover {
  background: #FECDD3 !important;
  color: #BE123C !important;
  border-color: rgba(225, 29, 72, 0.35) !important;
}

/* NFC Option Card Elements for Premium DVC */
.is-premium-dvc .dvc-nfc-icon {
  background: linear-gradient(135deg, #DB2777 0%, #E11D48 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25) !important;
}

.is-premium-dvc .dvc-nfc-option:hover {
  border-color: #E11D48 !important;
  box-shadow: 0 16px 36px rgba(225, 29, 72, 0.14) !important;
}

.is-premium-dvc .dvc-price-breakdown .dvc-price-total strong {
  color: #E11D48 !important;
}

.is-premium-dvc .dvc-delivery-note {
  background: #FFE4E6 !important;
  border: 1px solid rgba(225, 29, 72, 0.22) !important;
  color: #BE123C !important;
}

.is-premium-dvc .dvc-delivery-note i {
  color: #E11D48 !important;
}

.is-premium-dvc .dvc-delivery-note p {
  color: #BE123C !important;
}

/* ==========================================================================
   PREMIUM SOCIAL MEDIA INQUIRY FORM FUCHSIA MAGENTA THEME (Card 3 Match)
   ========================================================================== */

/* Kicker & Accent Colors */
.is-premium-social .dvc-order-kicker {
  color: #D946EF !important;
  font-weight: 700 !important;
}

.is-premium-social .pi-form-title,
.is-premium-social h1,
.is-premium-social h2,
.is-premium-social h3 {
  color: #3B0764 !important;
}

/* Label Icons & Input Focus */
.is-premium-social .pi-field label i {
  color: #C026D3 !important;
}

.is-premium-social .pi-field input:focus,
.is-premium-social .pi-field textarea:focus,
.is-premium-social .pi-field select:focus {
  border-color: #D946EF !important;
  box-shadow: 0 0 0 3.5px rgba(217, 70, 239, 0.22) !important;
}

/* Progress Step Indicators */
.is-premium-social .dvc-order-step.is-active {
  background: linear-gradient(135deg, #9333EA 0%, #DB2777 100%) !important;
  color: #FFFFFF !important;
  border-color: #D946EF !important;
  box-shadow: 0 4px 14px rgba(217, 70, 239, 0.3) !important;
}

.is-premium-social .dvc-order-step.is-done {
  color: #C026D3 !important;
  background: rgba(217, 70, 239, 0.1) !important;
  border-color: rgba(217, 70, 239, 0.3) !important;
}

/* Primary Action Buttons */
.is-premium-social .dvc-order-btn--primary,
.is-premium-social .dvc-select-nfc-btn,
.is-premium-social .dvc-contact-submit {
  background: linear-gradient(135deg, #9333EA 0%, #DB2777 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(217, 70, 239, 0.38) !important;
  border: none !important;
  font-weight: 700 !important;
}

.is-premium-social .dvc-order-btn--primary:hover,
.is-premium-social .dvc-select-nfc-btn:hover,
.is-premium-social .dvc-contact-submit:hover {
  background: linear-gradient(135deg, #7E22CE 0%, #BE123C 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 28px rgba(217, 70, 239, 0.48) !important;
}

/* Ghost / Back Button */
.is-premium-social .dvc-contact-back,
.is-premium-social .dvc-order-btn--ghost {
  color: #C026D3 !important;
  background: #FDF4FF !important;
  border: 1px solid rgba(217, 70, 239, 0.28) !important;
}

.is-premium-social .dvc-contact-back:hover,
.is-premium-social .dvc-order-btn--ghost:hover {
  background: #FAE8FF !important;
  color: #A21CAF !important;
  border-color: rgba(217, 70, 239, 0.42) !important;
}

/* NFC Option Card Elements for Premium Social Media */
.is-premium-social .dvc-nfc-icon {
  background: linear-gradient(135deg, #9333EA 0%, #DB2777 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(217, 70, 239, 0.3) !important;
}

.is-premium-social .dvc-nfc-option:hover {
  border-color: #D946EF !important;
  box-shadow: 0 16px 36px rgba(217, 70, 239, 0.18) !important;
}

.is-premium-social .dvc-price-breakdown .dvc-price-total strong {
  color: #C026D3 !important;
}

.is-premium-social .dvc-delivery-note {
  background: #FDF4FF !important;
  border: 1px solid rgba(217, 70, 239, 0.28) !important;
  color: #A21CAF !important;
}

.is-premium-social .dvc-delivery-note i {
  color: #D946EF !important;
}

.is-premium-social .dvc-delivery-note p {
  color: #A21CAF !important;
}

/* ==========================================================================
   IN-PAGE PAYMENT MODAL OVERLAY & CONTAINER
   ========================================================================== */
.dvc-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(13, 7, 18, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dvc-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.dvc-modal-container {
  width: 100%;
  max-width: 540px;
  height: 680px;
  max-height: 90vh;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: dvcModalScale 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dvcModalScale {
  from {
    transform: scale(0.94);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.dvc-modal-header {
  padding: 14px 20px;
  background: #3B0764;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.is-premium-dvc .dvc-modal-header {
  background: linear-gradient(135deg, #DB2777 0%, #E11D48 100%) !important;
}

.is-premium-social .dvc-modal-header {
  background: linear-gradient(135deg, #9333EA 0%, #DB2777 100%) !important;
}

.dvc-modal-header i {
  margin-right: 6px;
}

.dvc-modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #FFFFFF;
  font-size: 1.4rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dvc-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

.dvc-modal-body {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  background: #FAFAFA;
}

.dvc-modal-spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #675C70;
  font-size: 0.9rem;
  font-weight: 500;
}

.dvc-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Success Page Theme Button Overrides */
.dvc-order-page .dvc-order-btn--ghost {
  background: #F3E8FF !important;
  color: #6D28D9 !important;
  border: 1px solid rgba(109, 40, 217, 0.22) !important;
  font-weight: 600 !important;
}

.dvc-order-page .dvc-order-btn--ghost:hover {
  background: #E9D5FF !important;
  color: #4C1D95 !important;
}

.is-premium-dvc .dvc-order-btn--ghost {
  background: #FFF1F2 !important;
  color: #E11D48 !important;
  border: 1px solid rgba(225, 29, 72, 0.25) !important;
}

.is-premium-dvc .dvc-order-btn--ghost:hover {
  background: #FFE4E6 !important;
  color: #BE123C !important;
}

.is-premium-social .dvc-order-btn--ghost {
  background: #FDF4FF !important;
  color: #C026D3 !important;
  border: 1px solid rgba(217, 70, 239, 0.28) !important;
}

.is-premium-social .dvc-order-btn--ghost:hover {
  background: #FAE8FF !important;
  color: #9333EA !important;
}

.is-premium-social .dvc-order-summary h3 {
  color: #3B0764 !important;
}

.is-premium-dvc .dvc-order-summary h3 {
  color: #881337 !important;
}

/* Custom Popup Alert Modal */
.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(8, 4, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.custom-alert-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.custom-alert-box {
  background: linear-gradient(145deg, rgba(33, 21, 44, 0.96), rgba(18, 10, 26, 0.98));
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(168, 85, 247, 0.25);
  border-radius: 18px;
  width: 100%;
  max-width: 400px;
  padding: 26px 28px 22px;
  text-align: center;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  transform: scale(0.88) translateY(12px);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-alert-overlay.is-active .custom-alert-box {
  transform: scale(1) translateY(0);
}

.custom-alert-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.18);
  border: 1.5px solid rgba(168, 85, 247, 0.55);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.28);
}

.custom-alert-icon.is-error {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.55);
  color: #f87171;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.28);
}

.custom-alert-icon.is-success {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.55);
  color: #4ade80;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.28);
}

.custom-alert-title {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.custom-alert-message {
  margin: 0 0 20px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.custom-alert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 24px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.custom-alert-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.45);
}

.custom-alert-btn:active {
  transform: translateY(0);
}







