﻿:root {
  --eb-bg: #f8f6f1;
  --eb-ink: #182235;
  --eb-muted: #6b7280;
  --eb-gold: #d3b26a;
  --eb-gold-soft: #fff6db;
  --eb-card: #ffffff;
  --eb-border: #e6e1d8;
  --eb-navy: #0b1b32;
  --eb-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.eb-form-grid.contact-private,
.eb-form-grid.contact-business {
  display: none !important;
}

.eb-form-grid.contact-private.is-visible,
.eb-form-grid.contact-business.is-visible {
  display: grid !important;
}

.electrician-booking-page {
  background: linear-gradient(180deg, #f8f6f1 0%, #f4f1ea 55%, #f1ede6 100%);
  color: var(--eb-ink);
  font-family: "Manrope", sans-serif;
}

body.electricity-body.electrician-booking-page {
  background: linear-gradient(180deg, #f8f6f1 0%, #f4f1ea 55%, #f1ede6 100%) !important;
  color: var(--eb-ink);
}

.eb-header {
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(248, 246, 241, 0.9);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
}

.eb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.eb-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--eb-ink);
  font-weight: 700;
}

.eb-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--eb-navy);
  color: var(--eb-gold);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.eb-brand-text {
  font-size: 18px;
  font-weight: 700;
}

.eb-brand-sub {
  font-size: 13px;
  color: var(--eb-gold);
  font-weight: 600;
}

.eb-header-actions {
  font-size: 13px;
  color: var(--eb-muted);
  display: flex;
  gap: 10px;
  align-items: center;
}

.eb-header-actions a {
  color: var(--eb-ink);
  text-decoration: none;
  font-weight: 600;
}

.eb-dot {
  opacity: 0.5;
}

.eb-main {
  padding: 40px 0 60px;
}

.eb-progress {
  background: var(--eb-card);
  border: 1px solid var(--eb-border);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: var(--eb-shadow);
  margin-bottom: 28px;
}

.eb-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.eb-progress-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--eb-muted);
  font-weight: 700;
}

.eb-progress-count {
  font-size: 12px;
  color: var(--eb-muted);
  font-weight: 600;
}

.eb-progress-bar {
  height: 8px;
  background: #f0ebe2;
  border-radius: 999px;
  overflow: hidden;
}

.eb-progress-bar span {
  display: block;
  height: 100%;
  background: var(--eb-gold);
  border-radius: 999px;
}

.eb-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.eb-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--eb-muted);
  font-weight: 600;
}

.eb-step span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e5e7eb;
  color: var(--eb-ink);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}

.eb-step.is-active span {
  background: var(--eb-gold);
  color: #111;
}

.eb-step.is-active {
  color: var(--eb-ink);
}

.eb-errors {
  background: #fff4f4;
  border: 1px solid #f5c2c7;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 13px;
}

.eb-errors ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.eb-card {
  background: var(--eb-card);
  border: 1px solid var(--eb-border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--eb-shadow);
  margin-bottom: 22px;
}

.eb-card h1,
.eb-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--eb-navy);
}

.eb-card h1 {
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 4px;
}

.eb-card h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 4px;
}

.eb-card p {
  color: var(--eb-muted);
  margin: 0;
}

.eb-card-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.eb-step-badge {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--eb-gold-soft);
  border: 1px solid #f1d58f;
  color: #8b6a1d;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.eb-hours {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.eb-hour-card {
  border: 1px solid var(--eb-border);
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  position: relative;
  background: #fff;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease, background 0.25s ease;
}

.eb-hour-card input {
  position: absolute;
  opacity: 0;
}

.eb-hour-card input:checked + .eb-hour-value,
.eb-hour-card input:checked ~ .eb-hour-label {
  color: var(--eb-navy);
}

.eb-hour-card:has(input:checked) {
  border-color: var(--eb-gold);
  box-shadow: 0 14px 28px rgba(211, 178, 106, 0.22);
  background: var(--eb-gold-soft);
}

.eb-hour-card:hover {
  transform: translateY(-3px);
  border-color: rgba(211, 178, 106, 0.6);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
}

.eb-hour-value {
  font-size: 28px;
  font-weight: 700;
  display: block;
}

.eb-hour-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--eb-muted);
}

.eb-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f4f7fb;
  border: 1px solid #d6e4f2;
  font-size: 13px;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.eb-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--eb-ink);
  margin-bottom: 8px;
  display: block;
}

.eb-textarea {
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.eb-inline-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--eb-muted);
}

.eb-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 16px;
  margin-top: 20px;
}

.eb-radio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.eb-radio-card {
  border: 1px solid var(--eb-border);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease, background 0.25s ease;
}

.eb-radio-card input {
  margin: 0;
  accent-color: var(--eb-gold);
}

.eb-radio-card:has(input:checked) {
  border-color: var(--eb-gold);
  background: var(--eb-gold-soft);
  box-shadow: 0 10px 20px rgba(211, 178, 106, 0.18);
}

.eb-radio-card:hover {
  transform: translateY(-2px);
  border-color: rgba(211, 178, 106, 0.6);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
}

.eb-logistics {
  background: #faf7ee;
  border: 1px solid #efdfb6;
  border-radius: 16px;
  padding: 14px;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.eb-logistics-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.eb-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--eb-muted);
  margin-top: 12px;
}

.eb-checkbox input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--eb-gold);
}

.eb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.eb-full {
  grid-column: 1 / -1;
}

.eb-alert {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff7de;
  border: 1px solid #f0d48e;
  font-size: 12px;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.eb-service-grid,
.eb-customer-grid,
.eb-arrival {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.eb-service-card,
.eb-customer-card,
.eb-arrival-card {
  border: 1px solid var(--eb-border);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, background 0.25s ease;
}

.eb-service-card input,
.eb-customer-card input,
.eb-arrival-card input {
  position: absolute;
  opacity: 0;
}

.eb-service-card:has(input:checked),
.eb-customer-card:has(input:checked),
.eb-arrival-card:has(input:checked) {
  border-color: var(--eb-gold);
  box-shadow: 0 14px 28px rgba(211, 178, 106, 0.2);
  background: var(--eb-gold-soft);
}

.eb-service-card:hover,
.eb-customer-card:hover,
.eb-arrival-card:hover {
  transform: translateY(-2px);
  border-color: rgba(211, 178, 106, 0.6);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
}

@keyframes eb-soft-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eb-card,
.eb-progress,
.eb-hour-card,
.eb-radio-card,
.eb-service-card,
.eb-customer-card,
.eb-arrival-card {
  animation: eb-soft-rise 0.6s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .electrician-booking-page * {
    animation: none !important;
    transition: none !important;
  }
}

.eb-service-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.eb-service-sub {
  font-size: 12px;
  color: var(--eb-muted);
}

.eb-customer-icon,
.eb-arrival-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f2efe7;
  color: #b5841f;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.eb-arrival-icon {
  font-size: 16px;
}

.eb-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.eb-actions-center {
  justify-content: center;
}

.eb-actions .btn {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.eb-actions .btn-primary {
  background: var(--eb-gold);
  border: none;
  color: #111;
  box-shadow: 0 12px 22px rgba(211, 178, 106, 0.25);
}

.eb-actions .btn-light {
  border: 1px solid var(--eb-border);
  background: #fff;
}

.eb-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
}

.eb-textarea:focus,
.eb-card input:focus,
.eb-card textarea:focus {
  outline: none;
  border-color: rgba(211, 178, 106, 0.7);
  box-shadow: 0 0 0 4px rgba(211, 178, 106, 0.18);
}

.eb-note:hover,
.eb-alert:hover,
.eb-logistics:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
}

.eb-schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 18px;
}

.eb-calendar {
  border: 1px solid rgba(211, 178, 106, 0.35);
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.eb-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 600;
}

.eb-calendar-nav {
  display: flex;
  gap: 8px;
}

.eb-calendar-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(211, 178, 106, 0.6);
  background: #fff7e3;
  color: #6f4c12;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.eb-calendar-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(211, 178, 106, 0.9);
  background: #f1deaa;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.eb-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
  font-size: 12px;
}

.eb-calendar-grid .eb-calendar-day {
  color: #2f2410;
}

.eb-calendar-grid .eb-calendar-day.is-muted {
  color: #8b6a1d;
}

.eb-calendar-day {
  padding: 10px 0;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.12);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.eb-calendar-day.is-muted {
  color: #c0c4cc;
  cursor: default;
  background: #f7f4ee;
  border-color: transparent;
}

.eb-calendar-day.is-disabled {
  color: #d3d6dd;
  cursor: not-allowed;
  background: #f5f2eb;
  border-color: transparent;
  box-shadow: none;
}

.eb-calendar-day.is-selected {
  background: linear-gradient(135deg, #e2c27a, var(--eb-gold));
  color: #1b1406;
  border-color: rgba(211, 178, 106, 0.8);
  box-shadow: 0 12px 24px rgba(211, 178, 106, 0.35);
}

.eb-calendar-day:hover:not(.is-muted):not(.is-selected):not(.is-disabled) {
  transform: translateY(-2px);
  border-color: rgba(211, 178, 106, 0.6);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
  background: #fffdf7;
}

.eb-calendar-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.eb-pricing-box {
  border: 1px solid var(--eb-border);
  border-radius: 16px;
  padding: 16px;
  background: #fdfbf6;
  display: grid;
  gap: 10px;
}

.eb-rot-box {
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff8e7;
  border: 1px solid #edd9a6;
}

.eb-checkbox-strong {
  margin-top: 0;
  color: var(--eb-ink);
  font-weight: 600;
}

.eb-price-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}

.eb-price-row-discount {
  color: #1f5f3b;
  font-weight: 600;
}

.eb-price-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--eb-border);
  padding-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--eb-navy);
}

.eb-pricing-check {
  margin-top: 14px;
}

.eb-complete-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.eb-complete-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 38px);
  margin-bottom: 6px;
  color: var(--eb-navy);
}

.eb-complete-step {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--eb-gold);
  font-weight: 700;
}

.eb-complete-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 20px;
}

.eb-summary {
  position: sticky;
  top: 100px;
  height: fit-content;
  display: grid;
  gap: 16px;
}

.eb-summary-card {
  border: 2px solid var(--eb-gold);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--eb-shadow);
  display: grid;
  gap: 12px;
}

.eb-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eb-summary-title {
  font-weight: 700;
  color: var(--eb-navy);
}

.eb-summary-step {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--eb-gold);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.eb-summary-row {
  display: grid;
  gap: 4px;
  font-size: 13px;
}

.eb-summary-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  color: var(--eb-muted);
}

.eb-confirm-btn {
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  background: var(--eb-gold);
  border: none;
  color: #111;
  box-shadow: 0 12px 22px rgba(211, 178, 106, 0.25);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.eb-confirm-btn:hover,
.eb-confirm-btn:focus {
  background: #c6a45d;
  color: #111;
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(211, 178, 106, 0.3);
}

.eb-disclaimer {
  font-size: 11px;
  color: var(--eb-muted);
  text-align: center;
}

.eb-help-card {
  background: var(--eb-navy);
  color: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.eb-help-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.eb-help-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eb-help-title {
  font-weight: 600;
}

.eb-help-phone {
  font-size: 13px;
  opacity: 0.85;
}

.eb-confirmation {
  max-width: 880px;
  margin: 0 auto;
  background: var(--eb-card);
  border: 1px solid var(--eb-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--eb-shadow);
  text-align: center;
}

.eb-confirmation-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--eb-gold-soft);
  border: 2px solid var(--eb-gold);
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: var(--eb-gold);
}

.eb-confirmation-ref {
  margin: 24px 0;
  background: #fdfbf4;
  border: 1px solid var(--eb-border);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.eb-receipt-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 10px 0 24px;
}

.eb-receipt-printable {
  margin-top: 22px;
}

.eb-receipt-print-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--eb-border);
  border-radius: 16px;
  background: #ffffff;
  margin-bottom: 16px;
}

.eb-invoice-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--eb-navy);
}

.eb-invoice-sub {
  font-size: 12px;
  color: var(--eb-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 4px;
}

.eb-invoice-contact {
  font-size: 11px;
  color: var(--eb-muted);
  margin-top: 8px;
}

.eb-invoice-meta {
  text-align: right;
  font-size: 12px;
  color: var(--eb-ink);
}

.eb-invoice-title {
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--eb-navy);
}

.eb-receipt-section {
  border: 1px solid var(--eb-border);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  display: grid;
  gap: 10px;
}

.eb-receipt-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--eb-muted);
}

.eb-receipt-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.eb-receipt-row strong {
  color: var(--eb-navy);
}

.eb-receipt-note strong {
  text-align: right;
}

.eb-receipt-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--eb-navy);
  border-top: 1px solid var(--eb-border);
  padding-top: 10px;
  margin-top: 6px;
}

.eb-receipt-disclaimer {
  font-size: 11px;
  color: var(--eb-muted);
}

.eb-confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.eb-confirmation-actions .btn {
  border-radius: 999px;
  padding: 10px 22px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  border: 1px solid rgba(211, 178, 106, 0.6);
  background: #fff;
  color: #5b4a22;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.eb-confirmation-actions .btn:hover,
.eb-confirmation-actions .btn:focus {
  transform: translateY(-2px);
  background: var(--eb-gold);
  color: #111;
  border-color: var(--eb-gold);
  box-shadow: 0 12px 22px rgba(211, 178, 106, 0.25);
}

.eb-next {
  margin-top: 22px;
}

.eb-next-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--eb-muted);
  margin-bottom: 14px;
}

.eb-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}

.eb-next-card {
  border: 1px solid var(--eb-border);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}

.eb-next-step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--eb-navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-bottom: 10px;
}

.eb-confirmation-footer {
  margin-top: 28px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.eb-confirmation-footer .btn-primary {
  background: var(--eb-gold);
  border: none;
  color: #111;
  box-shadow: 0 12px 22px rgba(211, 178, 106, 0.25);
}

.eb-confirmation-footer .btn-primary:hover,
.eb-confirmation-footer .btn-primary:focus {
  background: #c6a45d;
  color: #111;
}

.eb-support {
  font-size: 13px;
  color: var(--eb-muted);
}

.eb-footer {
  padding: 20px 0 40px;
  color: var(--eb-muted);
  font-size: 12px;
}

.eb-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.eb-footer-right {
  margin-left: auto;
}

@media (max-width: 992px) {
  .eb-stepper,
  .eb-hours,
  .eb-split,
  .eb-radio-grid,
  .eb-form-grid,
  .eb-service-grid,
  .eb-customer-grid,
  .eb-arrival,
  .eb-schedule-grid,
  .eb-complete-grid,
  .eb-next-grid {
    grid-template-columns: 1fr;
  }

  .eb-receipt-details {
    grid-template-columns: 1fr;
  }

  .eb-summary {
    position: static;
  }

  .eb-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .eb-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .eb-header-actions {
    flex-wrap: wrap;
  }

  .eb-main {
    padding: 30px 0 50px;
  }

  .eb-progress {
    padding: 16px 18px;
  }

  .eb-progress-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .eb-confirmation-actions,
  .eb-confirmation-footer {
    width: 100%;
  }

  .eb-confirmation-actions .btn,
  .eb-confirmation-footer .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .eb-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .eb-footer-right {
    margin-left: 0;
  }

  .eb-stepper {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 6px 4px 10px;
    position: relative;
  }

  .eb-step {
    flex: 0 0 auto;
    min-width: 120px;
    gap: 6px;
    font-size: 11px;
  }

  .eb-step span {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 1;
  }

  .eb-step div {
    white-space: nowrap;
  }
}

@media print {
  body {
    background: #ffffff !important;
  }

  body * {
    visibility: hidden;
  }

  .eb-receipt-printable,
  .eb-receipt-printable * {
    visibility: visible;
  }

  .eb-receipt-printable {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 24px;
  }

  .eb-receipt-print-header {
    border-radius: 10px;
    box-shadow: none;
  }

  .eb-receipt-details {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .eb-receipt-section {
    box-shadow: none;
    border: 1px solid #e6e1d8;
  }

  .eb-confirmation-actions,
  .eb-next,
  .eb-confirmation-footer {
    display: none !important;
  }
}

