/* ═══════════════════════════════════════════════════════════
   QARIBIA — Journey V2 · Trip Dashboard + Checkout (Refined UI/UX)
   ══════════════════════════════════════════════════════════ */

.jv2-body {
  background-color: var(--warm-white);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
    radial-gradient(circle at 10% 20%, rgba(200, 150, 62, 0.03) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(45, 90, 66, 0.04) 0%, transparent 60%);
  background-blend-mode: overlay, normal, normal;
  background-attachment: fixed;
  min-height: 100vh;
}

/* ── Header: Asymmetrical & Editorial ───────────────────── */
.jv2-header {
  position: relative;
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--midnight) 100%);
  padding: 140px 40px 60px;
  overflow: hidden;
}

.jv2-header__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.jv2-header__bg-glow {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 155, 165, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.jv2-header__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.jv2-header__content {
  max-width: 600px;
}

.jv2-header__title {
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.jv2-header__title em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.jv2-header__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.jv2-clear-btn {
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--trans-base);
  flex-shrink: 0;
}

.jv2-clear-btn:hover {
  border-color: #E53E3E;
  background: rgba(229, 62, 62, 0.15);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════
   EMPTY STATE: Split Layout
   ══════════════════════════════════════════════════════════ */
.jv2-empty {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px 120px;
}

.jv2-empty__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.jv2-empty__title {
  font-family: 'Lora', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.jv2-empty__title em {
  font-family: 'Lora', serif;
  color: var(--amber);
  font-style: italic;
  font-weight: 400;
}

.jv2-empty__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.jv2-empty__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.jv2-entry-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.jv2-entry-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(200, 150, 62, 0.2);
}

.jv2-entry-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
}

.jv2-entry-card__text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.jv2-entry-card__text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.jv2-entry-card__go {
  margin-left: auto;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.jv2-entry-card:hover .jv2-entry-card__go {
  color: var(--amber);
  transform: translateX(4px);
}

/* Decorative Image */
.jv2-empty__right {
  position: relative;
}

.jv2-empty__image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.jv2-empty__image-wrapper:hover {
  transform: scale(1.02);
}

.jv2-empty__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.jv2-empty__badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  animation: floatUp 4s ease-in-out infinite;
}

.jv2-empty__badge i {
  color: var(--amber);
  font-size: 1.4rem;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.jv2-empty__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.jv2-empty__trust span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jv2-empty__trust i {
  color: var(--sage);
  font-size: 0.9rem;
}


/* ══════════════════════════════════════════════════════════
   DASHBOARD LAYOUT (Filled State)
   ══════════════════════════════════════════════════════════ */
.jv2-dash {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 40px 100px;
}

.jv2-dash__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Progress bar */
.jv2-progress {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.jv2-progress__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jv2-progress__text strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
}

.jv2-progress__text span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
}

.jv2-progress__track {
  width: 100%;
  height: 4px;
  /* Thinner, more elegant */
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.jv2-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ── Trip item cards ──────────────────────────────────── */
.jv2-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 50px;
}

.jv2-item {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.jv2-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.8);
}

.jv2-item--empty {
  border: 1.5px dashed rgba(0, 0, 0, 0.15);
  background: transparent;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.jv2-item--empty:hover {
  border-color: var(--teal);
  /* Use teal to invite action, instead of amber */
  background: rgba(27, 107, 114, 0.03);
  /* Faint teal wash */
  transform: translateY(-2px);
}

.jv2-item__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
}

.jv2-item__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.jv2-item--filled .jv2-item__icon {
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Add thematic colors based on the item type (You will need to update your journey.js to output these modifier classes) */
.jv2-item--stay .jv2-item__icon {
  background: linear-gradient(135deg, var(--forest), var(--sage));
}

.jv2-item--destination .jv2-item__icon {
  background: linear-gradient(135deg, var(--gold), var(--amber));
}

.jv2-item--flight .jv2-item__icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
}

.jv2-item--transfer .jv2-item__icon {
  background: linear-gradient(135deg, var(--slate), var(--charcoal));
}

.jv2-item--visa .jv2-item__icon {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
}

.jv2-item--empty .jv2-item__icon {
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.2);
}

.jv2-item__body {
  flex: 1;
  min-width: 0;
}

.jv2-item__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.jv2-item--filled .jv2-item__label {
  color: var(--amber);
}

.jv2-item--empty .jv2-item__label {
  color: var(--text-muted);
}

.jv2-item__title {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.jv2-item__detail {
  font-size: 0.9rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jv2-item__price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 16px;
}

.jv2-item__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.jv2-item-btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--trans-base);
}

.jv2-item-btn--change {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-primary);
}

.jv2-item-btn--change:hover {
  border-color: var(--gold);
  background: #fff;
  color: var(--amber);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.jv2-item-btn--remove {
  background: transparent;
  color: rgba(0, 0, 0, 0.3);
  padding: 10px 14px;
}

.jv2-item-btn--remove:hover {
  background: rgba(229, 62, 62, 0.1);
  color: #E53E3E;
}

.jv2-item-btn--add {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #fff;
  box-shadow: 0 4px 16px rgba(200, 150, 62, 0.2);
}

.jv2-item-btn--add:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 150, 62, 0.3);
}

.jv2-item__thumb {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.jv2-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Traveller form ──────────────────────────────────── */
.jv2-traveller {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.jv2-traveller__header {
  margin-bottom: 28px;
}

.jv2-traveller__title {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.jv2-traveller__title i {
  color: var(--amber);
}

.jv2-traveller__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.jv2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.jv2-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jv2-field label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

.jv2-input {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 16px 18px;
  outline: none;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.jv2-input:focus {
  border-color: var(--teal);
  /* Teal feels more secure/trustworthy for forms than amber */
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27, 107, 114, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.01);
}


/* ══════════════════════════════════════════════════════════
   SIDEBAR (Premium Dark Glassmorphism)
   ══════════════════════════════════════════════════════════ */
.jv2-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.jv2-summary {
  background: linear-gradient(135deg, rgba(45, 90, 66, 0.85), rgba(26, 58, 46, 0.95));
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(26, 58, 46, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
}

.jv2-summary__head {
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.05);
  /* Slightly lighter for contrast */
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.jv2-summary__head i {
  color: var(--gold-light);
}

.jv2-summary__items {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.jv2-sum-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
}

.jv2-sum-line__key {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.jv2-sum-line__val {
  color: #fff;
  font-weight: 600;
  font-family: var(--font-heading);
  text-align: right;
}

.jv2-summary__total {
  background: rgba(0, 0, 0, 0.3);
  padding: 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.jv2-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jv2-sum-row--total span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.jv2-sum-row--total strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}

.jv2-sum-row--kes {
  margin-top: 6px;
}

.jv2-sum-row--kes span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Payment card */
.jv2-payment {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.jv2-payment__title {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.jv2-pay-security {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.jv2-pay-security span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(107, 143, 113, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
}

.jv2-pay-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  background: rgba(0, 0, 0, 0.04);
  padding: 6px;
  border-radius: 14px;
}

.jv2-ptab {
  flex: 1;
  padding: 12px 8px;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.jv2-ptab.active {
  background: #fff;
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.jv2-pform {
  display: none;
}

.jv2-pform.active {
  display: block;
  animation: slideFadeIn 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.jv2-pform .jv2-field {
  margin-bottom: 18px;
}

.jv2-card-wrap {
  position: relative;
}

.jv2-card-brands {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.2);
}

/* ── Mobile Money Provider Cards ────────────────────────── */
.jv2-mm-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.jv2-mm-providers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.jv2-mm-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  text-align: left;
  font-family: var(--font-body);
}

.jv2-mm-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

.jv2-mm-card.active {
  border-color: var(--gold);
  background: rgba(200, 150, 62, 0.04);
  box-shadow: 0 4px 16px rgba(200, 150, 62, 0.12);
}

.jv2-mm-card__logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.jv2-mm-card__logo svg {
  width: 100%;
  height: 100%;
}

.jv2-mm-card__info {
  flex: 1;
  min-width: 0;
}

.jv2-mm-card__info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.jv2-mm-card__info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.jv2-mm-card__check {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  flex-shrink: 0;
}

.jv2-mm-card.active .jv2-mm-card__check {
  color: var(--gold);
}

/* Flow steps */
.jv2-mm-flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.jv2-mm-step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  padding: 12px 16px;
}

.jv2-mm-step__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jv2-mm-step strong {
  color: var(--text-primary);
}

/* Number input with prefix */
.jv2-mm-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.jv2-mm-prefix {
  position: absolute;
  left: 16px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
}

.jv2-mm-number {
  padding-left: 90px !important;
}

.jv2-bank {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 24px;
}

.jv2-brow {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.jv2-brow span {
  color: var(--text-muted);
  min-width: 70px;
}

.jv2-brow strong {
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.jv2-terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  margin: 28px 0 24px;
  line-height: 1.6;
}

.jv2-terms a {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(224, 123, 57, 0.3);
  transition: border-color var(--trans-base);
}

.jv2-terms a:hover {
  border-color: var(--amber);
}

.jv2-checkout-btn {
  width: 100%;
  padding: 22px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #fff;
  border: none;
  border-radius: 16px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 8px 24px rgba(200, 150, 62, 0.3);
}

.jv2-checkout-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(200, 150, 62, 0.45);
}

.jv2-checkout-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: var(--text-muted);
}


/* ══════════════════════════════════════════════════════════
   CONFIRMATION
   ══════════════════════════════════════════════════════════ */
.jv2-confirm {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 40px;
  text-align: center;
}

.jv2-confirm__icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--deep-green));
  color: #fff;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 16px 48px rgba(45, 90, 66, 0.3);
  position: relative;
  animation: popIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.jv2-confirm__icon::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(45, 90, 66, 0.4);
  animation: pulseRing 2s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.jv2-confirm h2 {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.jv2-confirm__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.jv2-confirm__ref {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px 32px;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.jv2-confirm__ref strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--amber);
}

.jv2-confirm__email {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.jv2-confirm__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

/* Review nudge on confirmation */
.jv2-confirm__review-nudge {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.jv2-confirm__review-nudge p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.jv2-confirm__review-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--gold);
  background: rgba(200, 150, 62, 0.06);
  transition: all 0.4s var(--ease-smooth);
}

.jv2-confirm__review-link:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 150, 62, 0.25);
}

.jv2-confirm__review-link i {
  font-size: 0.85rem;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .jv2-empty__inner {
    grid-template-columns: 1fr;
  }

  .jv2-empty__right {
    display: none;
  }

  .jv2-dash__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .jv2-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .jv2-header {
    padding: 100px 24px 40px;
  }

  .jv2-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .jv2-empty {
    padding: 40px 24px 80px;
  }

  .jv2-dash {
    padding: 24px 24px 80px;
  }

  .jv2-item__inner {
    flex-wrap: wrap;
    padding: 20px;
    gap: 16px;
  }

  .jv2-item__thumb {
    display: none;
  }

  .jv2-item__actions {
    width: 100%;
    margin-top: 8px;
    justify-content: flex-start;
  }

  .jv2-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .jv2-confirm {
    padding: 60px 24px 80px;
  }

  .jv2-confirm h2 {
    font-size: 2.5rem;
  }
}