:root {
  --seansla-purple: #6600cc;
  --seansla-purple-dark: #4b0097;
  --seansla-ink: #21152f;
  --seansla-muted: #756d7e;
  --seansla-line: #ece7f2;
  --seansla-soft: #f7f3fb;
}

body.booking-template-page {
  color: var(--seansla-ink);
  background: #fff;
}

.booking-template-page .content-left-wrapper {
  padding: 50px 42px;
  background: linear-gradient(180deg, rgba(25, 4, 48, .12), rgba(25, 4, 48, .42));
}

.booking-template-page .content-left-wrapper > div:not(.social) {
  width: min(100%, 620px);
}

.booking-template-page #logo {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px rgba(31, 0, 61, .18);
  overflow: hidden;
}

.booking-template-page #logo img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
  border-radius: 16px;
}

.booking-template-page .img_content {
  margin-bottom: 22px;
}

.booking-template-page .booking-hero-image {
  display: block;
  width: min(100%, 430px) !important;
  height: 300px !important;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(23, 0, 45, .28);
  border: 1px solid rgba(255,255,255,.38);
}

.booking-template-page .booking-hero-image.is-fallback {
  object-fit: contain;
  box-shadow: none;
  border: 0;
}

.booking-company-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.booking-template-page .countdown h1 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(29px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.035em;
}

.booking-template-page .countdown h4 {
  margin-top: 0;
}

.booking-company-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
}

.booking-company-stats span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
}

.booking-campaigns {
  width: min(100%, 520px);
  margin: 16px auto 0;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  text-align: left;
  backdrop-filter: blur(7px);
}

.booking-campaigns-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.booking-campaign-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.booking-campaign-item {
  min-width: 0;
  padding: 10px 11px;
  border-radius: 13px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
}

.booking-campaign-item strong,
.booking-campaign-item small {
  display: block;
}

.booking-campaign-item strong {
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-campaign-item small {
  margin-top: 4px;
  color: rgba(255,255,255,.76);
  font-size: 10px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .booking-company-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 350px);
    margin-left: auto;
    margin-right: auto;
  }

  .booking-company-stats span {
    justify-content: center;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    white-space: nowrap;
  }

  .booking-campaigns {
    width: min(100%, 350px);
  }

  .booking-campaign-list {
    grid-template-columns: 1fr;
  }
}

.booking-template-page .content-right {
  min-height: 100vh;
}

.booking-template-page #wizard_container {
  width: min(100%, 470px);
}

.booking-template-page #middle-wizard {
  min-height: 420px;
}

.booking-template-page .step {
  display: none;
}

.booking-template-page .step.is-active {
  display: block;
}

.booking-template-page h3.main_question {
  font-weight: 800;
  color: var(--seansla-ink);
  letter-spacing: -.025em;
}

.booking-step-copy {
  margin: -13px 0 23px;
  color: var(--seansla-muted);
  font-size: 14px;
  line-height: 1.6;
}

.booking-template-page .list_block ul li {
  margin-bottom: 9px;
}

.booking-template-page .checkbox_radio_container {
  min-height: 62px;
}

.booking-template-page .checkbox_radio_container .wrapper {
  min-height: 62px;
  padding: 12px 16px 12px 52px;
  border-radius: 16px;
  border: 1px solid var(--seansla-line);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  transition: .2s ease;
}

.booking-template-page .checkbox_radio_container input:checked ~ .wrapper {
  border-color: rgba(102, 0, 204, .46);
  background: #faf6ff;
  box-shadow: 0 10px 28px rgba(102, 0, 204, .09);
}

.booking-choice-main {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.booking-choice-main strong {
  color: var(--seansla-ink);
  font-size: 15px;
}

.booking-choice-main small {
  margin-top: 3px;
  color: var(--seansla-muted);
  font-size: 12px;
  line-height: 1.35;
}

.booking-choice-meta {
  flex: none;
  color: var(--seansla-purple);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.booking-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #6600cc, #9f52e9);
  font-size: 13px;
  font-weight: 900;
}

.booking-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-service-thumb {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--seansla-soft);
}

.booking-template-page #top-wizard {
  position: relative;
}

.booking-template-page #progressbar {
  height: 4px;
  border-radius: 999px;
  background: #eee8f3;
}

.booking-template-page #progressbar::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--booking-progress, 25%);
  border-radius: inherit;
  background: linear-gradient(90deg, #6600cc, #9f52e9);
  transition: width .25s ease;
}

.booking-template-page #location {
  font-weight: 700;
}

.booking-template-page #bottom-wizard {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.booking-template-page #bottom-wizard button[hidden] {
  display: none !important;
}

.booking-template-page button.submit {
  border: none;
  color: #fff;
  background: #6600cc;
  font-weight: 700;
  border-radius: 13px;
  padding: 12px 24px;
}

.booking-template-page button.submit:hover {
  background: #333;
}

.booking-flash {
  margin: 0 0 22px;
  border-radius: 15px;
  padding: 13px 15px;
  font-size: 13px;
  font-weight: 700;
}

.booking-flash.success { color: #17663a; background: #eaf8f0; border: 1px solid #ccebd9; }
.booking-flash.error { color: #9e2430; background: #fff0f2; border: 1px solid #ffd2d8; }
.booking-flash.warning { color: #845511; background: #fff8e8; border: 1px solid #f7e1ad; }
.booking-flash.info { color: #63367a; background: #f8edfd; border: 1px solid #ebd3f7; }

.booking-inline-error {
  display: none;
  margin: 10px 0 0;
  color: #b52d3a;
  font-size: 12px;
  font-weight: 700;
}

.booking-inline-error.is-visible { display: block; }

.booking-template-page .takvim {
  width: 100%;
  margin-top: 0;
}

.booking-template-page .takvim .baslik {
  border-radius: 17px 17px 0 0;
}

.booking-template-page .takvim .baslik button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  padding: 4px 10px;
}

.booking-template-page .takvim .baslik button:disabled {
  opacity: .25;
  cursor: not-allowed;
}

.booking-template-page .tarihler > button {
  border: 0;
  min-height: 42px;
  background: transparent;
  color: #333;
  border-radius: 10px;
  font-weight: 700;
}

.booking-template-page .tarihler > button.baskaay,
.booking-template-page .tarihler > button.is-disabled {
  color: #c8c3cd;
  cursor: not-allowed;
}

.booking-template-page .tarihler > button.is-available {
  background: #f1e7fb;
  color: var(--seansla-purple);
  cursor: pointer;
}

.booking-template-page .tarihler > button.bugun {
  box-shadow: inset 0 0 0 1px #6600cc;
}

.booking-template-page .tarihler > button.secili {
  background: #fff;
  color: #6600cc;
  box-shadow: 0 8px 18px rgba(32,0,64,.28);
}

#time_selection {
  margin-top: 22px;
}

.booking-time-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.booking-time-list li { margin: 0 !important; }
.booking-time-list .checkbox_radio_container { min-height: 48px; }
.booking-time-list .checkbox_radio_container .wrapper {
  min-height: 48px;
  justify-content: center;
  padding: 10px 8px 10px 36px;
  font-size: 13px;
}

.booking-empty-state {
  padding: 24px;
  border-radius: 16px;
  background: var(--seansla-soft);
  color: var(--seansla-muted);
  text-align: center;
  line-height: 1.6;
}

.booking-note-area {
  min-height: 118px !important;
  padding-top: 20px !important;
  resize: vertical;
}

.booking-account-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 17px;
  padding: 14px;
  border-radius: 15px;
  background: #f7f2fc;
  color: #5b3a73;
  font-size: 13px;
  line-height: 1.55;
}

.booking-account-note i {
  font-size: 18px;
  color: var(--seansla-purple);
}

.booking-summary-card {
  margin-top: 17px;
  padding: 18px;
  border-radius: 18px;
  background: #23162e;
  color: #fff;
}

.booking-summary-card h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
  font-size: 13px;
}

.booking-summary-row:last-child { border-bottom: 0; }
.booking-summary-row span { color: rgba(255,255,255,.65); }
.booking-summary-row strong { color: #fff; text-align: right; }

.booking-template-page .panel__content h2 {
  font-weight: 800;
}

.booking-template-page .strip_info h3 {
  font-size: 18px;
  font-weight: 800;
}

.booking-company-logo-panel {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(45,16,75,.12);
  margin-bottom: 18px;
}

.booking-panel-description {
  max-width: 760px;
  color: #6c6374;
  line-height: 1.7;
}

.booking-menu-user {
  margin-top: 28px;
  font-size: 14px !important;
  color: #7d6c89 !important;
}

.booking-template-page .cd-overlay-nav,
.booking-template-page .cd-overlay-content {
  pointer-events: none;
}

.booking-template-page .cd-primary-nav.fade-in {
  visibility: visible;
  opacity: 1;
}

.booking-empty-page {
  width: min(92%, 560px);
  margin: auto;
  padding: 44px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(36, 12, 57, .12);
  text-align: center;
}

.booking-empty-page h1 { font-weight: 800; }
.booking-empty-page p { color: var(--seansla-muted); }
.booking-empty-page a {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 20px;
  border-radius: 12px;
  color: #fff;
  background: var(--seansla-purple);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 991px) {
  .booking-template-page .content-left-wrapper { padding: 90px 22px 55px; }
  .booking-template-page .booking-hero-image { height: 240px !important; }
  .booking-template-page .content-right { min-height: auto; }
  .booking-template-page #middle-wizard { min-height: 390px; }
}

@media (max-width: 575px) {
  .booking-template-page .container.my-auto { padding-left: 22px; padding-right: 22px; }
  .booking-time-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-template-page .checkbox_radio_container .wrapper { padding-right: 12px; }
  .booking-choice-meta { max-width: 92px; }
  .booking-template-page #bottom-wizard button { padding-left: 20px; padding-right: 20px; }
}

/* Template genelindeki disabled buton gizleme kuralı takvim hücrelerini etkilemesin. */
.booking-template-page .takvim .baslik button[disabled] { display: inline-block !important; }
.booking-template-page .takvim .tarihler button[disabled] { display: block !important; }

/* V3: Keep the approved template intact below the permanent Seansla header. */
.booking-template-page .public-header {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.booking-template-page .public-header strong {
  font-weight: 900;
}

.booking-template-shell {
  position: relative;
  display: block;
  min-height: calc(100vh - var(--header-height, 74px));
}

.booking-template-page .booking-template-shell .row-height {
  min-height: calc(100vh - var(--header-height, 74px)) !important;
  height: calc(100vh - var(--header-height, 74px));
}

.booking-template-page .booking-template-shell .content-right {
  min-height: calc(100vh - var(--header-height, 74px));
}

.booking-empty-shell {
  min-height: calc(100vh - var(--header-height, 74px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

@media (max-width: 991px) {
  .booking-template-page .booking-template-shell .row-height {
    height: auto;
  }

  .booking-template-page .booking-template-shell .content-right {
    min-height: auto;
  }
}

/* V4: Tarih/saat adımı ilk onaylanan template görünümünü koruyarak saatleri iki sütuna düşür. */
.booking-template-page .tarihler div.is-disabled {
  pointer-events: none;
}

.booking-template-page .template-time-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.booking-template-page .template-time-list li {
  display: block;
  margin: 0 !important;
}

.booking-template-page .template-time-list .checkbox_radio_container {
  display: block;
  min-height: 0;
  margin-bottom: 0;
  position: relative;
}

.booking-template-page .template-time-list .checkbox_radio_container .wrapper {
  min-height: 0;
  min-width: 0;
  width: 100%;
  padding: 10px 12px 10px 44px;
  border: 0;
  border-radius: 13px;
  background: rgba(0, 0, 0, .03);
  display: block;
  font-weight: 500;
  box-shadow: none;
}

.booking-template-page .template-time-list .checkbox_radio_container input:checked ~ .wrapper {
  border: 0;
  background: #6600cc;
  color: #fff;
  box-shadow: none;
}

.booking-template-page #time_selection h3.main_question {
  color: inherit;
  font-weight: 500;
  letter-spacing: normal;
}

@media (max-width: 575px) {
  .booking-template-page .template-time-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .booking-template-page .template-time-list .checkbox_radio_container .wrapper {
    padding: 10px 10px 10px 40px;
  }
}


/* V5: Mobilde saat seçenekleri de her satırda 2 adet görünsün. */
@media (max-width: 767px) {
  .booking-template-page #time_selection .list_block ul.template-time-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 10px !important;
    row-gap: 10px !important;
  }

  .booking-template-page #time_selection .list_block ul.template-time-list > li {
    display: block !important;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
  }

  .booking-template-page #time_selection .list_block ul.template-time-list > li .checkbox_radio_container {
    width: 100% !important;
    margin: 0 !important;
  }

  .booking-template-page #time_selection .list_block ul.template-time-list > li .checkbox_radio_container .wrapper {
    width: 100% !important;
    padding: 10px 10px 10px 38px !important;
  }
}

/* V6: Mobil saat listesi — zorunlu iki sütun. */
@media screen and (max-width: 767px) {
  body.booking-template-page #time_selection ul[data-time-list],
  body.booking-template-page #time_selection ul.template-time-list,
  body.booking-template-page #time_selection .list_block > ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    grid-auto-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 0 20px !important;
  }

  body.booking-template-page #time_selection ul[data-time-list] > li,
  body.booking-template-page #time_selection ul.template-time-list > li,
  body.booking-template-page #time_selection .list_block > ul > li {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
  }

  body.booking-template-page #time_selection li .checkbox_radio_container,
  body.booking-template-page #time_selection li .checkbox_radio_container .wrapper {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.booking-template-page #time_selection li .checkbox_radio_container {
    margin: 0 !important;
  }

  body.booking-template-page #time_selection li .checkbox_radio_container .wrapper {
    padding: 10px 8px 10px 38px !important;
    white-space: nowrap !important;
  }
}

/* V7: Mobilde ilk saat soldan başlar ve saatler kesin olarak ikişerli dizilir. */
@media screen and (max-width: 767px) {
  body.booking-template-page #time_selection ul.template-time-list,
  body.booking-template-page #time_selection ul[data-time-list] {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    direction: ltr !important;
    gap: 10px !important;
  }

  body.booking-template-page #time_selection ul.template-time-list > li,
  body.booking-template-page #time_selection ul[data-time-list] > li {
    grid-column: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  body.booking-template-page #time_selection ul.template-time-list > li:nth-child(odd),
  body.booking-template-page #time_selection ul[data-time-list] > li:nth-child(odd) {
    grid-column: 1 !important;
  }

  body.booking-template-page #time_selection ul.template-time-list > li:nth-child(even),
  body.booking-template-page #time_selection ul[data-time-list] > li:nth-child(even) {
    grid-column: 2 !important;
  }

  body.booking-template-page #time_selection ul.template-time-list > li .checkbox_radio_container,
  body.booking-template-page #time_selection ul[data-time-list] > li .checkbox_radio_container,
  body.booking-template-page #time_selection ul.template-time-list > li .wrapper,
  body.booking-template-page #time_selection ul[data-time-list] > li .wrapper {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }
}


/* V8: Saatler gerçek satır çiftleri olarak üretilir; ilk kutu her zaman soldadır. */
.booking-template-page #time_selection ul.template-time-list,
.booking-template-page #time_selection ul[data-time-list] {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
}

.booking-template-page #time_selection .booking-time-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  float: none !important;
  clear: both !important;
}

.booking-template-page #time_selection .booking-time-option,
.booking-template-page #time_selection .booking-time-option .checkbox_radio_container,
.booking-template-page #time_selection .booking-time-option .wrapper {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

.booking-template-page #time_selection .booking-time-option .checkbox_radio_container {
  margin: 0 !important;
}

.booking-template-page #time_selection .booking-time-option .wrapper {
  padding: 10px 10px 10px 40px !important;
  white-space: nowrap !important;
}

/* V8: Template'in ikinci üst menüsü kaldırıldı; tüm içerik kalıcı Seansla header'ında birleşti. */
.booking-template-page .public-header--booking .public-header-inner {
  gap: 16px;
}

.booking-template-page .public-header--booking .public-nav {
  gap: 28px;
}

.public-booking-context {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.public-booking-company {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 6px 10px 6px 7px;
  border: 1px solid rgba(43, 24, 95, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 28px rgba(74, 40, 142, .07);
  color: #241444;
  text-decoration: none;
}

.public-booking-company img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
  border-radius: 11px;
  background: #fff;
  padding: 3px;
}

.public-booking-company span {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.public-booking-company small {
  color: #7c3aed;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.public-booking-company strong {
  display: block;
  max-width: 145px;
  overflow: hidden;
  color: #241444;
  font-size: .86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-booking-quick-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.public-booking-quick-actions a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  color: #6d28d9;
  background: #f7f2ff;
  text-decoration: none;
}

.public-booking-quick-actions svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1280px) and (min-width: 1081px) {
  .booking-template-page .public-header--booking .public-nav {
    gap: 18px;
  }

  .public-booking-quick-actions {
    display: none;
  }

  .public-booking-company strong {
    max-width: 100px;
  }
}

@media (max-width: 1080px) {
  .booking-template-page .public-header--booking .public-header-inner {
    justify-content: flex-start;
  }

  .public-booking-context {
    margin-left: auto;
  }

  .public-booking-company {
    padding: 4px;
    border-radius: 13px;
  }

  .public-booking-company img {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 10px;
  }

  .public-booking-company span,
  .public-booking-quick-actions {
    display: none;
  }

  .booking-template-page .public-header--booking .public-menu-btn {
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .booking-template-page .public-header--booking .public-brand span {
    font-size: .92rem;
  }

  .booking-template-page .public-header--booking .public-brand img {
    width: 32px;
    height: 32px;
  }

  .public-booking-company img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .booking-template-page .public-header--booking .public-menu-btn {
    width: 40px;
    height: 40px;
  }
}

/* V10: Masaüstü ve mobil saat sıralamasını tek grid üzerinde kesinleştirir.
   Hem eski doğrudan <li> yapısını hem de yeni .booking-time-row yapısını destekler. */
body.booking-template-page #time_selection ul.template-time-list,
body.booking-template-page #time_selection ul[data-time-list] {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
  column-gap: 10px !important;
  row-gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  direction: ltr !important;
}

/* Yeni JS iki saati bir satır kabında oluşturuyor. Kabı grid açısından görünmez
   yaparak her iki saatin ana gridde yan yana yerleşmesini sağlarız. */
body.booking-template-page #time_selection ul.template-time-list > li.booking-time-row,
body.booking-template-page #time_selection ul[data-time-list] > li.booking-time-row {
  display: contents !important;
}

/* Eski ve yeni HTML çıktılarındaki tüm saat seçenekleri otomatik sırayla yerleşir. */
body.booking-template-page #time_selection ul.template-time-list > li:not(.booking-time-row),
body.booking-template-page #time_selection ul[data-time-list] > li:not(.booking-time-row),
body.booking-template-page #time_selection .booking-time-option {
  grid-column: auto !important;
  grid-row: auto !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
  box-sizing: border-box !important;
}

body.booking-template-page #time_selection .checkbox_radio_container,
body.booking-template-page #time_selection .checkbox_radio_container .wrapper {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

body.booking-template-page #time_selection .checkbox_radio_container {
  margin: 0 !important;
}

body.booking-template-page #time_selection .checkbox_radio_container .wrapper {
  padding: 10px 10px 10px 40px !important;
  white-space: nowrap !important;
}


/* V10: Varsayılan personel ve hizmet ikonları */
.booking-avatar.is-default {
  background: #fff;
  border: 1px solid rgba(102, 0, 204, .14);
}

.booking-avatar.is-default img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.booking-service-thumb.is-default {
  padding: 7px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(102, 0, 204, .14);
}


/* V11: İşletme rozeti ve hızlı ikonlar yalnızca masaüstünde gizlenir; mobil görünüm korunur. */
@media (min-width: 1081px) {
  body.booking-template-page .public-header--booking .public-booking-context {
    display: none !important;
  }
}

.booking-campaign-item em{
  display:inline-flex;
  margin-top:7px;
  padding:4px 7px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  color:#fff;
  font-size:9px;
  font-style:normal;
  font-weight:800;
  letter-spacing:.04em;
}

/* V79: Mobil randevu başlığında hamburger yerine hesap ikonu */
.public-booking-user-action{display:none;width:42px;height:42px;flex:0 0 42px;place-items:center;border:1px solid rgba(43,24,95,.11);border-radius:14px;background:rgba(255,255,255,.82);color:#5b28d6;box-shadow:0 12px 28px rgba(74,40,142,.08);text-decoration:none}.public-booking-user-action svg{width:22px;height:22px}
@media(max-width:767px){body.booking-template-page .public-header--booking .public-menu-btn{display:none!important}body.booking-template-page .public-header--booking .public-booking-user-action{display:grid}body.booking-template-page .public-header--booking .public-header-inner{gap:9px}body.booking-template-page .public-header--booking .public-booking-context{margin-left:auto}.public-booking-company{padding:4px}.public-booking-company img{width:38px;height:38px;flex-basis:38px}}
@media(max-width:420px){.public-booking-user-action{width:40px;height:40px;flex-basis:40px}.public-booking-company img{width:34px;height:34px;flex-basis:34px}}

/* V79: Kampanya sayacı ve firma vitrin bölümleri */
.booking-featured-campaign-label{display:inline-flex;align-items:center;gap:6px;margin:4px 0 9px;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.2);border:1px solid rgba(255,255,255,.24);color:#fff;font-size:10px;font-weight:900;letter-spacing:.05em;text-transform:uppercase}.booking-countdown-title{margin:11px 0 8px;color:rgba(255,255,255,.82);font-size:12px;font-weight:800}.booking-template-page .countdown:not([data-countdown-target]) .container_count{display:none}.booking-company-stats a,.booking-company-stats span{display:inline-flex;align-items:center;gap:7px;border-radius:999px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.2);color:#fff;padding:8px 12px;font-size:12px;font-weight:700;text-decoration:none}.booking-company-stats a:hover{background:rgba(255,255,255,.24);color:#fff}.booking-profile-shortcuts{display:flex;justify-content:center;gap:8px;width:min(100%,520px);margin:13px auto 0}.booking-profile-shortcuts a{display:flex;align-items:center;gap:7px;min-width:0;padding:8px 11px;border-radius:13px;background:rgba(25,4,48,.18);border:1px solid rgba(255,255,255,.16);color:#fff;text-decoration:none;font-size:11px;font-weight:800}.booking-profile-shortcuts a:hover{background:rgba(25,4,48,.3);color:#fff}.booking-profile-shortcuts b{display:grid;min-width:20px;height:20px;padding:0 5px;place-items:center;border-radius:999px;background:rgba(255,255,255,.18);font-size:9px}.booking-template-page .content-left-wrapper{overflow-y:auto}.booking-company-showcase{position:relative;padding:74px 24px 90px;background:linear-gradient(180deg,#fff 0%,#f7f3fb 100%);border-top:1px solid #eee7f5}.booking-showcase-container{width:min(1180px,100%);margin:0 auto}.booking-showcase-head{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-bottom:22px}.booking-showcase-head>div>span,.booking-section-title>div>span{display:block;margin-bottom:7px;color:#7c3aed;font-size:11px;font-weight:900;letter-spacing:.09em;text-transform:uppercase}.booking-showcase-head h2{margin:0;color:#21152f;font-size:clamp(27px,4vw,42px);font-weight:900;letter-spacing:-.04em}.booking-showcase-head p{max-width:690px;margin:10px 0 0;color:#756d7e;line-height:1.65}.booking-showcase-booking-link{display:inline-flex;align-items:center;gap:9px;flex:none;padding:13px 17px;border-radius:15px;background:#6600cc;color:#fff;text-decoration:none;font-size:13px;font-weight:850;box-shadow:0 14px 30px rgba(102,0,204,.2)}.booking-showcase-booking-link:hover{color:#fff;background:#4b0097}.booking-showcase-tabs{position:sticky;top:84px;z-index:20;display:flex;gap:8px;margin:0 0 24px;padding:8px;border:1px solid #ebe5f0;border-radius:18px;background:rgba(255,255,255,.92);box-shadow:0 14px 40px rgba(35,21,47,.07);backdrop-filter:blur(12px)}.booking-showcase-tabs a{display:flex;align-items:center;justify-content:center;gap:8px;flex:1;padding:11px;border-radius:13px;color:#4b4058;background:#faf8fc;text-decoration:none;font-size:13px;font-weight:850}.booking-showcase-tabs a:hover{color:#6600cc;background:#f3ebfc}.booking-showcase-tabs b{display:grid;min-width:22px;height:22px;padding:0 6px;place-items:center;border-radius:999px;background:#eee5f7;color:#6600cc;font-size:10px}.booking-showcase-section{scroll-margin-top:150px;padding:28px;border:1px solid #ebe5f0;border-radius:28px;background:#fff;box-shadow:0 18px 50px rgba(35,21,47,.055)}.booking-showcase-section+.booking-showcase-section{margin-top:18px}.booking-section-title{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:20px}.booking-section-title h3{margin:0;color:#21152f;font-size:24px;font-weight:900;letter-spacing:-.025em}.booking-section-title p{max-width:420px;margin:0;color:#82778c;font-size:13px;text-align:right}.booking-public-campaign-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px}.booking-public-campaign-card{position:relative;padding:20px;border:1px solid #ebe5f0;border-radius:21px;background:linear-gradient(180deg,#fff,#fbf9fd);overflow:hidden}.booking-public-campaign-card.is-featured{border-color:#cdb2eb;background:linear-gradient(145deg,#faf5ff,#fff);box-shadow:0 16px 38px rgba(102,0,204,.1)}.booking-public-campaign-card.is-featured:after{content:'';position:absolute;right:-34px;top:-42px;width:110px;height:110px;border-radius:50%;background:rgba(102,0,204,.08)}.booking-public-campaign-top{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:12px}.booking-public-campaign-top span{padding:6px 9px;border-radius:999px;background:#f2ebf9;color:#6600cc;font-size:10px;font-weight:900;text-transform:uppercase}.booking-public-campaign-top strong{color:#6600cc;font-size:14px;font-weight:900}.booking-public-campaign-card h4{position:relative;z-index:1;margin:15px 0 7px;color:#21152f;font-size:20px;font-weight:900}.booking-public-campaign-card>p{position:relative;z-index:1;margin:0;color:#756d7e;line-height:1.55}.booking-public-campaign-meta{position:relative;z-index:1;display:flex;flex-wrap:wrap;gap:7px;margin-top:15px}.booking-public-campaign-meta span{display:inline-flex;align-items:center;gap:6px;padding:7px 9px;border-radius:11px;background:#f5f2f8;color:#61566b;font-size:11px;font-weight:800}.booking-public-campaign-meta .is-code{color:#4b0097;background:#efe3fc}.booking-public-media-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.booking-public-media-card{margin:0;border:1px solid #ebe5f0;border-radius:18px;background:#fff;overflow:hidden}.booking-public-media-card>a,.booking-public-media-card video{display:block;width:100%;height:190px;background:#1d1722}.booking-public-media-card img,.booking-public-media-card video{width:100%;height:190px;object-fit:cover}.booking-public-media-card figcaption{display:grid;gap:3px;padding:12px}.booking-public-media-card figcaption strong{overflow:hidden;color:#2d2235;font-size:13px;text-overflow:ellipsis;white-space:nowrap}.booking-public-media-card figcaption span{color:#8b8192;font-size:10px;font-weight:750}.booking-public-review-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.booking-public-review-card{padding:18px;border:1px solid #ebe5f0;border-radius:20px;background:#fcfbfd}.booking-review-head{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:10px}.booking-review-avatar{display:grid;width:38px;height:38px;place-items:center;border-radius:13px;background:#efe7f7;color:#6600cc}.booking-review-head>div:nth-child(2){display:grid;min-width:0}.booking-review-head strong{overflow:hidden;color:#2d2235;font-size:13px;text-overflow:ellipsis;white-space:nowrap}.booking-review-head span{overflow:hidden;margin-top:3px;color:#8b8192;font-size:10px;text-overflow:ellipsis;white-space:nowrap}.booking-review-head>b{display:inline-flex;align-items:center;gap:4px;color:#7c3aed;font-size:12px}.booking-public-review-card>p{margin:14px 0 0;color:#61566b;line-height:1.6}.booking-showcase-empty{display:flex;align-items:center;gap:13px;padding:20px;border:1px dashed #dcd2e5;border-radius:18px;background:#fcfafc}.booking-showcase-empty>i{display:grid;width:42px;height:42px;flex:0 0 42px;place-items:center;border-radius:13px;background:#efe7f7;color:#6600cc;font-size:18px}.booking-showcase-empty div{display:grid;gap:3px}.booking-showcase-empty strong{color:#33273c}.booking-showcase-empty span{color:#82778c;font-size:12px}
@media(max-width:991px){.booking-company-showcase{padding:56px 18px 72px}.booking-showcase-head{align-items:flex-start;flex-direction:column}.booking-showcase-tabs{top:78px}.booking-public-media-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.booking-template-page .booking-hero-image{height:260px!important}.booking-profile-shortcuts{flex-wrap:wrap}}
@media(max-width:575px){.booking-template-page .content-left-wrapper{padding:34px 20px 42px}.booking-template-page .booking-hero-image{width:min(100%,330px)!important;height:230px!important;border-radius:24px}.booking-template-page .countdown h1{font-size:30px}.booking-template-page .countdown h4{font-size:20px}.booking-template-page .countdown p{font-size:13px;line-height:1.5}.booking-company-stats a,.booking-company-stats span{justify-content:center;min-width:0;padding:8px;white-space:nowrap}.booking-profile-shortcuts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));width:min(100%,350px)}.booking-profile-shortcuts a{justify-content:center;padding:8px 6px}.booking-profile-shortcuts a i{display:none}.booking-profile-shortcuts a span{overflow:hidden;text-overflow:ellipsis}.booking-company-showcase{padding:42px 14px 60px}.booking-showcase-head h2{font-size:29px}.booking-showcase-booking-link{width:100%;justify-content:center}.booking-showcase-tabs{top:76px;overflow-x:auto;justify-content:flex-start}.booking-showcase-tabs a{min-width:135px;flex:0 0 auto}.booking-showcase-section{padding:18px;border-radius:22px}.booking-section-title{align-items:flex-start;flex-direction:column}.booking-section-title p{text-align:left}.booking-public-campaign-grid,.booking-public-review-grid,.booking-public-media-grid{grid-template-columns:1fr}.booking-public-media-card>a,.booking-public-media-card img,.booking-public-media-card video{height:230px}}

/* V80: Kişiselleştirilmiş işletme önerileri */
.booking-personal-recommendations{padding:0 24px 90px;background:#f7f3fb}.booking-recommendation-container{width:min(1180px,100%);margin:0 auto;padding:30px;border:1px solid #e8dff0;border-radius:30px;background:#fff;box-shadow:0 20px 60px rgba(35,21,47,.07)}.booking-recommendation-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:22px}.booking-recommendation-head span{display:block;margin-bottom:6px;color:#7c3aed;font-size:11px;font-weight:900;letter-spacing:.09em;text-transform:uppercase}.booking-recommendation-head h2{margin:0;color:#21152f;font-size:clamp(25px,3vw,36px);font-weight:900;letter-spacing:-.035em}.booking-recommendation-head p{max-width:720px;margin:9px 0 0;color:#756d7e;line-height:1.6}.booking-recommendation-head>a{flex:none;padding:11px 14px;border-radius:13px;background:#f2ebf9;color:#6600cc;text-decoration:none;font-size:12px;font-weight:850}.booking-recommendation-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.booking-recommendation-card{overflow:hidden;border:1px solid #ebe5f0;border-radius:22px;background:#fff}.booking-recommendation-cover{display:grid;height:155px;place-items:center;background:linear-gradient(135deg,#ede4f8,#f9f6fc);color:#6600cc;text-decoration:none;font-size:32px;font-weight:900}.booking-recommendation-cover img{width:100%;height:100%;object-fit:cover}.booking-recommendation-body{padding:14px}.booking-recommendation-identity{display:grid;grid-template-columns:auto minmax(0,1fr);align-items:center;gap:10px}.booking-recommendation-logo{display:grid;width:43px;height:43px;place-items:center;overflow:hidden;border:1px solid #e5dbea;border-radius:14px;background:#faf7fc;color:#6600cc;font-size:12px;font-weight:900}.booking-recommendation-logo img{width:100%;height:100%;object-fit:cover}.booking-recommendation-identity>span:last-child{display:grid;min-width:0}.booking-recommendation-identity strong,.booking-recommendation-identity small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.booking-recommendation-identity strong{color:#2c2233;font-size:14px}.booking-recommendation-identity small{margin-top:3px;color:#85798e;font-size:10px}.booking-recommendation-meta{display:flex;gap:7px;margin:12px 0}.booking-recommendation-meta span{padding:6px 8px;border-radius:9px;background:#f7f3fa;color:#63576d;font-size:10px;font-weight:800}.booking-recommendation-actions{display:flex;align-items:center;gap:8px}.booking-recommendation-actions>a,.booking-recommendation-actions button{display:inline-flex;align-items:center;justify-content:center;min-height:37px;padding:0 11px;border-radius:11px;font-size:11px;font-weight:850;text-decoration:none;cursor:pointer}.booking-recommendation-actions>a{flex:1;background:#6600cc;color:#fff}.booking-recommendation-actions form{margin:0}.booking-recommendation-actions button{border:1px solid #d7c6e8;background:#fff;color:#6600cc}
@media(max-width:991px){.booking-personal-recommendations{padding:0 18px 72px}.booking-recommendation-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:575px){.booking-personal-recommendations{padding:0 14px 60px}.booking-recommendation-container{padding:18px;border-radius:23px}.booking-recommendation-head{align-items:flex-start;flex-direction:column}.booking-recommendation-head>a{width:100%;text-align:center}.booking-recommendation-grid{grid-template-columns:1fr}.booking-recommendation-cover{height:190px}}
.booking-recommendation-reason{min-height:32px;margin:0 0 12px;color:#766b80;font-size:10px;line-height:1.5}

/* V117: AJAX giriş/kayıt ve minimalist firma profili */
.booking-account-note{align-items:center;flex-wrap:wrap}.booking-account-note>div{flex:1;min-width:180px}.booking-account-note.is-guest{border:1px solid #e0cfee;background:#fbf8fe}.booking-account-note.is-authenticated{border:1px solid #d9eadf;background:#f4fbf6;color:#315f41}.booking-auth-open{flex:none;border:0;border-radius:12px;background:#6600cc;color:#fff;padding:10px 13px;font-size:11px;font-weight:900;cursor:pointer}.booking-auth-open:hover{background:#4c0099}
.booking-company-compact{scroll-margin-top:110px;padding:32px 22px 54px;border-top:1px solid #eee7f5;background:#f8f5fb}.booking-compact-container{width:min(1040px,100%);margin:0 auto;border:1px solid #e8e0ef;border-radius:24px;background:#fff;box-shadow:0 16px 45px rgba(42,27,54,.055);overflow:hidden}.booking-compact-head{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:21px 24px;border-bottom:1px solid #eee8f3}.booking-compact-identity{display:flex;align-items:center;gap:13px;min-width:0}.booking-compact-identity>img{width:54px;height:54px;flex:0 0 54px;border:1px solid #e7dced;border-radius:17px;background:#fff;object-fit:cover}.booking-compact-identity>div{min-width:0}.booking-compact-identity span{display:block;margin-bottom:2px;color:#7c3aed;font-size:9px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.booking-compact-identity h2{overflow:hidden;margin:0;color:#24172f;font-size:22px;font-weight:900;letter-spacing:-.025em;text-overflow:ellipsis;white-space:nowrap}.booking-compact-identity p{margin:3px 0 0;color:#85798d;font-size:11px}.booking-compact-rating{display:grid;grid-template-columns:auto auto;align-items:center;gap:0 6px;flex:none;padding:10px 13px;border-radius:15px;background:#faf7fc}.booking-compact-rating i{color:#7c3aed}.booking-compact-rating strong{color:#281a34;font-size:17px}.booking-compact-rating span{grid-column:1/-1;color:#8a7f92;font-size:9px;text-align:center}.booking-compact-tabs{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:7px;padding:10px 12px;border-bottom:1px solid #eee8f3;background:#fcfbfd}.booking-compact-tabs button{display:flex;align-items:center;justify-content:center;gap:7px;min-height:39px;border:0;border-radius:11px;background:transparent;color:#6f6477;font-size:11px;font-weight:850;cursor:pointer}.booking-compact-tabs button:hover,.booking-compact-tabs button.is-active{background:#f0e8f8;color:#6600cc}.booking-compact-tabs b{display:grid;min-width:18px;height:18px;padding:0 5px;place-items:center;border-radius:999px;background:#e7daf3;color:#6600cc;font-size:8px}.booking-compact-panels{padding:21px 24px 24px}.booking-compact-panel{scroll-margin-top:130px}.booking-compact-panel[hidden]{display:none!important}.booking-about-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);gap:24px}.booking-about-main h3{margin:0 0 8px;color:#281a34;font-size:18px;font-weight:900}.booking-about-main p{margin:0;color:#736978;font-size:13px;line-height:1.65}.booking-about-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.booking-about-facts span{display:grid;grid-template-columns:auto minmax(0,1fr);gap:1px 7px;padding:10px;border:1px solid #eee7f3;border-radius:13px;color:#766b7e;font-size:10px}.booking-about-facts i{grid-row:1/3;color:#7c3aed}.booking-about-facts b{color:#34263d;font-size:10px}.booking-mini-campaigns{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.booking-mini-campaigns article{display:grid;gap:4px;padding:13px 14px;border:1px solid #ece5f1;border-radius:15px;background:#fcfbfd}.booking-mini-campaigns article.is-featured{border-color:#ceb6e5;background:#f8f2fd}.booking-mini-campaigns article>span{color:#7c3aed;font-size:8px;font-weight:900;text-transform:uppercase}.booking-mini-campaigns strong{color:#302139;font-size:13px}.booking-mini-campaigns p{margin:0;color:#786d7f;font-size:10px}.booking-mini-media{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:8px}.booking-mini-media figure{margin:0;overflow:hidden;border-radius:13px;background:#201725;aspect-ratio:1/1}.booking-mini-media a,.booking-mini-media img,.booking-mini-media video{display:block;width:100%;height:100%}.booking-mini-media img,.booking-mini-media video{object-fit:cover}.booking-review-summary{display:inline-flex;align-items:center;gap:7px;margin-bottom:12px;padding:8px 11px;border-radius:12px;background:#f7f2fb}.booking-review-summary i{color:#7c3aed}.booking-review-summary strong{color:#2f2138;font-size:16px}.booking-review-summary span{color:#84788c;font-size:10px}.booking-mini-reviews{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.booking-mini-reviews article{padding:13px 14px;border:1px solid #eee7f2;border-radius:15px;background:#fdfcfe}.booking-mini-reviews header{display:flex;align-items:center;justify-content:space-between;gap:10px}.booking-mini-reviews header strong{overflow:hidden;color:#34263d;font-size:11px;text-overflow:ellipsis;white-space:nowrap}.booking-mini-reviews header b{flex:none;color:#7c3aed;font-size:10px}.booking-mini-reviews p{margin:7px 0 0;color:#746979;font-size:11px;line-height:1.5}.booking-compact-empty{display:flex;align-items:center;gap:9px;padding:16px;border:1px dashed #ddd1e6;border-radius:14px;background:#fcfafc;color:#786d7f;font-size:11px}.booking-compact-empty i{color:#7c3aed;font-size:17px}
.booking-auth-modal .modal-dialog{max-width:700px}.booking-auth-modal .modal-content{border:0;border-radius:24px;box-shadow:0 30px 90px rgba(34,18,45,.24);overflow:hidden}.booking-auth-modal .modal-header{align-items:flex-start;padding:20px 22px;border-bottom:1px solid #eee7f3;background:#faf7fc}.booking-auth-modal .modal-header span{display:block;margin-bottom:3px;color:#7c3aed;font-size:9px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.booking-auth-modal .modal-title{margin:0;color:#26182f;font-size:22px;font-weight:900}.booking-auth-modal .modal-body{padding:20px 22px 23px}.booking-auth-tabs{display:grid;grid-template-columns:1fr 1fr;gap:6px;margin-bottom:14px;padding:5px;border-radius:13px;background:#f3eef7}.booking-auth-tabs button{min-height:38px;border:0;border-radius:9px;background:transparent;color:#72667b;font-size:12px;font-weight:850;cursor:pointer}.booking-auth-tabs button.is-active{background:#fff;color:#6600cc;box-shadow:0 5px 15px rgba(53,31,68,.08)}.booking-auth-message{display:none;margin-bottom:12px;padding:10px 12px;border-radius:11px;font-size:11px;font-weight:750}.booking-auth-message.is-visible{display:block}.booking-auth-message.error{background:#fff0f2;color:#a32238}.booking-auth-message.success{background:#edf9f1;color:#27603a}.booking-auth-form{display:grid;gap:12px}.booking-auth-form[hidden]{display:none!important}.booking-auth-form>label,.booking-auth-grid>label{display:grid;gap:6px;margin:0;color:#3d3045;font-size:10px;font-weight:850}.booking-auth-form label>span small{color:#93889a;font-weight:600}.booking-auth-form input,.booking-auth-form select{width:100%;min-height:43px;border:1px solid #dfd6e5;border-radius:11px;background:#fff;padding:0 12px;color:#302538;font:inherit;outline:none}.booking-auth-form input:focus,.booking-auth-form select:focus{border-color:#9e69cf;box-shadow:0 0 0 3px rgba(102,0,204,.08)}.booking-auth-form>button[type=submit]{min-height:45px;border:0;border-radius:12px;background:#6600cc;color:#fff;font-size:12px;font-weight:900;cursor:pointer}.booking-auth-form>button[type=submit]:hover{background:#4c0099}.booking-auth-form button:disabled{opacity:.65;cursor:wait}.booking-auth-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.booking-auth-grid .is-wide{grid-column:1/-1}.booking-auth-inline{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:7px}.booking-auth-inline button{min-width:94px;border:0;border-radius:11px;background:#eee5f6;color:#6600cc;padding:0 10px;font-size:10px;font-weight:900;cursor:pointer}.booking-auth-code-row>small{color:#6c5d74;font-size:9px;font-weight:700}.booking-auth-terms{display:flex!important;grid-template-columns:none!important;align-items:flex-start;gap:8px!important;color:#766a7e!important;font-size:10px!important;font-weight:650!important}.booking-auth-terms input{width:16px!important;min-height:16px!important;flex:0 0 16px;margin-top:1px;padding:0!important}.booking-auth-terms a{color:#6600cc;font-weight:850}
@media(max-width:767px){.booking-company-compact{padding:24px 14px 40px}.booking-compact-head{align-items:flex-start;padding:17px;flex-direction:column}.booking-compact-rating{align-self:stretch;display:flex;justify-content:center}.booking-compact-rating span{grid-column:auto}.booking-compact-tabs{grid-template-columns:repeat(2,minmax(0,1fr))}.booking-compact-panels{padding:17px}.booking-about-grid{grid-template-columns:1fr}.booking-mini-media{grid-template-columns:repeat(3,minmax(0,1fr))}.booking-auth-modal .modal-dialog{margin:12px}.booking-auth-modal .modal-body{padding:16px}.booking-auth-grid{grid-template-columns:1fr}.booking-auth-grid .is-wide{grid-column:auto}.booking-account-note{align-items:flex-start}.booking-auth-open{width:100%}}
@media(max-width:480px){.booking-mini-campaigns,.booking-mini-reviews{grid-template-columns:1fr}.booking-about-facts{grid-template-columns:1fr}.booking-compact-tabs button{font-size:10px}.booking-auth-inline{grid-template-columns:1fr}.booking-auth-inline button{min-height:39px}}


/* V118: Mobil sihirbaz aksiyonları her durumda görünür; template'in global disabled gizleme kuralı ezilir. */
.booking-template-page #bottom-wizard {
  position: relative;
  z-index: 25;
  min-height: 54px;
}
.booking-template-page #bottom-wizard button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.booking-template-page #bottom-wizard button:disabled {
  display: inline-flex !important;
  opacity: .5;
  cursor: not-allowed;
}
@media (max-width: 991px) {
  .booking-template-page #bottom-wizard {
    position: sticky;
    bottom: 0;
    margin: 18px -22px 0;
    padding: 12px 22px;
    border-top: 1px solid #eee7f3;
    background: rgba(255,255,255,.96);
    box-shadow: 0 -10px 26px rgba(45,24,59,.08);
    backdrop-filter: blur(10px);
  }
  .booking-template-page #bottom-wizard .forward,
  .booking-template-page #bottom-wizard .submit {
    min-width: 118px;
  }
}

/* ========================================================================== 
   V119 — Ana sayfa başlığı + kurumsal AJAX giriş/kayıt modalı
   ========================================================================== */
.booking-main-header{
  position:sticky;
  top:0;
  z-index:1030;
  width:100%;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid #eee9f3;
  box-shadow:0 1px 0 rgba(34,18,45,.02);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  transition:box-shadow .2s ease,background .2s ease;
}
.booking-main-header.is-scrolled{box-shadow:0 12px 34px rgba(39,20,53,.08);background:rgba(255,255,255,.985)}
.booking-main-header__inner{
  width:min(1320px,calc(100% - 40px));
  min-height:82px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:34px;
}
.booking-main-header__brand{display:inline-flex;align-items:center;flex:0 0 auto;text-decoration:none}
.booking-main-header__brand img{display:block;width:166px;height:auto;max-height:54px;object-fit:contain}
.booking-main-header__nav{display:flex;align-items:center;justify-content:center;gap:31px;margin-left:auto}
.booking-main-header__nav>a,.booking-main-header__dropdown>button{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:5px;
  border:0;
  background:transparent;
  padding:29px 0 27px;
  color:#24162c;
  font-family:"Maven Pro",sans-serif;
  font-size:14px;
  line-height:1;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
  cursor:pointer;
  transition:color .2s ease;
}
.booking-main-header__nav>a::after,.booking-main-header__dropdown>button::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:19px;
  height:2px;
  border-radius:2px;
  background:#6d28d9;
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .2s ease;
}
.booking-main-header__nav>a:hover,.booking-main-header__dropdown>button:hover{color:#6d28d9}
.booking-main-header__nav>a:hover::after,.booking-main-header__dropdown>button:hover::after,.booking-main-header__dropdown.is-open>button::after{transform:scaleX(1)}
.booking-main-header__dropdown{position:relative}
.booking-main-header__dropdown>button svg{width:15px;height:15px;transition:transform .2s ease}
.booking-main-header__dropdown.is-open>button svg{transform:rotate(180deg)}
.booking-main-header__dropdown-menu{
  position:absolute;
  top:calc(100% - 8px);
  left:50%;
  width:280px;
  padding:10px;
  border:1px solid #eee6f4;
  border-radius:18px;
  background:#fff;
  box-shadow:0 24px 55px rgba(38,18,52,.14);
  opacity:0;
  visibility:hidden;
  transform:translate(-50%,10px);
  transition:opacity .18s ease,transform .18s ease,visibility .18s ease;
}
.booking-main-header__dropdown.is-open .booking-main-header__dropdown-menu{opacity:1;visibility:visible;transform:translate(-50%,0)}
.booking-main-header__dropdown-menu a{
  display:grid;
  gap:2px;
  padding:11px 12px;
  border-radius:12px;
  color:#2c2034;
  text-decoration:none;
  font-size:13px;
  line-height:1.25;
  transition:background .18s ease,color .18s ease;
}
.booking-main-header__dropdown-menu a:hover{background:#f7f2fc;color:#6500c9}
.booking-main-header__dropdown-menu a span{color:#8c7f94;font-size:10px;font-weight:600}
.booking-main-header__actions{display:flex;align-items:center;gap:10px;margin-left:4px}
.booking-main-header__button{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border:1px solid transparent;
  border-radius:13px;
  font-size:13px;
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease,border-color .18s ease;
}
.booking-main-header__button:hover{transform:translateY(-1px)}
.booking-main-header__button.is-outline{border-color:#e5d8f1;background:#fff;color:#5d168f}
.booking-main-header__button.is-outline:hover{border-color:#c7a9e5;background:#faf7fd;color:#4d0e7a}
.booking-main-header__button.is-primary{background:linear-gradient(135deg,#6d16d6,#4e0f95);color:#fff;box-shadow:0 10px 25px rgba(91,19,177,.22)}
.booking-main-header__button.is-primary:hover{box-shadow:0 14px 30px rgba(91,19,177,.29);color:#fff}
.booking-main-header__toggle{display:none;width:44px;height:44px;border:1px solid #e8def0;border-radius:13px;background:#fff;padding:11px;cursor:pointer}
.booking-main-header__toggle span{display:block;height:2px;margin:4px 0;border-radius:2px;background:#4f176f;transition:transform .2s ease,opacity .2s ease}
.booking-main-header.is-menu-open .booking-main-header__toggle span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.booking-main-header.is-menu-open .booking-main-header__toggle span:nth-child(2){opacity:0}
.booking-main-header.is-menu-open .booking-main-header__toggle span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
.booking-main-header__mobile-actions{display:none}
.booking-main-header__backdrop{display:none}

/* AJAX auth modal */
.booking-auth-modal{--auth-purple:#6500cc;--auth-deep:#2e0b47;--auth-border:#e7deec;--auth-text:#261a2d;--auth-muted:#7e7186}
.booking-auth-modal .modal-dialog{width:min(900px,calc(100% - 32px));max-width:900px;margin:24px auto}
.booking-auth-modal .modal-content{
  position:relative;
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  min-height:560px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.56);
  border-radius:28px;
  background:#fff;
  box-shadow:0 34px 110px rgba(30,12,41,.28);
}
.booking-auth-modal.is-register-mode .modal-dialog{max-width:980px}
.booking-auth-modal.is-register-mode .modal-content{grid-template-columns:260px minmax(0,1fr)}
.booking-auth-close{
  position:absolute;
  top:17px;
  right:17px;
  z-index:5;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:1px solid #e8e0ed;
  border-radius:12px;
  background:rgba(255,255,255,.88);
  color:#675c6e;
  cursor:pointer;
  transition:background .18s ease,color .18s ease,transform .18s ease;
}
.booking-auth-close:hover{background:#f4edf8;color:#4e0f7d;transform:rotate(3deg)}
.booking-auth-close svg{width:19px;height:19px}
.booking-auth-side{
  position:relative;
  isolation:isolate;
  display:flex;
  flex-direction:column;
  padding:31px 27px 27px;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 18% 12%,rgba(255,255,255,.20),transparent 28%),
    radial-gradient(circle at 100% 90%,rgba(255,111,196,.22),transparent 34%),
    linear-gradient(155deg,#7317d7 0%,#4d0b89 53%,#2d073f 100%);
}
.booking-auth-side::before,.booking-auth-side::after{content:"";position:absolute;z-index:-1;border:1px solid rgba(255,255,255,.11);border-radius:50%}
.booking-auth-side::before{width:260px;height:260px;left:-120px;bottom:-105px}
.booking-auth-side::after{width:180px;height:180px;right:-90px;top:80px}
.booking-auth-brand{display:inline-flex;width:max-content;align-items:center;padding:8px 11px;border-radius:12px;background:rgba(255,255,255,.94)}
.booking-auth-brand img{display:block;width:128px;height:auto}
.booking-auth-side-copy{margin:auto 0 34px}
.booking-auth-side-kicker{display:inline-flex;margin-bottom:13px;padding:7px 10px;border:1px solid rgba(255,255,255,.18);border-radius:999px;background:rgba(255,255,255,.09);font-size:9px;font-weight:900;letter-spacing:.09em;text-transform:uppercase}
.booking-auth-side-copy h3{margin:0 0 13px;color:#fff;font-size:27px;line-height:1.07;font-weight:900;letter-spacing:-.035em}
.booking-auth-side-copy p{margin:0;color:rgba(255,255,255,.74);font-size:12px;line-height:1.65;font-weight:600}
.booking-auth-benefits{display:grid;gap:9px}
.booking-auth-benefits span{display:flex;align-items:center;gap:9px;color:rgba(255,255,255,.88);font-size:11px;font-weight:750}
.booking-auth-benefits i{width:23px;height:23px;display:grid;place-items:center;flex:0 0 23px;border:1px solid rgba(255,255,255,.20);border-radius:8px;background:rgba(255,255,255,.10);font-style:normal;font-size:9px;font-weight:900}
.booking-auth-panel{display:flex;flex-direction:column;padding:38px 38px 27px;background:linear-gradient(180deg,#fff 0%,#fdfbfe 100%)}
.booking-auth-heading{padding-right:34px}
.booking-auth-heading>span{display:block;margin-bottom:6px;color:#7a27cf;font-size:9px;font-weight:900;letter-spacing:.11em;text-transform:uppercase}
.booking-auth-heading .modal-title{margin:0;color:var(--auth-text);font-size:26px;line-height:1.12;font-weight:900;letter-spacing:-.035em}
.booking-auth-heading p{margin:7px 0 0;color:var(--auth-muted);font-size:12px;line-height:1.55;font-weight:600}
.booking-auth-tabs{display:grid;grid-template-columns:1fr 1fr;gap:5px;margin:22px 0 18px;padding:5px;border:1px solid #eee7f2;border-radius:14px;background:#f6f1f8}
.booking-auth-tabs button{min-height:42px;border:0;border-radius:10px;background:transparent;color:#817488;font-size:12px;font-weight:900;cursor:pointer;transition:background .18s ease,color .18s ease,box-shadow .18s ease}
.booking-auth-tabs button.is-active{background:#fff;color:var(--auth-purple);box-shadow:0 6px 18px rgba(49,23,65,.09)}
.booking-auth-message{display:none;margin:-3px 0 14px;padding:10px 12px;border:1px solid transparent;border-radius:11px;font-size:11px;line-height:1.45;font-weight:750}
.booking-auth-message.is-visible{display:block}
.booking-auth-message.error{border-color:#ffd3db;background:#fff4f6;color:#a32b40}
.booking-auth-message.success{border-color:#ccebd8;background:#f1fbf5;color:#24623c}
.booking-auth-form{display:grid;gap:14px}
.booking-auth-form[hidden]{display:none!important}
.booking-auth-field{display:grid!important;gap:7px!important;margin:0!important;color:#3d3045!important;font-size:10px!important;font-weight:900!important}
.booking-auth-field>span{display:flex;align-items:center;gap:5px}
.booking-auth-field>span small{color:#a297a8;font-size:9px;font-weight:700}
.booking-auth-control{position:relative;display:flex;align-items:center}
.booking-auth-control>svg{position:absolute;left:14px;z-index:1;width:18px;height:18px;color:#907d9a;pointer-events:none}
.booking-auth-modal .booking-auth-control input,.booking-auth-modal .booking-auth-control select{
  width:100%;
  min-height:48px;
  margin:0;
  padding:0 14px 0 44px;
  border:1px solid var(--auth-border);
  border-radius:13px;
  background:#fff;
  color:#302538;
  font-family:"Maven Pro",sans-serif;
  font-size:12px;
  font-weight:700;
  outline:none;
  box-shadow:none;
  transition:border-color .18s ease,box-shadow .18s ease,background .18s ease;
}
.booking-auth-modal .booking-auth-control input::placeholder{color:#afa4b5;font-weight:600}
.booking-auth-modal .booking-auth-control input:focus,.booking-auth-modal .booking-auth-control select:focus{border-color:#a96ee0;box-shadow:0 0 0 4px rgba(101,0,204,.08);background:#fff}
.booking-auth-select-control::after{content:"";position:absolute;right:15px;width:8px;height:8px;border-right:1.5px solid #8a7c92;border-bottom:1.5px solid #8a7c92;transform:translateY(-2px) rotate(45deg);pointer-events:none}
.booking-auth-modal .booking-auth-control select{padding-right:38px;appearance:none;-webkit-appearance:none}
.booking-auth-inline{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:8px}
.booking-auth-inline>button{min-width:104px;min-height:48px;border:1px solid #dfcff0;border-radius:13px;background:#f5edfb;color:#6200bc;padding:0 13px;font-size:10px;font-weight:900;cursor:pointer;transition:background .18s ease,border-color .18s ease,transform .18s ease}
.booking-auth-inline>button:hover{border-color:#c5a8df;background:#eee1f8;transform:translateY(-1px)}
.booking-auth-inline>button:disabled{opacity:.65;cursor:wait;transform:none}
.booking-auth-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px}
.booking-auth-grid .is-wide{grid-column:1/-1}
.booking-auth-code-row>small{margin-top:1px;color:#75657f;font-size:9px;font-weight:700}
.booking-auth-login-row{display:flex;align-items:center;justify-content:space-between;gap:15px;margin-top:-2px;color:#8f8297;font-size:9px;font-weight:700}
.booking-auth-login-row a{color:#6500cc;font-weight:900;text-decoration:none}
.booking-auth-form>.booking-auth-submit{
  min-height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:0;
  border-radius:14px;
  background:linear-gradient(135deg,#7000df 0%,#5200a2 100%);
  color:#fff;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 13px 30px rgba(98,0,190,.22);
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}
.booking-auth-form>.booking-auth-submit:hover{transform:translateY(-1px);box-shadow:0 16px 34px rgba(98,0,190,.28);filter:saturate(1.06)}
.booking-auth-form>.booking-auth-submit:disabled{opacity:.66;cursor:wait;transform:none;box-shadow:none}
.booking-auth-form>.booking-auth-submit svg{width:18px;height:18px}
.booking-auth-terms{display:flex!important;align-items:flex-start!important;gap:9px!important;margin:1px 0 0!important;color:#776b7f!important;font-size:9px!important;line-height:1.45!important;font-weight:650!important}
.booking-auth-terms input{width:17px!important;height:17px!important;min-height:17px!important;flex:0 0 17px;margin:1px 0 0!important;padding:0!important;accent-color:#6500cc}
.booking-auth-terms a{color:#6500cc;font-weight:900;text-decoration:none}
.booking-auth-security{display:flex;align-items:center;justify-content:center;gap:7px;margin-top:auto;padding-top:18px;color:#998ca0;font-size:9px;font-weight:700}
.booking-auth-security svg{width:15px;height:15px;color:#7d3db5}
.booking-auth-register-form{gap:13px}
.booking-auth-modal.is-register-mode .booking-auth-panel{padding-top:30px;padding-bottom:22px}
.booking-auth-modal.is-register-mode .booking-auth-heading .modal-title{font-size:24px}
.booking-auth-modal.is-register-mode .booking-auth-tabs{margin-top:16px;margin-bottom:14px}
.booking-auth-modal.is-register-mode .booking-auth-security{padding-top:12px}

@media(max-width:1199px){
  .booking-main-header__inner{width:min(100% - 28px,1120px);min-height:74px;gap:18px}
  .booking-main-header__brand img{width:150px}
  .booking-main-header__toggle{display:block;margin-left:auto}
  .booking-main-header__actions{display:none}
  .booking-main-header__nav{
    position:fixed;
    top:74px;
    right:0;
    bottom:0;
    z-index:1032;
    width:min(360px,88vw);
    display:flex;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:0;
    margin:0;
    padding:20px;
    overflow-y:auto;
    background:#fff;
    box-shadow:-22px 30px 60px rgba(38,18,52,.18);
    transform:translateX(105%);
    transition:transform .22s ease;
  }
  .booking-main-header__nav.is-open{transform:translateX(0)}
  .booking-main-header__nav>a,.booking-main-header__dropdown>button{width:100%;justify-content:space-between;padding:15px 12px;border-bottom:1px solid #f0eaf4;font-size:14px}
  .booking-main-header__nav>a::after,.booking-main-header__dropdown>button::after{display:none}
  .booking-main-header__dropdown-menu{position:static;width:100%;padding:6px;margin-top:4px;border:0;border-radius:12px;background:#f8f4fb;box-shadow:none;opacity:1;visibility:visible;transform:none;display:none}
  .booking-main-header__dropdown.is-open .booking-main-header__dropdown-menu{display:block;transform:none}
  .booking-main-header__mobile-actions{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:22px}
  .booking-main-header__mobile-actions a{min-height:45px;display:flex;align-items:center;justify-content:center;border:1px solid #dfd2ea;border-radius:12px;color:#5e1d87;font-size:12px;font-weight:900;text-decoration:none}
  .booking-main-header__mobile-actions a.is-primary{border-color:#6500cc;background:#6500cc;color:#fff}
  .booking-main-header__backdrop{position:fixed;inset:74px 0 0;z-index:1031;background:rgba(22,10,29,.40);backdrop-filter:blur(2px)}
  .booking-main-header.is-menu-open+.booking-main-header__backdrop{display:block}
  body.booking-header-menu-open{overflow:hidden}
}

@media(max-width:820px){
  .booking-auth-modal .modal-dialog,.booking-auth-modal.is-register-mode .modal-dialog{width:min(640px,calc(100% - 24px));max-width:640px;margin:12px auto}
  .booking-auth-modal .modal-content,.booking-auth-modal.is-register-mode .modal-content{grid-template-columns:1fr;min-height:0;max-height:calc(100vh - 24px);overflow-y:auto}
  .booking-auth-side{display:none}
  .booking-auth-panel,.booking-auth-modal.is-register-mode .booking-auth-panel{padding:29px 25px 22px}
}

@media(max-width:575px){
  .booking-main-header__inner{width:calc(100% - 22px);min-height:68px}
  .booking-main-header__brand img{width:137px}
  .booking-main-header__toggle{width:42px;height:42px}
  .booking-main-header__nav{top:68px}
  .booking-main-header__backdrop{inset:68px 0 0}
  .booking-auth-modal{padding:0!important}
  .booking-auth-modal .modal-dialog,.booking-auth-modal.is-register-mode .modal-dialog{width:100%;max-width:none;margin:0;align-items:flex-end;min-height:100%}
  .booking-auth-modal .modal-content,.booking-auth-modal.is-register-mode .modal-content{max-height:94vh;margin-top:auto;border:0;border-radius:24px 24px 0 0}
  .booking-auth-panel,.booking-auth-modal.is-register-mode .booking-auth-panel{padding:27px 18px 18px}
  .booking-auth-close{top:13px;right:13px;width:36px;height:36px}
  .booking-auth-heading{padding-right:40px}
  .booking-auth-heading .modal-title,.booking-auth-modal.is-register-mode .booking-auth-heading .modal-title{font-size:22px}
  .booking-auth-tabs{margin-top:17px}
  .booking-auth-grid{grid-template-columns:1fr;gap:12px}
  .booking-auth-grid .is-wide{grid-column:auto}
  .booking-auth-inline{grid-template-columns:minmax(0,1fr) 96px}
  .booking-auth-inline>button{min-width:0;padding:0 8px}
  .booking-auth-login-row{align-items:flex-start;flex-direction:column;gap:6px}
  .booking-auth-security{padding-top:14px}
}

@media(max-width:380px){
  .booking-auth-inline{grid-template-columns:1fr}
  .booking-auth-inline>button{min-height:43px}
}
