/**
 * ════════════════════════════════════════════════════════════════════
 * WIZARD STYLES — Midnight & Ember Edition
 * Fire Power SFX — Premium Quotation Configurator
 * ════════════════════════════════════════════════════════════════════
 */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ── Variables ─────────────────────────────────────────────────────── */
:root {
  /* Midnight & Ember palette */
  --wizard-obsidian:     #080808;
  --wizard-obsidian-2:   #0d0d0d;
  --wizard-obsidian-3:   #141414;
  --wizard-coal:         #1e1e1e;
  --wizard-iron:         #2a2a2a;
  --wizard-ash:          #3d3d3d;
  --wizard-smoke:        #606060;
  --wizard-silver:       #9a9a9a;
  --wizard-fog:          #c8c8c8;
  --wizard-phosphor:     #f0f0f0;
  --wizard-white:        #ffffff;

  --wizard-primary:      #FF4500;
  --wizard-primary-dark: #d93a00;
  --wizard-primary-glow: rgba(255, 69, 0, 0.35);
  --wizard-gold:         #FFB800;
  --wizard-success:      #22c55e;
  --wizard-error:        #ef4444;

  /* Legacy compat vars for existing JS */
  --wizard-gray-900: #080808;
  --wizard-gray-800: #0d0d0d;
  --wizard-gray-700: #1e1e1e;
  --wizard-gray-600: #3d3d3d;
  --wizard-gray-500: #606060;
  --wizard-gray-400: #9a9a9a;
  --wizard-gray-300: #c8c8c8;
  --wizard-gray-200: #2a2a2a;
  --wizard-gray-100: #141414;
  --wizard-gray-50:  #0d0d0d;

  --wizard-font-display: 'Syne', sans-serif;
  --wizard-font-ui:      'Space Grotesk', sans-serif;
  --wizard-font-mono:    'Space Mono', monospace;

  --wizard-r-sm: 6px; --wizard-r-md: 10px;
  --wizard-r-lg: 16px; --wizard-r-xl: 24px; --wizard-r-pill: 9999px;

  --wizard-ease: cubic-bezier(0.23, 1, 0.32, 1);
  --wizard-t: 0.3s;
}

/* ── Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--wizard-obsidian);
  color: var(--wizard-phosphor);
  font-family: var(--wizard-font-ui);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Item Counter Badge ─────────────────────────────────────────────── */
.wizard-item-counter {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  z-index: 999;
  background: var(--wizard-primary);
  color: white;
  font-family: var(--wizard-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255,69,0,0.5);
}

/* ── Wrapper ────────────────────────────────────────────────────────── */
.wizard-wrapper {
  min-height: 100vh;
  background: var(--wizard-obsidian);
  padding: 2rem 1rem 5rem;
  position: relative;
}

/* Subtle ember glow at the top */
.wizard-wrapper::before {
  content: '';
  position: fixed;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--wizard-primary), transparent);
  z-index: 10;
}

/* ── Container ─────────────────────────────────────────────────────── */
.wizard-container {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--wizard-obsidian-2);
  border: 1px solid var(--wizard-iron);
  border-radius: var(--wizard-r-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,69,0,0.04);
}

/* ── Progress Bar ──────────────────────────────────────────────────── */
.wizard-progress {
  background: var(--wizard-obsidian-3);
  padding: 2rem 2.5rem 2.5rem;
  border-bottom: 1px solid var(--wizard-iron);
  position: relative;
}

.wizard-progress::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,69,0,0.3), transparent);
}

.wizard-progress-text {
  text-align: center;
  font-family: var(--wizard-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wizard-primary);
  margin-bottom: 1.25rem;
}

.wizard-progress-bar {
  height: 3px;
  background: var(--wizard-iron);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.wizard-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--wizard-primary), #FF6B00);
  border-radius: 999px;
  transition: width 0.6s var(--wizard-ease);
  box-shadow: 0 0 12px rgba(255,69,0,0.5);
}

/* Progress Steps */
.wizard-progress-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.wizard-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.wizard-progress-step-circle {
  width: 36px; height: 36px;
  border: 2px solid var(--wizard-iron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wizard-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--wizard-smoke);
  background: var(--wizard-obsidian-2);
  transition: all 0.4s var(--wizard-ease);
  position: relative;
}

.wizard-progress-step-circle::before {
  content: attr(data-step);
}

.wizard-progress-step.active .wizard-progress-step-circle {
  border-color: var(--wizard-primary);
  color: white;
  background: var(--wizard-primary);
  box-shadow: 0 0 18px rgba(255,69,0,0.5);
}

.wizard-progress-step.completed .wizard-progress-step-circle {
  border-color: var(--wizard-primary);
  background: transparent;
  color: var(--wizard-primary);
}

.wizard-progress-step.completed .wizard-progress-step-circle::before {
  content: '✓';
  font-size: 0.9rem;
}

.wizard-progress-step-label {
  font-family: var(--wizard-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wizard-smoke);
  transition: color 0.3s;
  text-align: center;
}

.wizard-progress-step.active .wizard-progress-step-label {
  color: var(--wizard-primary);
}

/* ── Step Container ─────────────────────────────────────────────────── */
.wizard-step {
  display: none;
  padding: 3rem 2.5rem;
  animation: wizardFadeIn 0.4s var(--wizard-ease) both;
}

.wizard-step.active { display: block; }

@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Step Header ─────────────────────────────────────────────────────── */
.wizard-step-header {
  text-align: center;
  margin-bottom: 3rem;
}

.wizard-step-title {
  font-family: var(--wizard-font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--wizard-white);
  margin-bottom: 0.75rem;
}

.wizard-step-subtitle {
  font-size: 1rem;
  color: var(--wizard-silver);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Event Type Grid ────────────────────────────────────────────────── */
.event-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.event-type-card {
  background: var(--wizard-coal);
  border: 1px solid var(--wizard-iron);
  border-radius: var(--wizard-r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--wizard-ease);
  position: relative;
  overflow: hidden;
}

.event-type-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--wizard-primary), #FF6B00);
  transform: scaleX(0);
  transition: transform 0.4s var(--wizard-ease);
}

.event-type-card:hover {
  border-color: rgba(255,69,0,0.3);
  background: rgba(255,69,0,0.05);
  transform: translateY(-3px);
}

.event-type-card:hover::before { transform: scaleX(1); }

.event-type-card.selected {
  border-color: var(--wizard-primary);
  background: rgba(255,69,0,0.08);
  box-shadow: 0 0 30px rgba(255,69,0,0.15);
}

.event-type-card.selected::before { transform: scaleX(1); }

.event-type-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.event-type-card h3 {
  font-family: var(--wizard-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wizard-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.event-type-card p {
  font-size: 0.82rem;
  color: var(--wizard-silver);
  line-height: 1.5;
}

/* ── Package Cards ──────────────────────────────────────────────────── */
#packages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.package-card {
  background: var(--wizard-coal);
  border: 2px solid var(--wizard-iron);
  border-radius: var(--wizard-r-lg);
  padding: 2rem;
  cursor: pointer;
  transition: all 0.35s var(--wizard-ease);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,69,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.package-card:hover {
  border-color: rgba(255,69,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,69,0,0.1);
}

.package-card:hover::before { opacity: 1; }

.package-card.selected {
  border-color: var(--wizard-primary);
  box-shadow: 0 0 0 1px var(--wizard-primary), 0 0 40px rgba(255,69,0,0.2);
}

.package-card.selected::before { opacity: 1; }

.package-card--popular {
  border-color: rgba(255,69,0,0.3);
}

.package-popular-badge {
  display: inline-block;
  font-family: var(--wizard-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wizard-primary);
  border: 1px solid rgba(255,69,0,0.4);
  border-radius: 999px;
  padding: 2px 10px;
  margin-bottom: 1rem;
}

.package-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.package-name {
  font-family: var(--wizard-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wizard-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.package-price {
  font-family: var(--wizard-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wizard-primary);
  margin-bottom: 1rem;
}

.package-description {
  font-size: 0.88rem;
  color: var(--wizard-silver);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.package-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.package-items-list li {
  font-size: 0.82rem;
  color: var(--wizard-fog);
  padding-left: 1.2rem;
  position: relative;
}

.package-items-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--wizard-primary);
}

/* Custom build card */
.package-card--custom {
  background: transparent;
  border-style: dashed;
  border-color: var(--wizard-ash);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
}

/* ── Catalog Items (Step 3) ──────────────────────────────────────────── */
#selected-items-container {
  margin-bottom: 2rem;
}

#selected-items-container h3,
#catalog-container h3 {
  font-family: var(--wizard-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wizard-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--wizard-iron);
}

.catalog-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.catalog-category-btn {
  font-family: var(--wizard-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wizard-silver);
  background: none;
  border: 1px solid var(--wizard-iron);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
}

.catalog-category-btn:hover,
.catalog-category-btn.active {
  color: var(--wizard-primary);
  border-color: var(--wizard-primary);
  background: rgba(255,69,0,0.07);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}

.catalog-item {
  background: var(--wizard-coal);
  border: 1px solid var(--wizard-iron);
  border-radius: var(--wizard-r-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.25s var(--wizard-ease);
}

.catalog-item:hover {
  border-color: rgba(255,69,0,0.25);
  background: rgba(255,69,0,0.04);
}

.catalog-item.selected {
  border-color: var(--wizard-primary);
  background: rgba(255,69,0,0.07);
}

.catalog-item-icon { font-size: 1.5rem; flex-shrink: 0; }

.catalog-item-info { flex: 1; min-width: 0; }

.catalog-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wizard-phosphor);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.catalog-item-qty-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.catalog-item-qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--wizard-ash);
  border-radius: 50%;
  background: none;
  color: var(--wizard-phosphor);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.catalog-item-qty-btn:hover {
  border-color: var(--wizard-primary);
  color: var(--wizard-primary);
  background: rgba(255,69,0,0.08);
}

.catalog-item-qty {
  font-family: var(--wizard-font-mono);
  font-size: 0.8rem;
  color: var(--wizard-phosphor);
  min-width: 1rem;
  text-align: center;
}

/* Selected items list */
.selected-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.selected-item {
  background: rgba(255,69,0,0.07);
  border: 1px solid rgba(255,69,0,0.2);
  border-radius: var(--wizard-r-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.selected-item-name {
  flex: 1;
  font-size: 0.88rem;
  color: var(--wizard-phosphor);
}

.selected-item-remove {
  color: var(--wizard-smoke);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: color 0.2s;
}

.selected-item-remove:hover { color: var(--wizard-error); }

/* ── Selected items grid (photo-first cards) ──────────────────────────── */
.selected-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.selected-item-card {
  background: var(--wizard-coal);
  border: 1px solid rgba(255,69,0,0.25);
  border-radius: var(--wizard-r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.selected-item-card:hover { border-color: rgba(255,69,0,0.55); }

.selected-item-image-wrap {
  position: relative;
  width: 100%;
  padding-top: 75%;  /* 4:3 ratio */
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
  overflow: hidden;
}

.selected-item-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selected-item-no-photo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-align: center;
  gap: 0.25rem;
}

.remove-item-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 5;
  line-height: 1;
}
.remove-item-btn:hover { background: rgba(220,38,38,0.85); }

.selected-item-info {
  padding: 0.75rem;
}

.selected-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wizard-phosphor);
  margin: 0 0 0.2rem;
  line-height: 1.3;
}

.selected-item-category {
  font-size: 0.7rem;
  color: var(--wizard-smoke);
  margin: 0 0 0.6rem;
}

.selected-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--wizard-ash);
  background: none;
  color: var(--wizard-phosphor);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.qty-btn:hover { border-color: var(--wizard-primary); color: var(--wizard-primary); background: rgba(255,69,0,0.1); }

.qty-value {
  font-family: var(--wizard-font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wizard-white);
  min-width: 1.5rem;
  text-align: center;
}

/* ── Catalog grid (photo-first cards) ─────────────────────────────────── */
.catalog-item-card {
  background: var(--wizard-coal);
  border: 1px solid var(--wizard-iron);
  border-radius: var(--wizard-r-md);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.catalog-item-card:hover { border-color: rgba(255,69,0,0.35); transform: translateY(-2px); }
.catalog-item-card.already-selected { border-color: rgba(255,69,0,0.4); background: rgba(255,69,0,0.05); }

.catalog-item-image-wrap {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
  overflow: hidden;
}

.catalog-item-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-item-no-photo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-align: center;
  gap: 0.25rem;
}

.already-selected-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--wizard-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.catalog-item-info {
  padding: 0.75rem;
}

.catalog-item-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wizard-phosphor);
  margin: 0 0 0.2rem;
}

.catalog-item-category {
  font-size: 0.7rem;
  color: var(--wizard-smoke);
  margin: 0 0 0.6rem;
}

.add-item-btn {
  width: 100%;
  padding: 0.5rem;
  border-radius: var(--wizard-r-sm);
  border: 1px solid var(--wizard-primary);
  background: rgba(255,69,0,0.1);
  color: var(--wizard-primary);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.add-item-btn:hover:not(:disabled) { background: var(--wizard-primary); color: #fff; }
.add-item-btn:disabled { border-color: var(--wizard-iron); color: var(--wizard-smoke); background: none; cursor: default; }

/* ── Category filter buttons ──────────────────────────────────────────── */
.category-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.category-filter-btn {
  font-family: var(--wizard-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wizard-silver);
  background: none;
  border: 1px solid var(--wizard-iron);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.category-filter-btn:hover,
.category-filter-btn.active {
  color: var(--wizard-primary);
  border-color: var(--wizard-primary);
  background: rgba(255,69,0,0.08);
}

.catalog-header, .selected-items-header {
  margin-bottom: 1rem;
}
.catalog-header p, .selected-items-header p {
  font-size: 0.82rem;
  color: var(--wizard-smoke);
  margin: 0.25rem 0 0;
}

/* ── Venue Step (Step 4) ─────────────────────────────────────────────── */
.venue-search-container {
  margin-bottom: 2rem;
}

.venue-search-container label,
.datetime-field label,
.form-field label {
  display: block;
  font-family: var(--wizard-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wizard-primary);
  margin-bottom: 0.6rem;
}

.venue-search-container input,
.datetime-field input,
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--wizard-coal);
  border: 1px solid var(--wizard-iron);
  border-radius: var(--wizard-r-md);
  padding: 0.9rem 1.1rem;
  font-family: var(--wizard-font-ui);
  font-size: 0.95rem;
  color: var(--wizard-phosphor);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.venue-search-container input:focus,
.datetime-field input:focus,
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--wizard-primary);
  box-shadow: 0 0 0 3px rgba(255,69,0,0.12);
}

.venue-search-container input::placeholder,
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--wizard-smoke);
}

/* Date / time grid */
.datetime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .datetime-grid { grid-template-columns: 1fr; }
}

#selected-venue-display {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255,69,0,0.07);
  border: 1px solid rgba(255,69,0,0.2);
  border-radius: var(--wizard-r-md);
  font-size: 0.88rem;
  color: var(--wizard-phosphor);
}

/* ── Customer Form (Step 5) ──────────────────────────────────────────── */
.customer-form {
  max-width: 520px;
  margin: 0 auto;
}

.customer-form h3 {
  font-family: var(--wizard-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wizard-white);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field small {
  display: block;
  font-family: var(--wizard-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--wizard-smoke);
  margin-top: 0.4rem;
}

/* Lead Summary Box */
#lead-summary {
  background: var(--wizard-coal);
  border: 1px solid var(--wizard-iron);
  border-radius: var(--wizard-r-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

#lead-summary h4 {
  font-family: var(--wizard-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wizard-primary);
  margin-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--wizard-fog);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--wizard-iron);
}

.summary-row:last-child { border-bottom: none; }
.summary-row span:first-child { color: var(--wizard-silver); }
.summary-row span:last-child { color: var(--wizard-phosphor); font-weight: 500; }

/* ── Nav Buttons ─────────────────────────────────────────────────────── */
.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--wizard-iron);
}

.wizard-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--wizard-font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--wizard-ease);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.wizard-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.wizard-btn-primary {
  background: var(--wizard-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.wizard-btn-primary::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s var(--wizard-ease), opacity 0.3s;
}

.wizard-btn-primary:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255,69,0,0.5), 0 6px 20px rgba(255,69,0,0.25);
}

.wizard-btn-primary:not(:disabled):hover::before {
  opacity: 1;
  transform: scale(1);
}

.wizard-btn-secondary {
  background: none;
  color: var(--wizard-silver);
  border: 1px solid var(--wizard-ash);
}

.wizard-btn-secondary:hover {
  border-color: var(--wizard-primary);
  color: var(--wizard-primary);
  background: rgba(255,69,0,0.06);
}

.wizard-btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Submit button */
#submit-lead-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1.1rem;
}

/* ── Thank You Page ──────────────────────────────────────────────────── */
.thank-you-page {
  display: none;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--wizard-obsidian);
}

.thank-you-page.visible { display: flex; }

.thank-you-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  animation: bounceIn 0.8s var(--wizard-ease) both;
}

@keyframes bounceIn {
  from { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.1); }
  to   { transform: scale(1); opacity: 1; }
}

.thank-you-page h1 {
  font-family: var(--wizard-font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wizard-white);
  margin-bottom: 1rem;
}

.thank-you-page > p {
  font-size: 1.1rem;
  color: var(--wizard-silver);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.lead-id-box {
  background: var(--wizard-coal);
  border: 1px solid rgba(255,69,0,0.25);
  border-radius: var(--wizard-r-lg);
  padding: 1.5rem 2.5rem;
  margin-bottom: 2.5rem;
  font-family: var(--wizard-font-mono);
}

.lead-id-box strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wizard-primary);
  margin-bottom: 0.5rem;
}

#lead-id-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wizard-white);
  letter-spacing: 0.1em;
}

.thank-you-steps {
  text-align: left;
  background: var(--wizard-obsidian-2);
  border: 1px solid var(--wizard-iron);
  border-radius: var(--wizard-r-lg);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  margin-bottom: 3rem;
}

.thank-you-steps h2 {
  font-family: var(--wizard-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wizard-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.thank-you-steps ol {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.thank-you-steps li {
  font-size: 0.9rem;
  color: var(--wizard-silver);
  line-height: 1.6;
}

.thank-you-steps li::marker { color: var(--wizard-primary); font-weight: 700; }

/* ── Loading States ──────────────────────────────────────────────────── */
.wizard-loading {
  text-align: center;
  padding: 3rem;
}

.wizard-loading .loading-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.wizard-loading p { color: var(--wizard-silver); font-size: 0.95rem; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .wizard-wrapper { padding: 1rem 0.75rem 6rem; }
  .wizard-container { border-radius: var(--wizard-r-lg); }
  .wizard-progress { padding: 1.5rem 1.25rem 2rem; }
  .wizard-step { padding: 2rem 1.25rem; }
  .wizard-step-title { font-size: 1.6rem; }
  .event-types-grid { grid-template-columns: repeat(2, 1fr); }
  .wizard-progress-steps { gap: 0.25rem; }
  .wizard-progress-step-label { display: none; }
  .wizard-nav { flex-direction: column-reverse; }
  .wizard-btn { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .event-types-grid { grid-template-columns: 1fr; }
}

/* ── Google Maps Autocomplete Styling ─────────────────────────────────── */
.pac-container {
  background: var(--wizard-coal) !important;
  border: 1px solid var(--wizard-iron) !important;
  border-radius: var(--wizard-r-md) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5) !important;
  font-family: var(--wizard-font-ui) !important;
  margin-top: 4px !important;
}

.pac-item {
  color: var(--wizard-silver) !important;
  border-top: 1px solid var(--wizard-iron) !important;
  padding: 0.65rem 1rem !important;
  font-size: 0.88rem !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}

.pac-item:hover,
.pac-item-selected {
  background: rgba(255,69,0,0.08) !important;
  color: var(--wizard-phosphor) !important;
}

.pac-item-query { color: var(--wizard-phosphor) !important; }
.pac-matched { color: var(--wizard-primary) !important; font-weight: 600 !important; }
.pac-icon { display: none !important; }

/* ══════════════════════════════════════════════════════════════════
   PACKAGE GRID — Enhanced (Task 4 & 6)
   ══════════════════════════════════════════════════════════════════ */

/* Section header */
.package-section-header {
  margin-bottom: 1.25rem;
}
.package-section-title {
  font-family: var(--wizard-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wizard-white);
  letter-spacing: -0.02em;
  margin: 0 0 0.25rem;
}
.package-section-subtitle {
  font-size: 0.8rem;
  color: var(--wizard-silver);
  margin: 0;
}

/* Packages responsive grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Package card head */
.package-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

/* Items preview label */
.package-items-preview__label {
  font-family: var(--wizard-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wizard-silver);
  margin-bottom: 0.5rem;
  border-top: 1px solid var(--wizard-iron);
  padding-top: 0.75rem;
}

/* Package select button */
.package-select-btn {
  margin-top: 1.25rem;
  width: 100%;
  font-family: var(--wizard-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wizard-primary);
  background: transparent;
  border: 1px solid rgba(255,69,0,0.4);
  border-radius: var(--wizard-r-sm);
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.package-select-btn:hover,
.package-card.selected .package-select-btn {
  background: var(--wizard-primary);
  color: #fff;
  border-color: var(--wizard-primary);
}

/* Custom package card — new layout */
.custom-package-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: transparent;
  border: 1px dashed var(--wizard-ash);
  border-radius: var(--wizard-r-lg);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  flex-wrap: wrap;
}
.custom-package-card:hover,
.custom-package-card.selected {
  border-color: var(--wizard-primary);
  background: rgba(255,69,0,0.04);
}
.custom-package-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.custom-package-body {
  flex: 1;
  min-width: 180px;
}
.custom-package-body h4 {
  font-family: var(--wizard-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wizard-white);
  margin: 0 0 0.35rem;
}
.custom-package-body p {
  font-size: 0.82rem;
  color: var(--wizard-silver);
  line-height: 1.55;
  margin: 0 0 0.75rem;
}
.custom-package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.custom-package-features li {
  font-size: 0.78rem;
  color: var(--wizard-fog);
  padding-left: 1.1rem;
  position: relative;
}
.custom-package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--wizard-primary);
  font-size: 0.68rem;
}
.custom-package-btn {
  flex-shrink: 0;
  align-self: center;
  font-family: var(--wizard-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wizard-primary);
  background: transparent;
  border: 1px solid rgba(255,69,0,0.4);
  border-radius: var(--wizard-r-sm);
  padding: 0.65rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.custom-package-btn:hover,
.custom-package-card.selected .custom-package-btn {
  background: var(--wizard-primary);
  color: #fff;
}

/* Package divider */
.package-divider {
  text-align: center;
  position: relative;
  margin: 1.5rem 0;
  color: var(--wizard-smoke);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--wizard-font-mono);
}
.package-divider::before,
.package-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 2rem);
  height: 1px;
  background: var(--wizard-iron);
}
.package-divider::before { left: 0; }
.package-divider::after  { right: 0; }

/* ── Package Items Qty Panel (Step 2, after selecting a package) ── */
.pkg-items-panel {
  background: var(--wizard-coal);
  border: 1px solid var(--wizard-iron);
  border-left: 3px solid var(--wizard-primary);
  border-radius: var(--wizard-r-lg);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
}
.pkg-items-panel__header {
  margin-bottom: 1rem;
}
.pkg-items-panel__header strong {
  display: block;
  font-family: var(--wizard-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wizard-white);
  margin-bottom: 0.2rem;
}
.pkg-items-panel__sub {
  font-size: 0.75rem;
  color: var(--wizard-silver);
}
.pkg-qty-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pkg-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pkg-qty-row:last-child { border-bottom: none; }
.pkg-qty-row__name {
  font-size: 0.85rem;
  color: var(--wizard-fog);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pkg-qty-row__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.pkg-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--wizard-ash);
  background: var(--wizard-iron);
  color: var(--wizard-phosphor);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.pkg-qty-btn:hover { background: var(--wizard-primary); border-color: var(--wizard-primary); }
.pkg-qty-num {
  font-family: var(--wizard-font-mono);
  font-size: 0.9rem;
  color: var(--wizard-white);
  min-width: 24px;
  text-align: center;
}

/* ── India Venue Address Fields (Step 4) ─────────────────────────── */
.venue-address-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.venue-address-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 580px) {
  .venue-address-row { grid-template-columns: 1fr; }
  .packages-grid    { grid-template-columns: 1fr; }
  .custom-package-card { flex-direction: column; }
  .custom-package-btn  { align-self: stretch; text-align: center; }
}

/* Select element dark theme */
.wizard-step select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--wizard-iron);
  border: 1px solid var(--wizard-ash);
  border-radius: var(--wizard-r-md);
  color: var(--wizard-phosphor);
  font-family: var(--wizard-font-ui);
  font-size: 0.9rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23989898' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.wizard-step select:focus {
  outline: none;
  border-color: var(--wizard-primary);
  box-shadow: 0 0 0 3px rgba(255,69,0,0.12);
}
.wizard-step select:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.wizard-step select option {
  background: var(--wizard-coal);
  color: var(--wizard-phosphor);
}

/* Desktop layout overflow fixes */
@media (min-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  #packages-list {
    display: block; /* let inner grids control layout */
  }
}

/* Mobile word-wrap fixes */
.package-name,
.package-description,
.package-items-list li,
.custom-package-body h4,
.custom-package-body p,
.pkg-qty-row__name {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ──────────────────────────────────────────────────────────────────────
   STEP 3 — Photo-first item cards (pre-made & custom modes)
   ────────────────────────────────────────────────────────────────────── */

/* Section headings */
.s3-heading { padding: 1.5rem 2.5rem 0; margin-bottom: 1.5rem; }
.s3-heading h3 { font-family: var(--wizard-font-display); font-size: 1.3rem; font-weight: 700; color: var(--wizard-white); margin: 0 0 0.35rem; }
.s3-heading h3 em { color: var(--wizard-primary); font-style: normal; }
.s3-heading p { font-size: 0.88rem; color: var(--wizard-smoke); margin: 0; }

/* Grid for selected items — 3 cols desktop, 2 tablet, 1 mobile */
.s3-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  padding: 0 2.5rem 1.5rem;
}
@media (max-width: 768px) { .s3-items-grid { padding: 0 1.25rem 1.25rem; } }
@media (max-width: 480px) { .s3-items-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

/* Individual item card */
.s3-item-card {
  background: var(--wizard-coal);
  border: 1px solid rgba(255,69,0,0.2);
  border-radius: 10px;
  overflow: hidden;
}

/* Image section */
.s3-item-card .s3-card-img,
.s3-catalog-card .s3-card-img {
  position: relative;
  width: 100%;
  padding-top: 72%;   /* ~4:3 */
  background: linear-gradient(135deg, #1a1a2e 0%, #2a1a50 100%);
  overflow: hidden;
}
.s3-item-card .s3-card-img img,
.s3-catalog-card .s3-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s3-no-img {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 1.6rem;
  gap: 0.2rem;
}
.s3-no-img small { font-size: 0.65rem; letter-spacing: 0.06em; }

/* Remove button (✕) overlaid on photo */
.remove-item-btn {
  position: absolute;
  top: 6px; right: 6px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s;
}
.remove-item-btn:hover { background: rgba(200,30,30,0.85); }

/* Card body */
.s3-item-card .s3-card-body,
.s3-catalog-card .s3-card-body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.s3-item-card .s3-card-body strong,
.s3-catalog-card .s3-card-body strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wizard-phosphor);
  line-height: 1.3;
}
.s3-cat-label {
  font-size: 0.68rem;
  color: var(--wizard-smoke);
  letter-spacing: 0.05em;
}

/* Qty controls */
.s3-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.qty-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--wizard-ash);
  background: none;
  color: var(--wizard-phosphor);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.18s;
  line-height: 1;
  flex-shrink: 0;
}
.qty-btn:hover { border-color: var(--wizard-primary); color: var(--wizard-primary); background: rgba(255,69,0,0.1); }
.qty-value {
  font-family: var(--wizard-font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wizard-white);
  min-width: 1.5rem;
  text-align: center;
}

/* ── Catalog browser (custom mode) ────────────────────────────── */
.s3-catalog-header {
  padding: 1.5rem 2.5rem 0;
  margin-bottom: 1rem;
}
.s3-catalog-header h3 {
  font-family: var(--wizard-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wizard-white);
  margin: 0 0 0.75rem;
}
@media (max-width: 768px) { .s3-catalog-header { padding: 1.25rem 1.25rem 0; } }

/* Category filter pills */
.category-filters {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.category-filter-btn {
  font-family: var(--wizard-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wizard-silver);
  background: none;
  border: 1px solid var(--wizard-iron);
  border-radius: 999px;
  padding: 0.28rem 0.8rem;
  cursor: pointer;
  transition: all 0.18s;
}
.category-filter-btn:hover,
.category-filter-btn.active { color: var(--wizard-primary); border-color: var(--wizard-primary); background: rgba(255,69,0,0.07); }

/* Catalog grid */
.s3-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  padding: 0 2.5rem 1.5rem;
}
@media (max-width: 768px) { .s3-catalog-grid { padding: 0 1.25rem 1.25rem; } }
@media (max-width: 480px) { .s3-catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

.s3-catalog-card {
  background: var(--wizard-coal);
  border: 1px solid var(--wizard-iron);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.18s;
}
.s3-catalog-card:hover { border-color: rgba(255,69,0,0.3); }
.s3-catalog-card.is-added { border-color: rgba(255,69,0,0.35); background: rgba(255,69,0,0.04); }

.s3-added-badge {
  position: absolute;
  top: 6px; right: 6px;
  background: var(--wizard-primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.add-item-btn {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.45rem;
  border-radius: 6px;
  border: 1px solid var(--wizard-primary);
  background: rgba(255,69,0,0.09);
  color: var(--wizard-primary);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
}
.add-item-btn:hover:not(:disabled) { background: var(--wizard-primary); color: #fff; }
.add-item-btn:disabled { border-color: var(--wizard-iron); color: var(--wizard-smoke); background: none; cursor: default; }
