@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f6f4f0;
  --card: #ffffff;
  --text: #1c1c1c;
  --muted: #6a655f;
  --accent: #0b6e4f;
  --accent-dark: #07523b;
  --border: #e1dbd4;
  --shadow: 0 20px 40px rgba(31, 22, 13, 0.08);
}
a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Jost", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top, #fffaf2 0%, var(--bg) 60%);
  color: var(--text);
  max-width: 100%;
  overflow-x: hidden;
}

.has-tabbar {
  padding-bottom: 110px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.hero {
  margin-bottom: 24px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}

h1 {
  margin: 0 0 8px;
  font-size: 36px;
}

.sub {
  margin: 0;
  color: var(--muted);
}

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

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: end;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.date-picker {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.date-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  margin: 0 -2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.date-chip {
  flex: 0 0 auto;
  min-width: 96px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  text-align: left;
  scroll-snap-align: start;
}

.date-chip-top {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.date-chip-main {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
}

.date-chip.is-active {
  background: rgba(11, 110, 79, 0.12);
  border-color: rgba(11, 110, 79, 0.45);
}

.date-chip.is-active .date-chip-top {
  color: var(--accent-dark);
}

.date-chip.is-active .date-chip-main {
  color: var(--accent-dark);
}

.date-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.date-controls input[type="date"] {
  flex: 1 1 auto;
  min-width: 0;
}

.date-controls .btn {
  flex: 0 0 auto;
  padding: 12px 14px;
  white-space: nowrap;
}

#nextAvailableBtn {
  border-style: dashed;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
}

select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(11, 110, 79, 0.2);
  border-color: var(--accent);
}

.btn {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.slots {
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed var(--border);
  background: #faf8f5;
}

.label {
  margin: 0 0 12px;
  font-weight: 600;
}

.slots-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.slot {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
}

.message {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

.message.error {
  color: #a22c2c;
}

.message.success {
  color: var(--accent-dark);
}

.hint {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }

  .card {
    padding: 20px;
    width: 100%;
    max-width: 100%;
  }

  .container {
    padding: 20px 16px 32px;
  }
}

.container {
  max-width: 100%;
}
.imglogo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 24px 20px;
}
.logo1 {
  display: block;
  margin: 0 auto;
  width: 300px;
  height: auto;
}
.imgbanner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(520px, 92vw);
  margin: 8px auto 0;
}

.button01 {
  position: absolute;
  top: 65%;
  left: 75%;
  transform: translateX(-50%);
  display: flex;
}

.btn01 {
   position: relative;
   z-index: 0;
   background-color: transparent;
   color: #fff;
}

.btn01::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: #19682F;
  opacity: 0.9;
  z-index: -1;
}

.imgbanner img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 900px) {
  .banner {
    width: min(560px, 60vw);
  }
}

@media (min-width: 900px) {
  .btn01 {
    width: 200px;
  }
  .container {
    max-width: 1100px;
    padding: 64px 24px 80px;
  }

  h1 {
    font-size: 44px;
  }

  .card {
    padding: 36px;
  }

  .logo1 {
    width: clamp(260px, 24vw, 480px);
  }
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  overflow: visible;
}

.cards01 {
  background-color: transparent;
  width: 160px;
  height: 120px;
  margin: 0;
  border-radius: 20px;
  flex: 0 0 160px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65), 0 8px 18px rgba(0, 0, 0, 0.45);
}

.cards01::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: #19682F;
  opacity: 0.9;
  z-index: 0;
}

.cards01 > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .cards {
    justify-content: space-between;
  }
}
.cards01 img {
  width: 72px;
  height: 67px;
}
.cards01 {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.textcard {
  color: #fff;
  text-align: center;
  width: 100%;
  font-size: 10px;
  margin: 8px 0 0;
}
.cards {
  margin-top: 20px;
}

.tabbar {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(560px, 92vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: transparent;
  border-radius: 28px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.25);
  isolation: isolate;
  z-index: 100;
}

.tabbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: #19682F;
  opacity: 0.9;
  z-index: -1;
}

.tabbar-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.tabbar-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(25, 104, 47, 0.4);
  position: relative;
}

.tabbar-icon::before {
  content: none;
}

.tabbar-item[data-icon] .tabbar-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #19682f;
}

.tabbar-item[data-icon="home"] .tabbar-icon::before {
  -webkit-mask: url("./icons/house.svg") no-repeat center / 16px 16px;
  mask: url("./icons/house.svg") no-repeat center / 16px 16px;
}

.tabbar-item[data-icon="promotions"] .tabbar-icon::before {
  -webkit-mask: url("./icons/tag.svg") no-repeat center / 16px 16px;
  mask: url("./icons/tag.svg") no-repeat center / 16px 16px;
}

.tabbar-item[data-icon="contacts"] .tabbar-icon::before {
  -webkit-mask: url("./icons/map-pin.svg") no-repeat center / 16px 16px;
  mask: url("./icons/map-pin.svg") no-repeat center / 16px 16px;
}

.tabbar-item[data-icon="booking"] .tabbar-icon::before {
  -webkit-mask: url("./icons/calendar-check.svg") no-repeat center / 16px 16px;
  mask: url("./icons/calendar-check.svg") no-repeat center / 16px 16px;
}

.tabbar-item.active .tabbar-icon {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.9);
}

@media (min-width: 900px) {
  .tabbar {
    width: min(640px, 70vw);
  }
}

.consult-body {
  background: #ffffff;
}

.consult-shell {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 120px;
  background: #ffffff;
  border-radius: 0;
  padding: 16px 16px 28px;
  min-height: calc(100vh - 180px);
  box-shadow: none;
}

.consult-back {
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: #1c1c1c;
}

.consult-logo {
  display: flex;
  justify-content: center;
  margin: 6px 0 8px;
}

.consult-logo img {
  width: min(420px, 80vw);
  height: auto;
}

.consult-search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #1c1c1c;
  border-radius: 14px;
  padding: 10px 14px;
  margin: 8px 0 16px;
}

.consult-search-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: #1c1c1c;
  -webkit-mask: url("./icons/search.svg") no-repeat center / contain;
  mask: url("./icons/search.svg") no-repeat center / contain;
}

.consult-search input {
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  text-transform: uppercase;
}

.consult-search input::placeholder {
  color: #b7b7b7;
  letter-spacing: 0.08em;
}

.contacts-body {
  background: #ffffff;
}

.contacts-shell {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 120px;
  background: #ffffff;
  padding: 16px 16px 28px;
  min-height: calc(100vh - 180px);
}

.contacts-hero {
  text-align: center;
  margin: 8px 0 16px;
}

.contacts-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contacts-sub {
  margin: 8px 0 0;
  font-size: 14px;
  color: #7b7b7b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.contacts-map {
  height: 240px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  margin: 14px 0 16px;
  background: #f2f2f2;
}

.contacts-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.contact-card.is-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-card.is-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.contact-go {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(25, 104, 47, 0.25);
  position: relative;
  flex: 0 0 32px;
}

.contact-go::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #19682f;
  -webkit-mask: url("./icons/external-link.svg") no-repeat center / 16px 16px;
  mask: url("./icons/external-link.svg") no-repeat center / 16px 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(25, 104, 47, 0.25);
  position: relative;
  flex: 0 0 44px;
}

.contact-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #19682f;
}

.contact-icon[data-icon="map-pin"]::before {
  -webkit-mask: url("./icons/map-pin.svg") no-repeat center / 22px 22px;
  mask: url("./icons/map-pin.svg") no-repeat center / 22px 22px;
}

.contact-icon[data-icon="phone"]::before {
  -webkit-mask: url("./icons/phone.svg") no-repeat center / 22px 22px;
  mask: url("./icons/phone.svg") no-repeat center / 22px 22px;
}

.contact-icon[data-icon="message-circle"]::before {
  -webkit-mask: url("./icons/message-circle.svg") no-repeat center / 22px 22px;
  mask: url("./icons/message-circle.svg") no-repeat center / 22px 22px;
}

.contact-icon[data-icon="mail"]::before {
  -webkit-mask: url("./icons/mail.svg") no-repeat center / 22px 22px;
  mask: url("./icons/mail.svg") no-repeat center / 22px 22px;
}

.contact-icon[data-icon="clock"]::before {
  -webkit-mask: url("./icons/clock.svg") no-repeat center / 22px 22px;
  mask: url("./icons/clock.svg") no-repeat center / 22px 22px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact-label {
  font-size: 12px;
  color: #9b9b9b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-value {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.25;
  word-break: break-word;
}

.contact-link {
  color: inherit;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.promotions-body {
  background: #ffffff;
}

.promotions-shell {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 120px;
  background: #ffffff;
  padding: 16px 16px 28px;
  min-height: calc(100vh - 180px);
}

.promotions-hero {
  text-align: center;
  margin: 8px 0 16px;
}

.promotions-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promotions-sub {
  margin: 8px 0 0;
  font-size: 14px;
  color: #7b7b7b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.consult-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consult-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: none;
  border-radius: 28px;
  background: #19682f;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.consult-dot,
.consult-spacer {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: 0 0 44px;
}

.consult-dot {
  background: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(25, 104, 47, 0.25);
  position: relative;
  flex: 0 0 44px;
}

.consult-item[data-icon] .consult-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #19682f;
}

.consult-item[data-icon="stethoscope"] .consult-dot::before {
  -webkit-mask: url("./icons/stethoscope.svg") no-repeat center / 22px 22px;
  mask: url("./icons/stethoscope.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="pill"] .consult-dot::before {
  -webkit-mask: url("./icons/pill.svg") no-repeat center / 22px 22px;
  mask: url("./icons/pill.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="heart-pulse"] .consult-dot::before {
  -webkit-mask: url("./icons/heart-pulse.svg") no-repeat center / 22px 22px;
  mask: url("./icons/heart-pulse.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="brain"] .consult-dot::before {
  -webkit-mask: url("./icons/brain.svg") no-repeat center / 22px 22px;
  mask: url("./icons/brain.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="ear"] .consult-dot::before {
  -webkit-mask: url("./icons/ear.svg") no-repeat center / 22px 22px;
  mask: url("./icons/ear.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="dna"] .consult-dot::before {
  -webkit-mask: url("./icons/dna.svg") no-repeat center / 22px 22px;
  mask: url("./icons/dna.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="bone"] .consult-dot::before {
  -webkit-mask: url("./icons/bone.svg") no-repeat center / 22px 22px;
  mask: url("./icons/bone.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="cross"] .consult-dot::before {
  -webkit-mask: url("./icons/cross.svg") no-repeat center / 22px 22px;
  mask: url("./icons/cross.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="sparkles"] .consult-dot::before {
  -webkit-mask: url("./icons/sparkles.svg") no-repeat center / 22px 22px;
  mask: url("./icons/sparkles.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="smile"] .consult-dot::before {
  -webkit-mask: url("./icons/smile.svg") no-repeat center / 22px 22px;
  mask: url("./icons/smile.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="droplet"] .consult-dot::before {
  -webkit-mask: url("./icons/droplet.svg") no-repeat center / 22px 22px;
  mask: url("./icons/droplet.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="venus"] .consult-dot::before {
  -webkit-mask: url("./icons/venus.svg") no-repeat center / 22px 22px;
  mask: url("./icons/venus.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="scan-line"] .consult-dot::before {
  -webkit-mask: url("./icons/scan-line.svg") no-repeat center / 22px 22px;
  mask: url("./icons/scan-line.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="activity"] .consult-dot::before {
  -webkit-mask: url("./icons/activity.svg") no-repeat center / 22px 22px;
  mask: url("./icons/activity.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="microscope"] .consult-dot::before {
  -webkit-mask: url("./icons/microscope.svg") no-repeat center / 22px 22px;
  mask: url("./icons/microscope.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="baby"] .consult-dot::before {
  -webkit-mask: url("./icons/baby.svg") no-repeat center / 22px 22px;
  mask: url("./icons/baby.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="scissors"] .consult-dot::before {
  -webkit-mask: url("./icons/scissors.svg") no-repeat center / 22px 22px;
  mask: url("./icons/scissors.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="syringe"] .consult-dot::before {
  -webkit-mask: url("./icons/syringe.svg") no-repeat center / 22px 22px;
  mask: url("./icons/syringe.svg") no-repeat center / 22px 22px;
}

.consult-item[data-icon="eye"] .consult-dot::before {
  -webkit-mask: url("./icons/eye.svg") no-repeat center / 22px 22px;
  mask: url("./icons/eye.svg") no-repeat center / 22px 22px;
}

.consult-spacer {
  background: transparent;
}

.consult-title {
  flex: 1 1 auto;
  text-align: center;
}

.terapevt-body {
  background: #ffffff;
}

.terapevt-header {
  color: #bdbdbd;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 18px auto 8px;
  width: min(560px, 92vw);
}

.terapevt-shell {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 120px;
  background: #ffffff;
  border-radius: 0;
  padding: 16px 16px 28px;
  min-height: calc(100vh - 180px);
  box-shadow: none;
}

.doctor-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doctor-card {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.doctor-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #d9d9d9 65%);
}

.doctor-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.doctor-name {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #1c1c1c;
}

.doctor-meta {
  font-size: 12px;
  color: #9b9b9b;
  text-transform: uppercase;
}

.doctor-btn {
  border: none;
  background: #19682f;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

.doctor-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #9b9b9b;
  font-weight: 700;
}

.doctor-star {
  color: #f3c02f;
  font-size: 18px;
}

.doctor-score {
  font-size: 18px;
}

.branch-field.is-hidden {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 20, 18, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-dialog {
  width: min(100%, 820px);
  height: min(85vh, 760px);
  max-height: 92vh;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.booking-header {
  padding: 16px 20px 8px;
  border-bottom: 1px solid #f0f0f0;
}

.booking-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
}

.booking-subtitle {
  margin-top: 4px;
  font-size: 14px;
  color: #7b7b7b;
  text-transform: uppercase;
}

.booking-close {
  align-self: flex-end;
  margin: 10px 14px 0 0;
  border: none;
  background: #f2f2f2;
  color: #1c1c1c;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.booking-frame {
  border: none;
  width: 100%;
  flex: 1 1 auto;
  height: 100%;
}

.modal-open {
  overflow: hidden;
}

@media (max-width: 420px) {
  .doctor-card {
    grid-template-columns: 48px 1fr;
    gap: 10px;
  }

  .doctor-btn {
    grid-column: 2;
    justify-self: start;
  }

  .doctor-rating {
    grid-column: 2;
    justify-self: end;
  }
}
.cards a:hover {
  transform: scale(1.1);
}
