@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Nunito:wght@400;500;600;700&display=swap');

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

:root {
  --primary:       #bf6474;
  --primary-dark:  #a3515f;
  --primary-light: rgba(191, 100, 116, 0.09);

  --available-bg:     #fdf0f2;
  --available-border: #d9a0aa;
  --booked-bg:        #fdf8ec;
  --booked-text:      #8a6a30;
  --closed-bg:        #f9f3f4;
  --closed-text:      #c8a0a8;
  --past-text:        #d4c0c4;
  --today-border:     #bf6474;

  --text:         #2a1e22;
  --text-muted:   #7d6165;
  --text-faint:   #b09498;
  --border:       #e8d5d8;
  --border-light: #f3e8ea;
  --bg:           #fdf7f8;
  --surface:      #ffffff;

  --radius: 10px;
  --shadow: 0 4px 24px rgba(42, 30, 34, .07);
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ── Layout ─────────────────────────────────────────────────────────────── */
.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.site-header { text-align: center; margin-bottom: 2rem; }
.site-header h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
}
.site-header p  { margin-top: .4rem; color: var(--text-muted); font-size: .95rem; }

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
}

/* ── Calendar nav ───────────────────────────────────────────────────────── */
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.calendar-nav h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.nav-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 34px; height: 34px;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
}
.nav-btn:hover { background: var(--available-bg); border-color: var(--available-border); }

/* ── Calendar grid ──────────────────────────────────────────────────────── */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day-header {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-faint);
  padding: .35rem 0;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.calendar-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  transition: transform .1s, box-shadow .1s;
  position: relative;
}

.calendar-cell.empty { background: transparent; }

.calendar-cell.available {
  background: var(--available-bg);
  border: 1px solid var(--available-border);
  cursor: pointer;
  color: var(--primary-dark);
}
.calendar-cell.available:hover {
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(191,100,116,.25);
}

.calendar-cell.booked {
  background: var(--booked-bg);
  color: var(--booked-text);
  cursor: not-allowed;
}

.calendar-cell.unavailable {
  background: var(--bg);
  color: var(--past-text);
  cursor: pointer;
}
.calendar-cell.unavailable:hover {
  background: var(--border-light);
  color: var(--text-faint);
}

.calendar-cell.past {
  color: var(--past-text);
  cursor: default;
}

.calendar-cell.not-bookable {
  color: var(--past-text);
  cursor: default;
}

.calendar-cell.today {
  outline: 2px solid var(--today-border);
  outline-offset: -2px;
}

.calendar-cell.selected {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

/* ── Legend ─────────────────────────────────────────────────────────────── */
.legend {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--text-muted);
}
.dot {
  width: 12px; height: 12px;
  border-radius: 3px;
  display: inline-block;
}
.dot.available    { background: var(--available-bg); border: 1px solid var(--available-border); }
.dot.booked       { background: var(--booked-bg); border: 1px solid #e8d5a0; }
.dot.unavailable  { background: var(--bg); border: 1px solid var(--border); }
.dot.not-bookable { background: var(--bg); border: 1px solid var(--border); }

/* ── Modal ──────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(42, 30, 34, .35);
  backdrop-filter: blur(2px);
  z-index: 10;
}

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(42,30,34,.18);
  padding: 2rem;
  width: min(480px, calc(100vw - 2rem));
  z-index: 11;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-light);
}

.modal h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-faint);
  line-height: 1;
  transition: color .15s;
}
.modal-close:hover { color: var(--text-muted); }

/* ── Form ───────────────────────────────────────────────────────────────── */
form { display: flex; flex-direction: column; gap: 1rem; }

label {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}

input, select, textarea {
  padding: .55rem .75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
textarea { resize: vertical; }

/* ── Phone field ─────────────────────────────────────────────────────────── */
.phone-field {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.phone-field:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.phone-field.input-error { border-color: #e05050; }

.phone-field select,
.phone-field input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  width: auto !important;
}

.phone-field input {
  flex: 1 1 0 !important;
  min-width: 0 !important;
}

.country-select {
  background: var(--available-bg);
  border-right: 1px solid var(--border) !important;
  padding: .55rem .3rem .55rem .6rem;
  font-size: .88rem;
  cursor: pointer;
  flex: 0 0 auto;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23bf6474' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 18px;
  padding-right: 18px;
}
.country-select:focus { border-color: transparent !important; }

/* ── Field-level validation ───────────────────────────────────────────────── */
.field-error {
  display: block;
  font-size: .78rem;
  color: #c94040;
  margin-top: .2rem;
  min-height: 1rem;
}
input.input-error { border-color: #e05050 !important; }

.required { color: var(--primary); }

.form-error {
  color: #b83030;
  font-size: .85rem;
  background: #fdf2f2;
  border: 1px solid #f0c0c0;
  border-radius: 6px;
  padding: .5rem .75rem;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .75rem 1.4rem;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .15s, transform .1s;
  width: 100%;
  margin-top: .25rem;
}
.btn-primary:hover   { background: var(--primary-dark); }
.btn-primary:active  { transform: scale(.98); }
.btn-primary:disabled { opacity: .6; cursor: not-allowed; }

/* ── Success state ──────────────────────────────────────────────────────── */
.success-state {
  text-align: center;
  padding: 1rem 0;
}
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--available-bg);
  color: var(--primary);
  font-size: 1.75rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid var(--available-border);
}
.success-state h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .4rem;
}
.success-state p  { color: var(--text-muted); margin-bottom: 1.5rem; }

.hidden { display: none !important; }

/* ── Language picker ────────────────────────────────────────────────────── */
.lang-picker {
  display: flex;
  justify-content: flex-end;
  gap: .35rem;
  margin-bottom: .75rem;
}
.lang-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: .2rem .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  color: var(--text-faint);
  font-family: inherit;
  transition: background .15s, color .15s, border-color .15s;
}
.lang-btn:hover { background: var(--available-bg); color: var(--primary); border-color: var(--available-border); }
.lang-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ── Service multi-select dropdown ──────────────────────────────────────── */
.multi-select { position: relative; }

.multi-select-trigger {
  width: 100%;
  padding: .55rem .75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  text-align: left;
  transition: border-color .15s, box-shadow .15s;
}
.multi-select-trigger:focus,
.multi-select-trigger.open {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.multi-select-value { flex: 1; color: var(--text-faint); }
.multi-select-value.has-value { color: var(--text); }

.multi-select-arrow {
  font-size: .7rem;
  color: var(--primary);
  transition: transform .2s;
  flex-shrink: 0;
}
.multi-select-trigger.open .multi-select-arrow { transform: rotate(180deg); }

.multi-select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(42,30,34,.1);
  z-index: 20;
  padding: .3rem 0;
}

.multi-select-option {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .75rem;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 400;
  color: var(--text);
  transition: background .1s;
}
.multi-select-option:hover { background: var(--available-bg); }
.multi-select-option input[type="checkbox"] {
  width: auto;
  flex: none;
  margin: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

/* ── Admin shared ───────────────────────────────────────────────────────── */
.admin-body { background: var(--bg); }

.admin-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 5;
}
.admin-header h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.btn-secondary {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .4rem .9rem;
  font-size: .85rem;
  font-family: inherit;
  cursor: pointer;
  color: var(--text-muted);
  transition: background .15s, border-color .15s;
}
.btn-secondary:hover { background: var(--available-bg); border-color: var(--available-border); }

.btn-danger {
  background: #fdf2f2;
  border: 1px solid #f0c0c0;
  border-radius: 6px;
  padding: .35rem .75rem;
  font-size: .8rem;
  color: #c03030;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  transition: background .15s;
}
.btn-danger:hover { background: #fae0e0; }

/* ── Admin layout ───────────────────────────────────────────────────────── */
.admin-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 680px) {
  .admin-content { grid-template-columns: 1fr; }
}

.admin-section {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  border: 1px solid var(--border-light);
}
.admin-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* ── Booking cards ──────────────────────────────────────────────────────── */
.booking-card {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-light);
}
.booking-card:last-child { border-bottom: none; }

.booking-date {
  min-width: 80px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  padding-top: .1rem;
}
.booking-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-size: .85rem;
}
.booking-info strong { font-weight: 700; }
.booking-info span   { color: var(--text-muted); }
.service-tag {
  display: inline-block;
  background: var(--available-bg);
  color: var(--primary-dark);
  border: 1px solid var(--available-border);
  border-radius: 4px;
  padding: .1rem .45rem;
  font-size: .75rem;
  font-weight: 700;
  width: fit-content;
}
.booking-notes {
  color: var(--text-muted);
  font-style: italic;
  margin-top: .15rem;
}
.no-bookings { color: var(--text-faint); font-size: .9rem; text-align: center; padding: 1rem 0; }

/* ── Admin login ────────────────────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
.login-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  width: min(380px, calc(100vw - 2rem));
  text-align: center;
  border: 1px solid var(--border-light);
}
.login-card h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: .4rem;
}
.login-card p  { color: var(--text-muted); margin-bottom: 1.5rem; font-size: .9rem; }
.login-card form { text-align: left; display: flex; flex-direction: column; gap: .85rem; }

/* ── Enable-month button ────────────────────────────────────────────────── */
.btn-enable-month {
  display: block;
  width: 100%;
  margin-top: .75rem;
  padding: .55rem 1rem;
  background: var(--available-bg);
  border: 1px solid var(--available-border);
  border-radius: 8px;
  color: var(--primary-dark);
  font-size: .85rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s;
}
.btn-enable-month:hover    { background: #f5d8de; }
.btn-enable-month:disabled { opacity: .6; cursor: not-allowed; }

/* ── Toast ──────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: #fff;
  padding: .6rem 1.25rem;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 100;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Add-booking button ─────────────────────────────────────────────────── */
.btn-add-booking {
  background: var(--available-bg);
  border: 1px solid var(--available-border);
  border-radius: 6px;
  padding: .35rem .75rem;
  font-size: .8rem;
  color: var(--primary-dark);
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  transition: background .15s;
  white-space: nowrap;
}
.btn-add-booking:hover { background: #f5d8de; }

/* ── Edit button ────────────────────────────────────────────────────────── */
.btn-edit {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .35rem .75rem;
  font-size: .8rem;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 500;
  font-family: inherit;
  transition: background .15s;
}
.btn-edit:hover { background: var(--border-light); }

/* ── Admin tab navigation ───────────────────────────────────────────────────── */
.admin-tabs-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  padding: 0 1.5rem;
  display: flex;
  gap: 0;
}

.admin-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: .65rem 1.1rem;
  font-size: .85rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--text-faint);
  cursor: pointer;
  transition: color .15s, border-color .15s;
  margin-bottom: -1px;
}
.admin-tab:hover { color: var(--text-muted); }
.admin-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ── Admin content — wide variant (single column) ───────────────────────────── */
.admin-content--wide {
  grid-template-columns: 1fr !important;
}

/* ── Customers toolbar ───────────────────────────────────────────────────────── */
.customers-toolbar {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.customers-toolbar input[type="search"] {
  flex: 1;
  min-width: 180px;
}

.customer-filter-group {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.customer-filter-btn {
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  padding: .4rem .8rem;
  font-size: .8rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.customer-filter-btn:last-child { border-right: none; }
.customer-filter-btn:hover { background: var(--available-bg); color: var(--primary); }
.customer-filter-btn.active {
  background: var(--primary);
  color: #fff;
}

/* ── Customer cards ──────────────────────────────────────────────────────────── */
.customer-card {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-light);
}
.customer-card:last-child { border-bottom: none; }
.customer-card.customer-inactive { opacity: .65; }

.customer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-size: .85rem;
}
.customer-name-row {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
}
.customer-info strong { font-weight: 700; }
.customer-info span   { color: var(--text-muted); }
.customer-detail {
  color: var(--text-faint) !important;
  font-size: .8rem !important;
  white-space: pre-wrap;
}

/* ── Status & language badges ────────────────────────────────────────────────── */
.status-badge {
  display: inline-block;
  border-radius: 4px;
  padding: .05rem .4rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.status-active {
  background: #edfbf3;
  color: #1a7a45;
  border: 1px solid #a3e0be;
}
.status-inactive {
  background: #f5f5f5;
  color: #888;
  border: 1px solid #ddd;
}

.lang-badge {
  display: inline-block;
  background: var(--available-bg);
  color: var(--primary-dark);
  border: 1px solid var(--available-border);
  border-radius: 4px;
  padding: .05rem .4rem;
  font-size: .7rem;
  font-weight: 700;
}

/* ── Reactivate button ───────────────────────────────────────────────────────── */
.btn-activate {
  background: #edfbf3;
  border: 1px solid #a3e0be;
  border-radius: 6px;
  padding: .35rem .75rem;
  font-size: .8rem;
  color: #1a7a45;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  transition: background .15s;
}
.btn-activate:hover { background: #d4f5e5; }

/* ── Closed days list ───────────────────────────────────────────────────── */
.closed-day-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: .85rem;
}
.closed-day-row:last-child { border-bottom: none; }
.closed-day-info { display: flex; flex-direction: column; gap: .1rem; }
.closed-day-info strong { font-weight: 600; }
.closed-day-info span   { color: var(--text-faint); font-size: .78rem; }

/* ── Customer search autocomplete ────────────────────────────────────────────── */
.customer-search-wrap {
  position: relative;
  width: 100%;
}

.customer-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(42,30,34,.12);
  z-index: 30;
  max-height: 220px;
  overflow-y: auto;
}

.customer-suggestion-item {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: .55rem .75rem;
  cursor: pointer;
  transition: background .1s;
}
.customer-suggestion-item + .customer-suggestion-item {
  border-top: 1px solid var(--border-light);
}
.customer-suggestion-item:hover { background: var(--available-bg); }

.suggestion-name  { font-weight: 700; font-size: .9rem; color: var(--text); }
.suggestion-email { font-size: .76rem; color: var(--text-faint); }

.customer-suggestion-empty {
  padding: .65rem .75rem;
  font-size: .85rem;
  color: var(--text-faint);
  font-style: italic;
  text-align: center;
}

/* ── Read-only locked fields ─────────────────────────────────────────────────── */
.field-locked {
  background: var(--bg) !important;
  color: var(--text-muted) !important;
  cursor: default !important;
  border-color: var(--border-light) !important;
}
.field-locked:focus {
  border-color: var(--border-light) !important;
  box-shadow: none !important;
}

/* ── Selected-customer indicator on the search input ────────────────────────── */
.customer-search-wrap.has-selection input {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--text);
}
.customer-search-wrap.has-selection input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
