/* ============================================================
   KOUMA BANAA — Booking Module
   Premium consultation reservation system
   ============================================================ */

/* ---- Consultation Button (Header) --------------------------- */
.btn-consultation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(35, 77, 53, 0.2);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  box-shadow:
    0 2px 16px rgba(35, 77, 53, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(35, 77, 53, 0.05);
  text-align: center;
}

.btn-consult-main {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green, #234D35);
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-family: 'Manrope', sans-serif;
}

.btn-consult-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold, #C9A45C);
  line-height: 1.1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Shimmer sweep */
.btn-consultation::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 70%
  );
  transition: left 0.55s ease;
  pointer-events: none;
}

.btn-consultation:hover::before { left: 140%; }

.btn-consultation:hover {
  border-color: var(--gold, #C9A45C);
  background: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 6px 28px rgba(35, 77, 53, 0.18),
    0 0 0 1px rgba(201, 164, 92, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.btn-consultation:active { transform: translateY(0) scale(0.97); }

/* When header is scrolled (white bg) */
.header.scrolled .btn-consultation {
  background: var(--green, #234D35);
  border-color: var(--green, #234D35);
  box-shadow: 0 4px 18px rgba(35, 77, 53, 0.28);
}

.header.scrolled .btn-consultation .btn-consult-main { color: #fff; }
.header.scrolled .btn-consultation .btn-consult-sub { color: rgba(255, 255, 255, 0.72); }

.header.scrolled .btn-consultation:hover {
  background: #1a3a27;
  box-shadow: 0 6px 24px rgba(35, 77, 53, 0.38);
  border-color: #1a3a27;
}

/* ---- Modal Overlay ------------------------------------------ */
.bk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 12, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bk-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ---- Modal Panel -------------------------------------------- */
.bk-panel {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.22),
    0 8px 32px rgba(35, 77, 53, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  transform: translateY(28px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.4s ease;
  opacity: 0;
}

.bk-overlay.open .bk-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Panel header */
.bk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 18px;
  border-bottom: 1px solid #F0E8D6;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FFFDF8 0%, #F6EFE4 100%);
}

.bk-header-left { display: flex; flex-direction: column; gap: 2px; }

.bk-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1A2E1A;
  line-height: 1.2;
}

.bk-subtitle {
  font-size: 0.72rem;
  color: var(--gold, #C9A45C);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bk-close {
  width: 34px; height: 34px;
  background: rgba(35, 77, 53, 0.08);
  border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #5A5A5A;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.bk-close:hover { background: rgba(35, 77, 53, 0.15); color: #1A2E1A; }

/* Progress bar */
.bk-progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 14px 24px 10px;
  gap: 0;
  background: #FAFAF7;
  border-bottom: 1px solid #F0E8D6;
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.bk-progress::-webkit-scrollbar { display: none; }

.bk-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.bk-step-num {
  width: 25px; height: 25px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  background: #DDD; color: #888;
  transition: all 0.25s ease;
}

.bk-step-label {
  font-size: 0.62rem;
  color: #B0B0B0;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.25s;
}

.bk-step-dot.active .bk-step-num {
  background: var(--green, #234D35);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(35, 77, 53, 0.12);
}

.bk-step-dot.active .bk-step-label {
  color: var(--green, #234D35);
  font-weight: 700;
}

.bk-step-dot.completed .bk-step-num {
  background: var(--gold, #C9A45C);
  color: #fff;
}

.bk-step-dot.completed .bk-step-label { color: #9A8060; }

.bk-step-connector {
  width: 28px; height: 2px;
  background: #E0D6C8;
  margin: 11px 5px 0;
  flex-shrink: 0;
  transition: background 0.25s;
}

.bk-step-connector.completed { background: var(--gold, #C9A45C); }

/* Scrollable body */
.bk-body {
  flex: 1;
  overflow-y: auto;
  padding: 26px 28px;
  scroll-behavior: smooth;
}

.bk-step-panel { display: none; }
.bk-step-panel.active { display: block; }

.bk-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A2E1A;
  margin-bottom: 20px;
}

/* ---- Form inputs -------------------------------------------- */
.bk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.bk-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.bk-form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #3A3A3A;
}

.bk-form-group input,
.bk-form-group select,
.bk-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #DDD;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.86rem;
  color: #1A2E1A;
  background: #FAFAF7;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.bk-form-group input:focus,
.bk-form-group select:focus,
.bk-form-group textarea:focus {
  border-color: var(--green, #234D35);
  box-shadow: 0 0 0 3px rgba(35, 77, 53, 0.1);
}

.bk-form-group input.error,
.bk-form-group select.error,
.bk-form-group textarea.error {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.bk-form-group textarea { resize: vertical; min-height: 80px; }

.bk-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A5A5A' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ---- Reason cards ------------------------------------------ */
.bk-reason-grid { display: flex; flex-direction: column; gap: 9px; }

.bk-reason-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 2px solid #EDE4D0;
  border-radius: 12px;
  background: #FAFAF7;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.18s;
}

.bk-reason-card:hover {
  border-color: rgba(201, 164, 92, 0.5);
  transform: translateX(4px);
  background: #FFFDF8;
}

.bk-reason-card.selected {
  border-color: var(--green, #234D35);
  background: rgba(35, 77, 53, 0.04);
  transform: translateX(4px);
}

.bk-reason-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #F0E8D6;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s;
}

.bk-reason-card.selected .bk-reason-icon {
  background: rgba(35, 77, 53, 0.1);
}

.bk-reason-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: #2A2A2A;
}

.bk-free-text { margin-top: 12px; }

/* ---- Calendar ---------------------------------------------- */
.bk-calendar-wrap { user-select: none; }

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

.bk-cal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1A2E1A;
  text-transform: capitalize;
}

.bk-cal-nav {
  width: 32px; height: 32px;
  background: #F0E8D6;
  border: none; border-radius: 8px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #3A3A3A;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.bk-cal-nav:hover { background: #EDE4D0; color: #1A2E1A; }
.bk-cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.bk-cal-weekday {
  text-align: center;
  font-size: 0.67rem;
  font-weight: 700;
  color: #B0B0B0;
  padding: 6px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bk-cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

.bk-cal-day.empty { cursor: default; }

.bk-cal-day.past,
.bk-cal-day.unavailable {
  color: #D0D0D0;
  cursor: not-allowed;
  background: transparent;
}

.bk-cal-day.available {
  color: #2A2A2A;
  background: #F6EFE4;
}

.bk-cal-day.available:hover {
  background: rgba(35, 77, 53, 0.1);
  color: var(--green, #234D35);
  transform: scale(1.1);
  font-weight: 700;
}

.bk-cal-day.selected {
  background: var(--green, #234D35) !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(35, 77, 53, 0.32);
  transform: scale(1.1);
}

.bk-cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold, #C9A45C);
}

.bk-cal-day.selected::after { background: rgba(255, 255, 255, 0.5); }

/* ---- Time slots -------------------------------------------- */
.bk-slots-header {
  font-size: 0.82rem;
  font-weight: 600;
  color: #5A5A5A;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EDE4D0;
}

.bk-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.bk-slot {
  padding: 10px 6px;
  text-align: center;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid #EDE4D0;
  cursor: pointer;
  transition: all 0.15s ease;
  background: #FAFAF7;
  font-family: 'Manrope', sans-serif;
}

.bk-slot.booked {
  background: #F5F5F5;
  border-color: #E8E8E8;
  color: #C8C8C8;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: #C8C8C8;
}

.bk-slot.available { color: #2A2A2A; }

.bk-slot.available:hover {
  border-color: var(--green, #234D35);
  background: rgba(35, 77, 53, 0.06);
  color: var(--green, #234D35);
  transform: scale(1.04);
}

.bk-slot.selected {
  background: var(--green, #234D35) !important;
  border-color: var(--green, #234D35) !important;
  color: #fff !important;
  box-shadow: 0 3px 10px rgba(35, 77, 53, 0.28);
  transform: scale(1.04);
}

/* ---- Summary ----------------------------------------------- */
.bk-summary-card {
  background: linear-gradient(135deg, #F6EFE4 0%, #FFFDF8 100%);
  border: 1px solid #EDE4D0;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
}

.bk-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid #EDE4D0;
  gap: 12px;
}

.bk-summary-row:last-child { border-bottom: none; }

.bk-summary-label {
  font-size: 0.78rem;
  color: #8A8A8A;
  font-weight: 500;
  min-width: 72px;
}

.bk-summary-value {
  font-size: 0.84rem;
  color: #1A2E1A;
  font-weight: 600;
  text-align: right;
}

.bk-price-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--green, #234D35);
  border-radius: 12px;
}

.bk-price-label { color: rgba(255, 255, 255, 0.75); font-size: 0.8rem; }

.bk-price-amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Manrope', sans-serif;
}

/* ---- Payment options --------------------------------------- */
.bk-pay-group { margin-bottom: 20px; }

.bk-pay-group-title {
  font-size: 0.74rem;
  font-weight: 700;
  color: #9A9A9A;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #EDE4D0;
}

.bk-pay-options { display: flex; flex-direction: column; gap: 7px; }
.bk-pay-option { display: flex; cursor: pointer; }
.bk-pay-option input[type="radio"] { display: none; }

.bk-pay-inner {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 11px 14px;
  border: 2px solid #EDE4D0; border-radius: 12px;
  background: #FAFAF7;
  transition: border-color 0.2s, background 0.2s;
}

.bk-pay-option input:checked + .bk-pay-inner {
  border-color: var(--green, #234D35);
  background: rgba(35, 77, 53, 0.03);
}

.bk-pay-option:hover .bk-pay-inner { border-color: var(--gold, #C9A45C); }

.bk-pay-badge {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: #fff;
  flex-shrink: 0; letter-spacing: 0.02em;
}

.bk-pay-info { display: flex; flex-direction: column; gap: 1px; }
.bk-pay-info strong { font-size: 0.84rem; color: #1A2E1A; }
.bk-pay-info span { font-size: 0.72rem; color: #7A7A7A; }

.bk-pay-notice {
  background: #FFF8E8;
  border: 1px solid #EDD07A;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.75rem;
  color: #7A5A10;
  line-height: 1.5;
  margin-top: 6px;
}

/* ---- Confirmation ------------------------------------------ */
.bk-confirm-wrap { text-align: center; padding: 8px 0 4px; }

.bk-confirm-icon {
  font-size: 3.5rem;
  margin-bottom: 12px;
  display: block;
  animation: bkPopIn 0.5s cubic-bezier(0.34, 1.6, 0.64, 1) both;
}

@keyframes bkPopIn {
  from { transform: scale(0.4) rotate(-12deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

.bk-confirm-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1A2E1A;
  margin-bottom: 8px;
}

.bk-confirm-subtitle {
  font-size: 0.86rem;
  color: #5A5A5A;
  margin-bottom: 20px;
  line-height: 1.65;
}

.bk-confirm-ref {
  display: inline-block;
  background: #F6EFE4;
  border: 1px solid #EDE4D0;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 0.78rem;
  color: #6A6A6A;
  margin-bottom: 20px;
}

.bk-confirm-ref strong {
  color: var(--green, #234D35);
  font-size: 1.05rem;
  font-weight: 800;
  display: block;
  margin-top: 2px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.04em;
}

.bk-confirm-details {
  background: #FAFAF7;
  border: 1px solid #EDE4D0;
  border-radius: 12px;
  padding: 14px 18px;
  text-align: left;
  margin-bottom: 20px;
}

.bk-confirm-detail {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #F0E8D6;
  font-size: 0.8rem;
  gap: 12px;
}

.bk-confirm-detail:last-child { border-bottom: none; }
.bk-confirm-detail span:first-child { color: #8A8A8A; }
.bk-confirm-detail span:last-child { color: #1A2E1A; font-weight: 600; text-align: right; }

.bk-cal-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.bk-cal-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid #DDD;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #3A3A3A;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  background: #FAFAF7;
  cursor: pointer;
  font-family: inherit;
}

.bk-cal-link:hover {
  border-color: var(--green, #234D35);
  color: var(--green, #234D35);
  background: rgba(35, 77, 53, 0.04);
}

.bk-wa-confirm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.bk-wa-confirm:hover { background: #1da852; transform: translateY(-1px); }

/* ---- Footer / Actions -------------------------------------- */
.bk-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-top: 1px solid #F0E8D6;
  flex-shrink: 0;
  gap: 12px;
  background: #fff;
}

.bk-btn-back {
  font-size: 0.82rem;
  color: #7A7A7A;
  background: none;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  padding: 9px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}

.bk-btn-back:hover { background: #F6EFE4; color: #3A3A3A; }

.bk-btn-next {
  background: var(--green, #234D35);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex; align-items: center; gap: 8px;
  min-width: 160px;
  justify-content: center;
  font-family: inherit;
}

.bk-btn-next:hover {
  background: #1a3a27;
  box-shadow: 0 6px 22px rgba(35, 77, 53, 0.32);
  transform: translateY(-1px);
}

.bk-btn-next:active { transform: translateY(0); }

/* ---- Shake animation --------------------------------------- */
@keyframes bkShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(7px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.bk-shake { animation: bkShake 0.4s ease; }

/* ---- Responsive -------------------------------------------- */
@media (max-width: 640px) {
  .bk-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .bk-panel {
    max-width: 100%;
    max-height: 94vh;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    opacity: 1;
  }

  .bk-overlay.open .bk-panel {
    transform: translateY(0);
    opacity: 1;
  }

  .bk-header { padding: 18px 18px 14px; }
  .bk-body { padding: 18px; }
  .bk-footer { padding: 14px 18px; }
  .bk-form-row { grid-template-columns: 1fr; gap: 0; }
  .bk-slots-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .bk-step-label { display: none; }
  .bk-step-connector { width: 18px; }
  .btn-consult-sub { display: none; }
  .btn-consultation { display: none; }
  .bk-btn-next { min-width: 130px; padding: 11px 18px; font-size: 0.82rem; }
  .bk-cal-links { flex-direction: column; align-items: center; }
}

@media (max-width: 420px) {
  .bk-slots-grid { grid-template-columns: repeat(3, 1fr); }
  .bk-title { font-size: 1.05rem; }
}

/* ============================================================
   intl-tel-input — booking modal overrides
   Base styles live in style.css (.iti-phone-group)
   ============================================================ */

/* Booking uses cream palette — slight overrides over global theme */
.bk-form-group.iti-phone-group .iti {
  border-color: #E8DDD0;
  background: #FFFDF8;
}
.bk-form-group.iti-phone-group .iti__country-container {
  background: #F8F4EE !important;
  border-right-color: #E8DDD0 !important;
}
.bk-form-group.iti-phone-group .iti__country-container:has(button:hover),
.bk-form-group.iti-phone-group .iti__country-container:has(button[aria-expanded="true"]) {
  background: #EDE7DC !important;
}
.bk-form-group.iti-phone-group .iti input[type="tel"],
.bk-form-group.iti-phone-group .iti input[type="tel"]:focus {
  background: transparent !important;
  font-family: 'Manrope', sans-serif !important;
}

/* Divider + preferred section */
.iti__divider { border-color: #E8DDD0 !important; margin: 4px 0 !important; }
.iti__preferred { border-bottom: 1px solid #E8DDD0 !important; padding-bottom: 4px !important; margin-bottom: 4px !important; }

/* Mobile dropdown width */
@media (max-width: 640px) {
  .iti__dropdown-content,
  .iti__country-list { width: calc(100vw - 48px) !important; }
}
