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

:root {
  --ebr-neon-green: #52f57a;
  --ebr-neon-cyan: #2ad6ff;
  --ebr-neon-blue: #1ac7ff;
  --ebr-neon-glow-green: 0 0 18px rgba(82, 245, 122, 0.45);
  --ebr-neon-glow-cyan: 0 0 18px rgba(42, 214, 255, 0.45);

  --ebr-bg: #05060a;
  --ebr-surface: #0b0f1a;
  --ebr-ink: #f3f6fb;
  --ebr-muted: #9aa3b2;
  --ebr-line: rgba(42, 214, 255, 0.22);
  --ebr-accent: var(--ebr-neon-cyan);
  --ebr-accent-2: #18b5ff;
  --ebr-sidebar: #05060a;
  --ebr-success: rgba(82, 245, 122, 0.18);
  --ebr-danger: rgba(255, 88, 88, 0.18);
  --ebr-past: rgba(255, 255, 255, 0.04);
  --ebr-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  --ebr-font-body: "Outfit", "Inter", sans-serif;
  --ebr-font-display: "Space Grotesk", "Outfit", sans-serif;
}

.ebr-wrap {
  font-family: var(--ebr-font-body);
  color: var(--ebr-ink);
  letter-spacing: 0.01em;
  font-size: 15px;
  line-height: 1.55;
}

.ebr-title {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0;
}

.ebr-card {
  background: var(--ebr-surface);
  border: 1px solid var(--ebr-line);
  border-radius: 14px;
  box-shadow: var(--ebr-shadow);
}

.ebr-chip {
  font-size: 12px;
  color: #cfd6e2;
  border: 1px solid rgba(42, 214, 255, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(11, 15, 26, 0.9);
}

/* DJ Overview */
.ebr-dj-overview {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  background: radial-gradient(1200px 420px at top left, rgba(42, 214, 255, 0.12), transparent 60%), #05060a;
  border-radius: 18px;
  border: 1px solid #0f1522;
  color: #f4f7fb;
  font-family: var(--ebr-font-body);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.ebr-dj-overview .ebr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.ebr-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  flex-wrap: wrap;
}

.ebr-dj-overview .ebr-title {
  font-size: 34px;
  font-family: var(--ebr-font-display);
  background: linear-gradient(120deg, var(--ebr-neon-green), var(--ebr-neon-cyan));
  -webkit-background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ebr-dj-overview .ebr-price-toggle {
  color: #cfd6e2;
  font-family: var(--ebr-font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ebr-dj-overview .ebr-toggle {
  background: #0b0f1a;
  border-color: rgba(42, 214, 255, 0.35);
}

.ebr-dj-overview .ebr-toggle-slider {
  background: linear-gradient(120deg, var(--ebr-neon-green), var(--ebr-neon-cyan));
}

.ebr-dj-overview .ebr-toggle-option {
  color: #cfd6e2;
}

.ebr-dj-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.ebr-dj-filter label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #cfd6e2;
  font-size: 12px;
}

.ebr-dj-filter select {
  min-width: 200px;
  background: #0b0f1a;
  color: #f4f7fb;
  border: 1px solid rgba(42, 214, 255, 0.4);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--ebr-font-body);
}

.ebr-dj-filter select:focus {
  outline: none;
  border-color: var(--ebr-neon-cyan);
  box-shadow: var(--ebr-neon-glow-cyan);
}

.ebr-dj-card {
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 2px solid rgba(42, 214, 255, 0.6);
  background: #05060a;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

.ebr-dj-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--ebr-neon-glow-cyan);
}

.ebr-dj-overview .ebr-dj-card:nth-child(odd) {
  border-color: rgba(82, 245, 122, 0.7);
  box-shadow: var(--ebr-neon-glow-green);
}

.ebr-dj-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.18s ease;
}

.ebr-dj-card:hover img {
  transform: scale(1.02);
}

.ebr-dj-card .ebr-card-body {
  padding: 14px 16px 18px;
}

.ebr-dj-card .ebr-name {
  margin: 0;
  font-weight: 600;
  color: #ffffff;
  font-family: var(--ebr-font-display);
}

.ebr-card-media {
  aspect-ratio: 1 / 1;
  background: #0b0f1a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ebr-card-disabled {
  pointer-events: none;
  opacity: 0.85;
}

.ebr-card-fallback {
  color: #9aa3b2;
  font-size: 12px;
}

.ebr-card-price {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  color: #e8f9ff;
}

/* Detail page */
.ebr-resource-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 16px;
}

.ebr-resource-detail .ebr-price {
  font-weight: 600;
  color: var(--ebr-neon-green);
}

.ebr-dj-detail-page {
  background: radial-gradient(1000px 420px at top left, rgba(42, 214, 255, 0.12), transparent 60%), #07090f;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(42, 214, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(82, 245, 122, 0.08);
}

.ebr-dj-hero {
  margin-bottom: 18px;
}

.ebr-dj-title {
  margin: 0 0 6px;
  font-family: var(--ebr-font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, var(--ebr-neon-green), var(--ebr-neon-cyan));
  -webkit-background-clip: text;
  color: transparent;
}

.ebr-dj-real-name {
  margin: 0 0 6px;
  color: #cfd6e2;
}

.ebr-dj-price {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--ebr-neon-green);
  font-weight: 600;
}

.ebr-dj-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0 18px;
}

.ebr-dj-content {
  margin: 0 0 24px;
  color: #dfe5f1;
  line-height: 1.6;
  font-size: 14px;
}

.ebr-product-detail {
  background: radial-gradient(1000px 420px at top right, rgba(82, 245, 122, 0.08), transparent 55%), #07090f;
  border-radius: 22px;
  padding: 26px;
  color: #f3f4f7;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(42, 214, 255, 0.08);
  font-family: var(--ebr-font-body);
}

.ebr-breadcrumbs {
  font-size: 12px;
  color: #9aa3b2;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-family: var(--ebr-font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ebr-breadcrumbs a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ebr-breadcrumbs a:hover {
  color: var(--ebr-neon-cyan);
  border-bottom-color: var(--ebr-neon-cyan);
}

.ebr-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  margin-bottom: 22px;
}

.ebr-product-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ebr-product-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: #0b0f1a;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(82, 245, 122, 0.35);
  box-shadow: 0 0 24px rgba(82, 245, 122, 0.12);
}

.ebr-product-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ebr-product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 10px;
}

.ebr-product-thumb {
  border: 1px solid rgba(42, 214, 255, 0.25);
  background: #0c1018;
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ebr-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ebr-product-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(42, 214, 255, 0.6);
  box-shadow: var(--ebr-neon-glow-cyan);
}

.ebr-product-thumb.is-active {
  border-color: var(--ebr-neon-cyan);
  box-shadow: 0 0 0 1px rgba(42, 214, 255, 0.6), var(--ebr-neon-glow-cyan);
  transform: translateY(-1px);
}

.ebr-product-panel {
  border: 2px solid rgba(42, 214, 255, 0.75);
  border-radius: 22px;
  padding: 26px;
  background: linear-gradient(160deg, rgba(7, 10, 17, 0.95), rgba(11, 14, 24, 0.95));
  min-height: 100%;
  box-shadow: 0 0 0 1px rgba(42, 214, 255, 0.2), 0 0 28px rgba(42, 214, 255, 0.16);
}

.ebr-product-title {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 700;
  font-family: var(--ebr-font-display);
}

.ebr-product-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--ebr-neon-green);
  margin-bottom: 16px;
}

.ebr-product-detail .ebr-price {
  color: inherit;
  font-weight: inherit;
}

.ebr-product-section-title {
  margin: 18px 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(42, 214, 255, 0.85);
  font-family: var(--ebr-font-display);
}

.ebr-product-description {
  font-size: 14px;
  line-height: 1.65;
  color: #dfe5f1;
}

.ebr-product-detail .ebr-bullet-list {
  color: #d9dce3;
}

.ebr-product-detail .ebr-bullet-list li::before {
  color: var(--ebr-neon-green);
}

@media (max-width: 980px) {
  .ebr-product-layout {
    grid-template-columns: 1fr;
  }
  .ebr-product-panel {
    padding: 22px;
  }
}

@media (max-width: 700px) {
  .ebr-dj-detail-page {
    padding: 20px;
  }
}

.ebr-book-dj-btn.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.ebr-book-note {
  margin: 6px 0 0;
  font-size: 12px;
  color: #ff9a9a;
}

.ebr-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.ebr-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(42, 214, 255, 0.2);
}

/* Calendar */
.ebr-resource-calendar {
  border: 1px solid var(--ebr-line);
  border-radius: 14px;
  padding: 16px;
  background: var(--ebr-surface);
  color: var(--ebr-ink);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.ebr-resource-calendar .ebr-cal-weekdays,
.ebr-resource-calendar .ebr-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.ebr-resource-calendar .ebr-cal-wd {
  text-align: center;
  font-size: 12px;
  color: var(--ebr-muted);
}

.ebr-resource-calendar .ebr-cal-day {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background: #0f141f;
  color: #dbe3f0;
}

.ebr-resource-calendar .ebr-cal-empty {
  border: none;
  background: transparent;
}

.ebr-resource-calendar .ebr-cal-available {
  background: var(--ebr-success);
  border-color: rgba(82, 245, 122, 0.55);
  color: #e6ffef;
}

.ebr-resource-calendar .ebr-cal-unavailable {
  background: var(--ebr-danger);
  border-color: rgba(255, 88, 88, 0.55);
  color: #ffd1d1;
}

.ebr-resource-calendar .ebr-cal-request {
  background: rgba(255, 200, 84, 0.22);
  border-color: rgba(255, 200, 84, 0.55);
  color: #ffe6a6;
}

.ebr-resource-calendar .ebr-cal-past {
  background: var(--ebr-past);
  border-color: rgba(255, 255, 255, 0.08);
  color: #6b7280;
}

.ebr-resource-calendar .ebr-cal-clickable {
  cursor: pointer;
}

.ebr-resource-calendar .ebr-cal-day.is-selected {
  outline: 2px solid var(--ebr-neon-cyan);
  outline-offset: -2px;
  box-shadow: var(--ebr-neon-glow-cyan);
}

.ebr-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ebr-cal-title {
  font-size: 16px;
  font-family: var(--ebr-font-display);
  color: #f3f6fb;
}

.ebr-cal-grid {
  margin-top: 12px;
}

.ebr-cal-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 12px;
  color: #9aa3b2;
}

.ebr-cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ebr-cal-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.ebr-cal-legend-available .ebr-cal-legend-dot {
  background: var(--ebr-success);
  border: 1px solid rgba(82, 245, 122, 0.6);
}

.ebr-cal-legend-request .ebr-cal-legend-dot {
  background: rgba(255, 200, 84, 0.25);
  border: 1px solid rgba(255, 200, 84, 0.6);
}

.ebr-cal-legend-unavailable .ebr-cal-legend-dot {
  background: var(--ebr-danger);
  border: 1px solid rgba(255, 88, 88, 0.6);
}

.ebr-cal-legend-past .ebr-cal-legend-dot {
  background: var(--ebr-past);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Booking wizard */
.ebr-wizard {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 320px;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--ebr-shadow);
  border: 1px solid rgba(42, 214, 255, 0.2);
  background: #05060a;
}

.ebr-wizard-sidebar {
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.98), rgba(10, 14, 22, 0.98));
  color: #fff;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid rgba(42, 214, 255, 0.12);
}

.ebr-wizard-summary {
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.98), rgba(10, 14, 22, 0.98));
  color: #fff;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid rgba(42, 214, 255, 0.12);
}

.ebr-wizard-brand {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(42, 214, 255, 0.18);
}

.ebr-wizard-title {
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  font-family: var(--ebr-font-display);
  text-transform: uppercase;
}

.ebr-wizard-sub {
  font-size: 13px;
  opacity: 0.9;
}

.ebr-wizard-meta {
  margin-top: 10px;
  display: grid;
  gap: 6px;
  font-size: 12px;
}

.ebr-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: rgba(255,255,255,0.85);
}

.ebr-meta-label {
  opacity: 0.75;
}

.ebr-meta-value {
  font-weight: 600;
  text-align: right;
}

.ebr-wizard-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ebr-step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(42, 214, 255, 0.12);
}

.ebr-step-indicator.is-active {
  background: rgba(42, 214, 255, 0.12);
  border-color: rgba(42, 214, 255, 0.4);
  box-shadow: var(--ebr-neon-glow-cyan);
}

.ebr-step-label {
  font-weight: 600;
  font-size: 13px;
}

.ebr-step-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.ebr-step-indicator.is-active .ebr-step-dot {
  background: var(--ebr-neon-cyan);
  border-color: var(--ebr-neon-cyan);
  box-shadow: var(--ebr-neon-glow-cyan);
}

.ebr-step-indicator.is-done .ebr-step-dot {
  background: var(--ebr-neon-green);
  border-color: var(--ebr-neon-green);
  box-shadow: var(--ebr-neon-glow-green);
  position: relative;
}

.ebr-step-indicator.is-done .ebr-step-dot::after {
  content: "✓";
  color: #fff;
  font-size: 12px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebr-wizard-main {
  padding: 22px 24px;
  background: #0b0f1a;
}

.ebr-wizard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(42, 214, 255, 0.15);
}

.ebr-step-title {
  font-family: var(--ebr-font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, var(--ebr-neon-green), var(--ebr-neon-cyan));
  -webkit-background-clip: text;
  color: transparent;
}

.ebr-price-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #cfd6e2;
}

.ebr-price-toggle--inline {
  margin-left: 0;
  margin-top: 8px;
}

.ebr-vat-label {
  font-size: 12px;
  color: #cfd6e2;
}

.ebr-summary {
  border: 2px solid rgba(42, 214, 255, 0.45);
  border-radius: 14px;
  padding: 14px;
  background: #0b0f1a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), var(--ebr-neon-glow-cyan);
  overflow-x: auto;
}

.ebr-summary--sidebar {
  padding: 12px;
}

.ebr-summary-heading {
  font-family: var(--ebr-font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  color: #f3f6fb;
  margin: 0 0 10px;
}

.ebr-step-7 .ebr-summary {
  border-color: rgba(42, 214, 255, 0.7);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), var(--ebr-neon-glow-cyan);
}

.ebr-step-8 .ebr-summary {
  border-color: rgba(82, 245, 122, 0.75);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), var(--ebr-neon-glow-green);
}

.ebr-summary-meta {
  font-size: 12px;
  color: #cbd3df;
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}

.ebr-summary-table {
  width: 100%;
  border-collapse: collapse;
  background: #0b0f1a;
  border: 2px solid rgba(42, 214, 255, 0.35);
  border-radius: 12px;
  overflow: hidden;
  min-width: 520px;
  box-shadow: none;
}

.ebr-summary-table--compact {
  min-width: 0;
}

.ebr-summary-table--compact th,
.ebr-summary-table--compact td {
  padding: 8px 10px;
  font-size: 12px;
}

.ebr-summary-table--compact .ebr-summary-desc {
  font-size: 12px;
}

.ebr-summary-table--compact .ebr-summary-thumb {
  width: 32px;
  height: 32px;
}

.ebr-summary-table tbody tr td:first-child {
  box-shadow: none;
}

.ebr-summary-table thead th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #9aa3b2;
  font-family: var(--ebr-font-display);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(42, 214, 255, 0.15);
}

.ebr-summary-table thead th:first-child,
.ebr-summary-table tbody td:first-child,
.ebr-summary-table tfoot td:first-child {
  border-left: 1px solid rgba(42, 214, 255, 0.2);
}

.ebr-summary-table thead th:last-child,
.ebr-summary-table tbody td:last-child,
.ebr-summary-table tfoot td:last-child {
  border-right: 1px solid rgba(42, 214, 255, 0.2);
}

.ebr-summary-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
  color: #dfe5f1;
  font-size: 14px;
}

.ebr-summary-table tr:last-child td {
  border-bottom: none;
}

.ebr-summary-table tfoot td {
  border-top: 1px solid rgba(42, 214, 255, 0.2);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
}

.ebr-summary-table tfoot td:last-child {
  color: var(--ebr-neon-green);
}

.ebr-summary-total-label {
  text-align: left;
}

.ebr-summary-line {
  display: block;
}

.ebr-section-label {
  margin: 16px 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #9aa3b2;
  border-top: 1px solid rgba(42, 214, 255, 0.2);
  padding-top: 12px;
  font-family: var(--ebr-font-display);
}

.ebr-summary-meta .ebr-section-label:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 8px;
}

.ebr-inline-fields {
  display: flex;
  gap: 8px;
}

.ebr-inline-fields input {
  flex: 1 1 auto;
}

.ebr-inline-fields input:first-child {
  max-width: 140px;
}

.ebr-summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ebr-summary-thumb {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #0f141f;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ebr-summary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ebr-summary-desc {
  font-weight: 600;
  color: #f2f5fb;
  font-size: 14px;
}

.ebr-summary-price {
  text-align: right;
  white-space: nowrap;
}

.ebr-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border: 1px solid rgba(42, 214, 255, 0.35);
  border-radius: 999px;
  background: #0b0f1a;
  gap: 4px;
  user-select: none;
}

.ebr-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ebr-toggle-option {
  position: relative;
  z-index: 2;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  color: #9aa3b2;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.ebr-toggle-slider {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  width: calc(50% - 2px);
  background: linear-gradient(120deg, var(--ebr-neon-green), var(--ebr-neon-cyan));
  border-radius: 999px;
  box-shadow: var(--ebr-neon-glow-cyan);
  transition: transform 0.2s ease;
  z-index: 1;
}

.ebr-toggle input[value="incl"]:checked ~ .ebr-toggle-slider {
  transform: translateX(100%);
}

.ebr-toggle input[value="excl"]:checked ~ label[for$="_excl"] {
  color: #05060a;
}

.ebr-toggle input[value="incl"]:checked ~ label[for$="_incl"] {
  color: #05060a;
}

.ebr-toggle-yn input[value="yes"]:checked ~ .ebr-toggle-slider {
  transform: translateX(100%);
}

.ebr-toggle-yn.ebr-toggle-yn-yesfirst input[value="yes"]:checked ~ .ebr-toggle-slider {
  transform: translateX(0);
}

.ebr-toggle-yn.ebr-toggle-yn-yesfirst input[value="no"]:checked ~ .ebr-toggle-slider {
  transform: translateX(100%);
}

.ebr-toggle-yn input[value="no"]:checked ~ label[for$="_no"],
.ebr-toggle-yn input[value="yes"]:checked ~ label[for$="_yes"] {
  color: #05060a;
}

.ebr-back {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(42, 214, 255, 0.35);
  background: #0b0f1a;
  color: #f3f6fb;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ebr-back:hover {
  border-color: var(--ebr-neon-cyan);
  color: var(--ebr-neon-cyan);
  box-shadow: var(--ebr-neon-glow-cyan);
}

.ebr-date-panel {
  border: 1px solid rgba(42, 214, 255, 0.2);
  border-radius: 14px;
  padding: 18px;
  background: #0b0f1a;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
}

.ebr-wizard .ebr-date-panel {
  border: 2px solid rgba(42, 214, 255, 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4), var(--ebr-neon-glow-cyan);
}

.ebr-dj-calendar-panel {
  margin-top: 24px;
  border: 2px solid rgba(82, 245, 122, 0.7);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4), var(--ebr-neon-glow-green);
  clear: both;
}

.ebr-dj-detail {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 2fr;
  gap: 16px;
  align-items: start;
  margin-top: 12px;
}

.ebr-wizard .ebr-dj-detail {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 16px;
  align-items: start;
}

.ebr-dj-detail-media {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(42, 214, 255, 0.25);
  background: #0b0f1a;
}

.ebr-dj-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ebr-dj-detail-content {
  font-size: 14px;
  color: #dfe5f1;
}

@media (max-width: 700px) {
  .ebr-dj-detail {
    grid-template-columns: 1fr;
  }
  .ebr-wizard .ebr-dj-detail {
    grid-template-columns: 1fr;
  }
}

.ebr-date-panel-head {
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 6px;
  font-family: var(--ebr-font-display);
}

.ebr-date-panel-sub {
  color: #9aa3b2;
  font-size: 12px;
  margin-bottom: 14px;
}

.ebr-date-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.ebr-time-grid {
  display: grid;
  gap: 8px;
  flex: 1;
  min-width: 240px;
}

.ebr-end-time-grid {
  flex: 1 1 100%;
  width: 100%;
}

.ebr-time-label {
  font-size: 12px;
  color: #9aa3b2;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ebr-time-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 8px;
}

.ebr-time-option {
  border: 1px solid rgba(42, 214, 255, 0.18);
  background: #0b0f1a;
  border-radius: 10px;
  padding: 8px 6px;
  font-size: 12px;
  font-weight: 600;
  color: #dfe5f1;
  cursor: pointer;
  transition: all 0.15s ease;
}

.ebr-time-option:hover {
  border-color: var(--ebr-neon-cyan);
  color: var(--ebr-neon-cyan);
  box-shadow: var(--ebr-neon-glow-cyan);
}

.ebr-time-option.is-selected {
  background: linear-gradient(120deg, rgba(82, 245, 122, 0.85), rgba(42, 214, 255, 0.85));
  border-color: rgba(42, 214, 255, 0.85);
  color: #05060a;
  box-shadow: var(--ebr-neon-glow-cyan);
}

.ebr-extra-hour-note {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #9aa3b2;
}

.ebr-help-text {
  display: block;
  margin: 4px 0 0;
  font-size: 12px;
  color: #9aa3b2;
}

.ebr-help-text--block {
  margin: 0 0 10px;
}

.ebr-time-summary {
  margin-top: 6px;
  font-size: 12px;
  color: #cfd6e2;
  display: none;
}

.ebr-availability-msg {
  margin: 8px 0 0;
  font-size: 12px;
  color: #ff9a9a;
}

.ebr-bullet-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: #dfe5f1;
}

.ebr-bullet-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.ebr-bullet-list li::before {
  content: "✓";
  color: #2bb673;
  font-weight: 700;
  margin-top: 1px;
}

.ebr-sound-card input.ebr-sound-choice {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ebr-extra-card input.ebr_extra,
.ebr-extra-card input[type="radio"][name="ebr_dj_choice"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ebr-extra-card.is-selected {
  border-color: rgba(82, 245, 122, 0.8);
  box-shadow: 0 0 0 2px rgba(82, 245, 122, 0.35), var(--ebr-neon-glow-green);
  background: rgba(82, 245, 122, 0.1);
}

.ebr-extras-grid .ebr-extra-card.is-selected {
  border-color: rgba(82, 245, 122, 0.85);
  box-shadow: 0 0 0 2px rgba(82, 245, 122, 0.4), var(--ebr-neon-glow-green);
}

.ebr-extra-card.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  filter: saturate(0.6);
}

.ebr-venue-unknown-row {
  display: none;
}

.ebr-venue-unknown-row .ebr-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ebr-venue-field-row.is-hidden {
  display: none;
}

.ebr-form-grid {
  display: grid;
  gap: 12px;
  max-width: 620px;
  border: 2px solid rgba(42, 214, 255, 0.45);
  border-radius: 14px;
  padding: 14px;
  background: #0b0f1a;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35), var(--ebr-neon-glow-cyan);
  margin-bottom: 12px;
}

.ebr-step-6 .ebr-form-grid:nth-of-type(2) {
  border-color: rgba(82, 245, 122, 0.6);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35), var(--ebr-neon-glow-green);
}

.ebr-form-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  align-items: center;
}

.ebr-form-label {
  font-size: 12px;
  color: #9aa3b2;
  text-transform: none;
}

.ebr-form-field input {
  width: 100%;
}

.ebr-terms {
  margin: 14px 0;
  font-size: 12px;
  color: #9aa3b2;
}

.ebr-terms a {
  color: #cfd6e2;
  text-decoration: underline;
}

.ebr-loading {
  margin-top: 8px;
  color: #9aa3b2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ebr-confirmation-message {
  margin: 0 0 12px;
  color: #cfd6e2;
}

.ebr-error-text {
  color: #ff9a9a;
}

.ebr-message {
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(42, 214, 255, 0.2);
  border-radius: 10px;
  color: #dfe5f1;
}

@media (max-width: 700px) {
  .ebr-form-row {
    grid-template-columns: 1fr;
  }
}

#ebr_msg.is-error {
  background: rgba(255, 88, 88, 0.12);
  border-color: rgba(255, 88, 88, 0.45);
  color: #ffd1d1;
}

#ebr_msg.is-ok {
  background: rgba(82, 245, 122, 0.12);
  border-color: rgba(82, 245, 122, 0.45);
  color: #d9ffe6;
}


.ebr-action-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--ebr-line);
  gap: 8px;
}

.ebr-step-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--ebr-line);
}

.ebr-step-intro {
  margin: 0 0 12px;
  color: #cfd6e2;
  font-size: 13px;
  line-height: 1.5;
}

.ebr-step-intro p {
  margin: 0 0 8px;
}

.ebr-step-intro p:last-child {
  margin-bottom: 0;
}

.ebr-wizard h3 {
  font-family: var(--ebr-font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
  color: #f3f6fb;
}

@media (max-width: 1200px) {
  .ebr-wizard {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .ebr-wizard-summary {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid rgba(42, 214, 255, 0.12);
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ebr-wizard-summary .ebr-wizard-brand {
    flex: 0 0 220px;
  }
  .ebr-wizard-summary .ebr-summary {
    flex: 1 1 320px;
  }
}

@media (max-width: 900px) {
  .ebr-wizard {
    grid-template-columns: 1fr;
  }
  .ebr-wizard-sidebar {
    border-radius: 0;
  }
  .ebr-wizard-summary {
    border-left: 0;
    border-top: 1px solid rgba(42, 214, 255, 0.12);
    flex-direction: column;
  }
  .ebr-wizard-summary .ebr-wizard-brand {
    flex: 1 1 auto;
  }
  .ebr-wizard-main {
    padding: 16px;
  }
  .ebr-wizard-steps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .ebr-step-indicator {
    flex: 1 1 auto;
  }
}

.ebr-extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.ebr-extra-card {
  border: 2px solid rgba(42, 214, 255, 0.55);
  border-radius: 12px;
  padding: 12px;
  background: #0b0f1a;
  color: #e6edf7;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35), var(--ebr-neon-glow-cyan);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ebr-extras-grid .ebr-extra-card:nth-child(odd) {
  border-color: rgba(82, 245, 122, 0.7);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35), var(--ebr-neon-glow-green);
}

.ebr-extra-card:hover {
  border-color: rgba(42, 214, 255, 0.6);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.45), var(--ebr-neon-glow-cyan);
  transform: translateY(-2px);
}

.ebr-extra-card .ebr-price {
  display: block;
  margin-top: 6px;
  color: var(--ebr-neon-green);
  font-weight: 600;
}

.ebr-extra-card input {
  margin-right: 6px;
}

.ebr-extra-more {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #05060a;
  background: linear-gradient(120deg, var(--ebr-neon-green), var(--ebr-neon-cyan));
  border: 1px solid rgba(42, 214, 255, 0.6);
  border-radius: 999px;
  padding: 6px 10px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.ebr-extra-more:hover {
  background: linear-gradient(120deg, rgba(82, 245, 122, 0.85), rgba(42, 214, 255, 0.85));
  border-color: rgba(42, 214, 255, 0.85);
  transform: translateY(-1px);
}

.ebr-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #0f141f;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ebr-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ebr-img-fallback {
  font-size: 12px;
  color: #9aa3b2;
}

.ebr-carousel-prev,
.ebr-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.ebr-carousel-prev { left: 6px; }
.ebr-carousel-next { right: 6px; }
.ebr-total {
  padding: 12px;
  background: #0b0f1a;
  border: 1px solid rgba(42, 214, 255, 0.2);
  border-radius: 12px;
}

.ebr-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--ebr-neon-cyan);
  border-radius: 50%;
  animation: ebr-spin 0.8s linear infinite;
  display: inline-block;
}

.ebr-processing {
  margin-top: 8px;
  color: #9aa3b2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ebr-processing.is-hidden {
  display: none;
}

.ebr-wizard.is-complete .ebr-step-indicator {
  pointer-events: none;
  opacity: 0.55;
}

@keyframes ebr-spin {
  to { transform: rotate(360deg); }
}

/* Form fields */
.ebr-wrap input[type="text"],
.ebr-wrap input[type="email"],
.ebr-wrap input[type="date"],
.ebr-wrap input[type="time"],
.ebr-wrap input[type="number"],
.ebr-wrap select {
  border: 1px solid rgba(42, 214, 255, 0.25);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 14px;
  background: #0b0f1a;
  color: #f3f6fb;
}

.ebr-wrap input[type="text"]::placeholder,
.ebr-wrap input[type="email"]::placeholder {
  color: #6f7b8f;
}

.ebr-wrap input[type="text"]:focus,
.ebr-wrap input[type="email"]:focus,
.ebr-wrap input[type="date"]:focus,
.ebr-wrap input[type="time"]:focus,
.ebr-wrap input[type="number"]:focus,
.ebr-wrap select:focus {
  outline: none;
  border-color: var(--ebr-neon-cyan);
  box-shadow: var(--ebr-neon-glow-cyan);
}

.ebr-wrap .button.button-primary {
  background: linear-gradient(120deg, var(--ebr-neon-green), var(--ebr-neon-cyan));
  border-color: rgba(42, 214, 255, 0.6);
  color: #05060a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
}

.ebr-wrap .button.button-primary:hover {
  background: linear-gradient(120deg, rgba(82, 245, 122, 0.85), rgba(42, 214, 255, 0.85));
  border-color: rgba(42, 214, 255, 0.9);
}

.ebr-wrap .button {
  border-radius: 10px;
  padding: 8px 14px;
  background: #0b0f1a;
  border: 1px solid rgba(42, 214, 255, 0.25);
  color: #dfe5f1;
  font-size: 13px;
}

.ebr-wrap .button:hover {
  background: rgba(42, 214, 255, 0.12);
  border-color: rgba(42, 214, 255, 0.6);
  color: #f3f6fb;
  box-shadow: var(--ebr-neon-glow-cyan);
}

/* Supplier login */
.ebr-login-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px;
}

.ebr-login-card {
  padding: 28px;
  border: 1px solid rgba(42, 214, 255, 0.4);
  background: radial-gradient(900px 380px at top right, rgba(82, 245, 122, 0.12), transparent 55%), #05060a;
}

.ebr-login-content {
  max-width: 520px;
}

.ebr-login-intro {
  color: #c7d1e2;
  margin-bottom: 16px;
}

.ebr-login-error {
  background: rgba(255, 88, 88, 0.12);
  border: 1px solid rgba(255, 88, 88, 0.4);
  color: #ffb6b6;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.ebr-login-form {
  display: grid;
  gap: 14px;
}

.ebr-login-form .ebr-form-field {
  display: grid;
  gap: 6px;
}

.ebr-login-form label {
  font-size: 12px;
  color: #cfd6e2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ebr-login-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #9aa3b2;
}

.ebr-login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ebr-login-forgot {
  color: var(--ebr-neon-cyan);
  text-decoration: none;
}

.ebr-login-forgot:hover {
  text-decoration: underline;
}

.ebr-login-submit {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 720px) {
  .ebr-login-card {
    padding: 22px;
  }
  .ebr-login-content {
    max-width: 100%;
  }
  .ebr-login-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ebr-wizard .button {
  border-radius: 10px;
  padding: 8px 14px;
  background: #0b0f1a;
  border-color: rgba(42, 214, 255, 0.25);
  color: #dfe5f1;
}

.ebr-wizard .button:hover {
  background: rgba(42, 214, 255, 0.12);
  border-color: rgba(42, 214, 255, 0.6);
  color: #f3f6fb;
  box-shadow: var(--ebr-neon-glow-cyan);
}

.ebr-cal-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ebr-cal-controls select {
  min-width: 130px;
  font-size: 13px;
  font-weight: 600;
}

.ebr-cal-nav {
  display: inline-flex;
  gap: 6px;
}

.ebr-cal-nav .ebr-cal-prev,
.ebr-cal-nav .ebr-cal-next {
  border: 1px solid rgba(42, 214, 255, 0.25);
  background: #0b0f1a;
  color: #e6edf7;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ebr-cal-nav .ebr-cal-prev:hover,
.ebr-cal-nav .ebr-cal-next:hover {
  border-color: var(--ebr-neon-cyan);
  color: var(--ebr-neon-cyan);
  box-shadow: var(--ebr-neon-glow-cyan);
}
