  * {
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
  }

  .booking-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    padding: 0;
    margin: 20px auto;
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .calendar-section {
    flex: 0 0 340px;
    width: 340px;
    background: white;
    border-radius: 0;
    padding: 20px 12px;
    box-shadow: none;
    border: none;
    border-right: 1px solid #e8e8e8;
    max-height: unset;
  }

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

  .month-nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    margin-bottom: 0em !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #799c86;
    transition: color 0.2s, transform 0.15s;
  }

  .month-nav-btn:hover {
    color: #5a7a66;
    transform: scale(1.15);
  }

  .month-nav-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }

  #month-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    text-transform: capitalize;
  }

  .calendar-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
  }

  .calendar-weekday {
    text-align: center;
    font-weight: 600;
    font-size: 0.7rem;
    color: #666;
    padding: 6px 2px;
  }

  .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 35px;
    transition: background-color 0.2s, color 0.2s;
    position: relative;
  }

  .calendar-day.other-month {
    opacity: .1;
    cursor: default;
  }

  .calendar-day.past {
    opacity: .1;
    cursor: default;
  }

  .calendar-day.today {
    font-weight: 700;
  }

  .calendar-day.selected {
    background-color: #5cb85c;
    color: white;
    font-weight: 700;
  }

  .calendar-day:not(.other-month):not(.past):not(.selected):hover {
    background-color: #f0f0f0;
  }

  .calendar-day.weekend {
    opacity: .1;
  }

  .times-section {
    flex: 1;
    min-width: 0;
    padding: 20px 16px;
  }

  .selected-date-header {
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    text-transform: capitalize;
    display: block;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e8e8;
  }

  .time-slots-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .time-group {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
  }

  .time-group-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
    width: 100%;
  }

  .popular-times-section {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .popular-times-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #5a7a66;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
    padding-left: 2px;
  }

  .other-appointments-section {
    margin-top: 16px;
  }

  .other-appointments-toggle {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-transform: none !important;
  }

  .other-appointments-toggle:hover {
    border-color: #1eb73d;
    background-color: #f0fdf4;
  }

  .other-appointments-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.2s;
    color: #666;
  }

  .other-appointments-toggle.expanded::after {
    transform: rotate(180deg);
  }

  .other-appointments-content {
    display: none;
    margin-top: 12px;
  }

  .other-appointments-content.expanded {
    display: block;
  }

  .time-slot-btn {
    position: relative;
    background: #5cb85c;
    border: 1px solid #5cb85c;
    border-radius: 36px;
    padding: 6px 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18), 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
  }

  .time-slot-btn:hover:not(:disabled) {
    border-color: #4cae4c;
    background-color: #4cae4c;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }

  .time-slot-btn:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    border-color: #e0e0e0;
    box-shadow: none;
  }

  .time-slot-btn.selected {
    background-color: #1eb73d;
    color: white;
    border-color: #1eb73d;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(30, 183, 61, 0.3);
  }

  .popular-badge {
    position: absolute;
    top: -9px;
    right: -4px;
    background: #e05a2b;
    color: white;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    line-height: 1.3;
  }

  .section-divider {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 18px 0 14px;
  }

  .popular-times-section + .popular-times-section {
    margin-top: 4px;
  }

  .no-slots-message {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
  }

  @media (max-width: 768px) {
    #month-label { font-size: 1.25rem; }
    .month-nav-btn svg { width: 26px; height: 26px; }
    .calendar-weekday { font-size: 0.8rem; }
    .popular-times-label { font-size: 0.82rem; }

    .booking-card {
      flex-direction: column;
      flex-wrap: wrap;
      padding: 16px;
    }

    .calendar-section {
      flex: unset;
      width: 100%;
      border-right: none;
      border-bottom: 1px solid #e8e8e8;
      padding: 8px 4px 16px;
    }

    .times-section {
      width: 100%;
      padding: 16px 8px;
    }

    .time-group {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }
  }

  .booking-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 10px;
  }

  @media (max-width: 600px) {
    .booking-wrapper {
      padding: 0.5rem 10px;
    }

    .booking-card {
      border-radius: 16px;
      margin: 12px 0;
      padding: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
      flex-direction: column;
      gap: 0;
    }

    /* Calendar takes up full width, no inner box shadow — outer card provides it */
    .calendar-section {
      min-width: unset;
      width: 100%;
      box-shadow: none;
      border: none;
      border-radius: 0;
      max-height: unset;
      padding: 8px 4px 16px;
      border-bottom: 1px solid #e8e8e8;
    }

    /* Times section flows directly below calendar inside same card */
    .times-section {
      min-width: unset;
      width: 100%;
      padding-top: 16px;
    }

    /* 3 time slots per row on mobile */
    .time-group {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .time-slot-btn {
      font-size: 0.82rem;
      padding: 8px 4px;
    }
  }

  .clinic-header-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    background: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
    margin: 5px auto;
    max-width: 960px;
    gap: 0px !important;
  }

  /* Mobile adjust */
  @media (max-width: 549px) {
    .clinic-header-box {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      background: #fff;
      padding: 16px 24px;
      border-radius: 12px;
      border: 1px solid #ddd;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      margin: 5px auto;
      max-width: 960px;
      gap: 0px !important;
    }
  }

  .clinic-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1 1 60%;
  }

  .clinic-info {
    display: flex;
    flex-direction: column;
    min-width: 260px;
  }

  .clinic-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2px;
  }

  .clinic-address {
    font-size: 0.85rem;
    color: #666;
  }

  .clinic-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 180px;
  }

  .clinic-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #333;
  }

  .clinic-feature:has(.manage-booking-button) {
    width: fit-content;
  }

  .clinic-icon { width: 18px; height: 18px; fill: #333; }

  .manage-booking-button {
    display: inline-block;
    padding: 2px 10px;
    background-color: #799c86;
    color: white !important;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .manage-booking-button:hover { background-color: #6a8976; }

  /* Trust Features */
  .trust-features {
    position: relative;
    z-index: 3;
    background: white;
    margin: 20px auto;
  }

  .trust-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
  }

  .trust-feature {
    background: white;
    border: 1px solid #e8e3d8;
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(58,53,48,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .trust-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(58,53,48,0.10);
  }

  .trust-feature-ico {
    width: 48px;
    height: 48px;
    background: #eef3f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #5e7d68;
  }

  .trust-feature h3 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #3a3530;
    margin: 0 0 4px;
  }

  .trust-feature p {
    font-size: 0.78rem;
    color: #7a756e;
    margin: 0;
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .trust-features-row {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .trust-feature { padding: 20px 16px; }
    .trust-feature h3 { font-size: 0.82rem; }
    .trust-feature p { font-size: 0.72rem; }
  }

  @media (max-width: 480px) {
    .trust-features-row { grid-template-columns: 1fr; }
  }

  /* Phone Booking Section */
  .phone-booking-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin: 20px auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 2px dashed #5cb85c;
  }

  .phone-booking-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .phone-icon { font-size: 3rem; flex-shrink: 0; }

  .phone-text h3 { margin: 0 0 8px 0; font-size: 1.2rem; color: #333; }
  .phone-text p { margin: 4px 0; font-size: 0.95rem; color: #666; }

  .phone-link {
    color: #5cb85c;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
  }

  .phone-link:hover { text-decoration: underline; }
  .phone-hours { font-size: 0.85rem !important; color: #999 !important; }

  /* What Happens Next Section */
  .what-next-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin: 20px auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }

  .what-next-section h3 {
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    color: #333;
    text-align: center;
  }

  .what-next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .next-step { display: flex; gap: 12px; align-items: flex-start; }

  .step-icon {
    background: #5cb85c;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
  }

  .step-text strong { display: block; margin-bottom: 4px; color: #333; font-size: 0.95rem; }
  .step-text p { margin: 0; font-size: 0.85rem; color: #666; }

  /* FAQ Section */
  .faq-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin: 20px auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }

  .faq-section h3 {
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    color: #333;
    text-align: center;
  }

  .faq-items { display: flex; flex-direction: column; gap: 12px; }

  .faq-item { border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; }

  .faq-question {
    padding: 16px;
    background: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background 0.2s;
  }

  .faq-question:hover { background: #f0f0f0; }

  .faq-arrow { font-size: 0.8rem; color: #666; transition: transform 0.3s; }

  .faq-item.active .faq-arrow { transform: rotate(180deg); }

  .faq-answer {
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .faq-item.active .faq-answer { max-height: 2000px; padding: 16px; }

  .faq-answer p { margin: 0 0 12px 0; }
  .faq-answer p:last-child { margin-bottom: 0; }
  .faq-answer ul { margin: 8px 0; padding-left: 20px; }

  .map-container { margin-top: 12px; }

  @media (min-width: 769px) {
    .time-slot-btn { font-size: 15px; }
    .popular-times-label { font-size: 14px; }
    .selected-date-header { font-size: 22px; }
    #month-label { font-size: 22px; }
    .calendar-day { font-size: 15px; }
    .calendar-weekday { font-size: 14px; }
    .month-nav-btn svg { width: 28px; height: 28px; }
    .phone-booking-section { border: 2px dashed #5cb85c; }
    .phone-text h3 { font-size: 1.4rem; }
    .phone-text p { font-size: 1.1rem; }
    .phone-hours { font-size: 1.0rem !important; }
    .step-text strong { font-size: 1.1rem; }
    .step-text p { font-size: 0.9rem; }
    .faq-section h3 { font-size: 1.4rem; }
  }

:root {
  --fm-sage: #8faa97;
  --fm-sage-deep: #5e7d68;
  --fm-sage-light: #dce8df;
  --fm-sage-mist: #eef3f0;
  --fm-cream: #f7f5f0;
  --fm-warm: #eee9e0;
  --fm-linen: #e8e3d8;
  --fm-bark: #3a3530;
  --fm-text: #4a453f;
  --fm-white: #ffffff;
}

.fm-reviews-wrap {
  padding: 88px 0;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--fm-text);
  -webkit-font-smoothing: antialiased;
}

.fm-reviews-wrap h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.25;
  color: var(--fm-bark);
}

.fm-reviews-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.fm-reviews-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fm-sage-deep);
  margin-bottom: 12px;
}

.fm-reviews-divider {
  width: 40px;
  height: 2px;
  background: var(--fm-sage);
  border-radius: 2px;
  margin: 0 auto 20px;
  opacity: 0.6;
}

.fm-reviews-wrap p {
  line-height: 1.75;
  color: var(--fm-text);
  font-size: 0.92rem;
  max-width: 500px;
  margin: 0 auto 36px;
}

@media (max-width: 768px) {
  .fm-reviews-wrap { padding: 64px 0; }
}

/* ─── Booking page: search + cart — homepage fm-search style ─────────────── */
.bk-search-cart-wrap {
  margin: 20px auto;
}

.bk-search-box {
  position: relative;
  width: 100%;
  margin: 12px auto 0;
}

.bk-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* Icon left — same as .fm-search-input-wrap svg */
.bk-search-icon {
  position: absolute;
  left: 24px;
  width: 20px;
  height: 20px;
  color: var(--fm-sage-deep);
  pointer-events: none;
  flex-shrink: 0;
}

/* Input — exact .fm-search-input */
.bk-search-input {
  width: 100%;
  padding: 22px 52px 22px 56px !important;
  height: auto !important;
  font-family: 'Inter', sans-serif;
  font-size: 1rem !important;
  color: var(--fm-bark) !important;
  border: 1.5px solid rgba(143, 170, 151, 0.35) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 4px 24px rgba(143, 170, 151, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  transition: all 0.3s cubic-bezier(.25,.46,.45,.94);
  outline: none;
}

.bk-search-input::placeholder { color: #9b9087; font-weight: 400; }

.bk-search-input:focus {
  border-color: var(--fm-sage) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 8px 32px rgba(143, 170, 151, 0.18), 0 0 0 4px rgba(143, 170, 151, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* Clear button — exact .fm-search-clear */
.bk-search-clear {
  position: absolute;
  right: 20px;
  width: 32px !important;
  height: 32px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: rgba(143, 170, 151, 0.15) !important;
  border-radius: 50% !important;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: #9b9087;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: none !important;
  transition: all 0.2s;
}

.bk-search-clear:hover { background: rgba(143, 170, 151, 0.3) !important; color: var(--fm-bark); }

/* Results dropdown — exact .fm-search-results */
.bk-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 380px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(143, 170, 151, 0.25);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.10), 0 4px 16px rgba(143,170,151,0.08);
  z-index: 200;
  padding: 6px;
}

.bk-search-results::-webkit-scrollbar { width: 6px; }
.bk-search-results::-webkit-scrollbar-track { background: transparent; }
.bk-search-results::-webkit-scrollbar-thumb { background: rgba(143,170,151,0.3); border-radius: 3px; }

.bk-no-results {
  padding: 24px 16px;
  text-align: center;
  color: #9b9087;
  font-size: 0.9rem;
}

/* Each row — exact .fm-result-item, but with add button replacing category */
.bk-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: default;
  transition: background 0.15s;
  gap: 12px;
}

.bk-result-row:hover { background: rgba(143, 170, 151, 0.12); }
.bk-result-row.in-cart { background: rgba(143, 170, 151, 0.08); }

/* Name — exact .fm-result-name */
.bk-result-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--fm-bark);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Right side: price + add button */
.bk-result-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Price — exact .fm-result-price */
.bk-result-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fm-sage-deep);
  white-space: nowrap;
}

/* Small add button */
.bk-add-btn {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--fm-sage);
  background: rgba(143, 170, 151, 0.12);
  color: var(--fm-sage-deep);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}

.bk-add-btn:hover { background: var(--fm-sage); color: white; }

.bk-add-btn.added {
  background: var(--fm-sage);
  color: white;
  border-color: var(--fm-sage);
}

.bk-add-btn.added:hover { background: #c0392b; border-color: #c0392b; }

/* Cart summary — Montserrat to match pricelist, visibility controlled by JS */
.bk-cart-always-visible {
  font-family: 'Montserrat', sans-serif !important;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: none;
  width: 100%;
}

/* Keep old .cart-summary for any other pages */
.cart-summary {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: none;
  width: 100%;
}

.cart-summary.visible { display: block; }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.bk-cart-always-visible,
.bk-cart-always-visible * {
  font-family: 'Montserrat', sans-serif !important;
}

.cart-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.cart-notice {
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  line-height: 1.4;
}

.cart-footer {
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.cart-items {
  --cart-bg: #f8f9fa;
  max-height: 200px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(var(--cart-bg) 30%, rgba(255,255,255,0)),
    linear-gradient(rgba(255,255,255,0), var(--cart-bg) 70%) 0 100%,
    radial-gradient(farthest-side at 50% 0, rgba(0,0,0,0.1), rgba(0,0,0,0)),
    radial-gradient(farthest-side at 50% 100%, rgba(0,0,0,0.1), rgba(0,0,0,0)) 0 100%;
  background-repeat: no-repeat;
  background-color: var(--cart-bg);
  background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
  background-attachment: local, local, scroll, scroll;
}

.cart-items::-webkit-scrollbar { width: 6px; }
.cart-items::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 3px; }
.cart-items::-webkit-scrollbar-thumb { background: #5cb85c !important; border-radius: 3px; }
.cart-items::-webkit-scrollbar-thumb:hover { background: #4cae4c; }

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.cart-item:last-child { border-bottom: none; }

.cart-item-name {
  flex: 1;
  font-size: 12px;
  color: #555;
  font-weight: 500;
}

.cart-item-price {
  font-weight: normal;
  color: #004080;
  margin: 0 8px;
  font-size: 12px;
}

.remove-item {
  position: relative;
  width: 26px !important;
  height: 26px !important;
  min-height: 26px !important;
  min-width: 26px !important;
  border: 0;
  background: transparent;
  padding: 0;
  margin-left: 8px;
  margin-right: 0 !important;
  cursor: pointer;
  display: inline-block;
  margin-bottom: unset !important;
  line-height: 1 !important;
  outline: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.remove-item svg,
.remove-item img.cart-icon {
  width: 100%;
  height: 100%;
  vertical-align: top;
  object-fit: contain;
}

.remove-item:focus, .remove-item:focus-visible { outline: none; background: transparent; }
.remove-item:active { box-shadow: none; background: transparent; }
.remove-item::before, .remove-item::after { content: none; }

.cart-total {
  padding-top: 12px;
  border-top: none;
  margin-bottom: 15px;
  position: relative;
}

.cart-total::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #c8dfd0 30%, #a3c4ad 50%, #c8dfd0 70%, transparent 100%);
  border-radius: 2px;
}

.sample-fee-section {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}

.sample-fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #666;
}

.sample-fee-label { color: #666; }
.sample-fee-amount { color: #666; font-weight: normal; }

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.total-label { color: #666; font-size: 14px; }

.total-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.total-discounted { color: #004080; font-size: 16px; font-weight: 700; }

/* Mobile — exact price-list-v3.css @media (max-width: 768px) cart values */
@media (max-width: 768px) {
  .bk-cart-always-visible {
    border-radius: 20px;
    padding: 12px;
  }
  .bk-cart-always-visible .cart-title {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 8px;
    padding-top: 8px;
  }
  .bk-cart-always-visible .cart-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
  }
  .bk-cart-always-visible .cart-total {
    font-size: 12px;
    padding-top: 10px;
    margin-bottom: 10px;
  }
}

/* Desktop — exact price-list-v3.css @media (min-width: 769px) cart values */
@media (min-width: 769px) {
  .bk-cart-always-visible {
    padding: 25px;
  }
  .bk-cart-always-visible .cart-title {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .bk-cart-always-visible .cart-item-name { font-size: 16px; }
  .bk-cart-always-visible .cart-item-price { font-size: 17px; }
  .bk-cart-always-visible .sample-fee-label { font-size: 16px; }
  .bk-cart-always-visible .sample-fee-amount { font-size: 17px; }
  .bk-cart-always-visible .total-label { font-size: 17px; }
  .bk-cart-always-visible .total-discounted { font-size: 17px; }
  .bk-cart-always-visible .cart-notice { font-size: 15px; padding-bottom: 10px; }
}
/* ─── end booking search + cart ─────────────────────────────────────────────── */

/* ═══════════════ Booking Mode Toggle (Vérvétel / Pszichiáter) ═══════════════ */
.booking-mode-box {
    background: #fff;
    border: 1px solid #e3e6e4;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.booking-mode-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #5c6664;
    margin-bottom: 14px;
    text-align: center;
}
.booking-mode-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 12px;
}
.booking-mode-tab {
    background: #fbfaf7;
    border: 1.5px solid #e3e6e4;
    border-radius: 12px;
    padding: 18px 18px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.booking-mode-tab:hover {
    border-color: #5cb85c;
}
.booking-mode-tab.is-active {
    border-color: #5cb85c;
    box-shadow: 0 0 0 4px rgba(92, 184, 92, 0.14);
}
.booking-mode-tab .bmt-title {
    font-weight: 600;
    font-size: 15px;
    color: #2c3332;
    display: block;
    line-height: 1.15;
}
.booking-mode-tab .bmt-sub {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 400;
    color: #a4adab;
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.booking-psych-services {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #eef0ee;
}
.booking-psych-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #5c6664;
    margin-bottom: 12px;
    text-align: center;
}
.booking-psych-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.booking-psych-service {
    background: #fbfaf7;
    border: 1.5px solid #e3e6e4;
    border-radius: 10px;
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: 'DM Sans', sans-serif;
    text-align: left;
}
.booking-psych-service:hover {
    border-color: #5cb85c;
}
.booking-psych-service.is-active {
    border-color: #5cb85c;
    box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.14);
}
.booking-psych-service .bps-title {
    font-weight: 600;
    font-size: 14.5px;
    color: #2c3332;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.booking-psych-service .bps-sub {
    font-weight: 500;
    font-size: 13px;
    color: #2c3332;
}
.booking-psych-service .bps-amount {
    font-weight: 700;
    font-size: 15px;
    color: #5cb85c;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

@media (max-width: 640px) {
    .booking-mode-tabs { grid-template-columns: 1fr; }
    .booking-psych-grid { grid-template-columns: 1fr; }
    .booking-mode-tab { padding: 14px; }
    .booking-psych-service { padding: 12px 14px; }
}
