/* =========================================================
   SINANHAIR – ONLINE RANDEVU
   MOBIL UYUMLU V2
   ========================================================= */

* {
  box-sizing: border-box;
}

:root {
  --gold: #cdaa63;
  --gold-soft: #f3e8cf;
  --gold-soft-2: #fffaf0;
  --ink: #171717;
  --muted: #817d75;
  --paper: #f5f1ea;
  --card: #ffffff;
  --line: #e8e0d4;
  --danger: #8f332b;
  --success: #176b45;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

/* =========================================================
   HEADER
   ========================================================= */

.booking-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #171717;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-header-inner {
  width: min(1280px, calc(100% - 36px));
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: auto;
}

.booking-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #ffffff;
  text-decoration: none;
}

.booking-brand > span {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #171717;
  background: var(--gold);
  border-radius: 15px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 700;
}

.booking-brand div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.booking-brand strong {
  overflow: hidden;
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-brand small {
  overflow: hidden;
  color: #aaa39a;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-home-link {
  min-height: 44px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 17px;
  color: #171717;
  background: var(--gold);
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

/* =========================================================
   MAIN / INTRO
   ========================================================= */

.booking-main {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 80px;
}

.booking-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.booking-intro > span {
  grid-column: 1 / -1;
  color: #a9823f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.booking-intro h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 500;
}

.booking-intro h1 em {
  display: block;
  color: var(--gold);
  font-weight: 500;
}

.booking-intro p {
  margin: 0;
  color: #756f67;
  font-size: 16px;
  line-height: 1.75;
}

/* =========================================================
   ALERT
   ========================================================= */

.booking-alert {
  margin-bottom: 20px;
  padding: 15px 18px;
  color: var(--danger);
  background: #fff0ee;
  border: 1px solid #f4cfc9;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}

.booking-alert.success {
  color: var(--success);
  background: #eaf8f1;
  border-color: #ccebdc;
}

/* =========================================================
   LAYOUT
   ========================================================= */

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 22px;
}

.booking-content,
.booking-summary {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(43, 34, 20, 0.06);
}

.booking-content {
  min-width: 0;
  overflow: hidden;
}

/* =========================================================
   STEPS
   ========================================================= */

.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.booking-steps button {
  min-width: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #9a958d;
  background: #ffffff;
  border: 0;
  border-right: 1px solid var(--line);
  text-align: left;
}

.booking-steps button:last-child {
  border-right: 0;
}

.booking-steps button.active {
  color: #171717;
  background: #f8f3e9;
  box-shadow: inset 0 -3px 0 var(--gold);
}

.booking-steps button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.booking-steps span {
  flex: 0 0 auto;
  color: #a27d3c;
  font-size: 10px;
  font-weight: 900;
}

.booking-steps strong {
  min-width: 0;
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================================================
   STEP CONTENT
   ========================================================= */

.booking-step {
  padding: 30px;
}

.booking-step-heading {
  margin-bottom: 24px;
}

.booking-step-heading > span {
  color: #a27d3c;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.booking-step-heading h2 {
  margin: 7px 0 6px;
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 500;
}

.booking-step-heading p {
  margin: 0;
  color: #8a847b;
  font-size: 12px;
  line-height: 1.6;
}

/* =========================================================
   SERVICE / STAFF CARDS
   ========================================================= */

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

.booking-option-card {
  min-width: 0;
  min-height: 210px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 21px;
  color: #171717;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: left;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.booking-option-card:hover,
.booking-option-card.selected {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(110, 83, 36, 0.09);
}

.booking-option-card.selected {
  background: var(--gold-soft-2);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.booking-option-number {
  color: #b18a47;
  font-size: 11px;
  font-weight: 900;
}

.booking-option-card small {
  display: block;
  color: #a27d3c;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-option-card strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: 24px;
  overflow-wrap: anywhere;
}

.booking-option-card p {
  margin: 10px 0 0;
  color: #807a72;
  font-size: 12px;
  line-height: 1.6;
}

.booking-option-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #eee8df;
}

.booking-option-card footer span {
  color: #807a72;
  font-size: 11px;
}

.booking-option-card footer b {
  font-size: 13px;
}

.staff-card {
  grid-template-columns: 58px 1fr;
  grid-template-rows: 1fr auto;
  min-height: 170px;
}

.staff-card footer {
  grid-column: 1 / -1;
}

.booking-staff-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--staff-color, var(--gold));
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

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

/* =========================================================
   DATE / SLOTS
   ========================================================= */

.booking-date-field {
  display: grid;
  gap: 8px;
  max-width: 360px;
}

.booking-date-field span {
  font-size: 11px;
  font-weight: 800;
}

.booking-date-field input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: #171717;
  background: #faf8f4;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}

.booking-date-field input:focus {
  background: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(205, 170, 99, 0.13);
}

.booking-slots-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 27px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.booking-slots-heading strong {
  font-size: 13px;
}

.booking-slots-heading span {
  color: #8c867e;
  font-size: 10px;
  text-align: right;
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.booking-slots button {
  min-height: 62px;
  display: grid;
  gap: 3px;
  place-items: center;
  padding: 8px;
  color: #171717;
  background: #faf8f4;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.booking-slots button:hover,
.booking-slots button.selected {
  color: #171717;
  background: #ead6aa;
  border-color: var(--gold);
}

.booking-slots strong {
  font-size: 14px;
}

.booking-slots span {
  color: #827d75;
  font-size: 9px;
}

/* =========================================================
   FORM
   ========================================================= */

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.booking-form label:not(.booking-consent) {
  display: grid;
  gap: 8px;
}

.booking-form label > span {
  font-size: 11px;
  font-weight: 800;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 0 14px;
  color: #171717;
  background: #faf8f4;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}

.booking-form input {
  height: 49px;
}

.booking-form textarea {
  min-height: 110px;
  padding-top: 13px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  background: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(205, 170, 99, 0.13);
}

.booking-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #716c65;
  font-size: 10px;
  line-height: 1.5;
}

.booking-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--gold);
}

.booking-consent span {
  font-weight: 500 !important;
}

.booking-submit-button {
  width: 100%;
  min-height: 54px;
  color: #171717;
  background: var(--gold);
  border: 0;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 900;
}

.booking-submit-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.booking-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

/* =========================================================
   EMPTY
   ========================================================= */

.booking-empty {
  padding: 35px;
  color: #817b73;
  background: #faf8f4;
  border: 1px dashed #d8cdbb;
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
}

/* =========================================================
   SUMMARY
   ========================================================= */

.booking-summary {
  position: sticky;
  top: 112px;
  padding: 24px;
}

.booking-summary > span {
  color: #a27d3c;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.booking-summary h2 {
  margin: 8px 0 22px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.booking-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.booking-summary dl > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.booking-summary dt {
  color: #8b857d;
  font-size: 10px;
}

.booking-summary dd {
  max-width: 175px;
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
  overflow-wrap: anywhere;
}

.booking-summary-note {
  margin-top: 20px;
  padding: 15px;
  background: #f8f3e9;
  border-radius: 14px;
}

.booking-summary-note strong {
  font-size: 10px;
}

.booking-summary-note p {
  margin: 6px 0 0;
  color: #817b72;
  font-size: 9px;
  line-height: 1.6;
}

/* =========================================================
   SUCCESS
   ========================================================= */

.booking-success {
  padding: 48px 30px;
  text-align: center;
}

.booking-success > span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: #1b6b45;
  background: #e5f5ec;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
}

.booking-success h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 34px;
}

.booking-success > p {
  color: #817b73;
}

.booking-success dl {
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 25px auto;
  text-align: left;
}

.booking-success dl > div {
  padding: 13px;
  border: 1px solid var(--line);
}

.booking-success dt {
  color: #928b82;
  font-size: 9px;
}

.booking-success dd {
  margin: 5px 0 0;
  font-size: 11px;
  font-weight: 800;
}

.booking-success button {
  min-height: 47px;
  padding: 0 20px;
  color: #171717;
  background: var(--gold);
  border: 0;
  border-radius: 12px;
  font-weight: 900;
}

/* =========================================================
   DISABLED
   ========================================================= */

.booking-disabled-card {
  max-width: 650px;
  margin: 70px auto;
  padding: 50px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  text-align: center;
}

.booking-disabled-card > span {
  font-size: 34px;
}

.booking-disabled-card h1 {
  font-family: Georgia, serif;
  font-size: 36px;
}

.booking-disabled-card p {
  color: #807a72;
  line-height: 1.7;
}

.booking-disabled-card a {
  display: inline-flex;
  margin-top: 12px;
  padding: 14px 20px;
  color: #171717;
  background: var(--gold);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  /*
     * Mobil/tablet görünümde özet artık yukarı taşınmıyor.
     * Kullanıcı önce randevu adımlarını görüyor.
     */
  .booking-summary {
    position: static;
    order: initial;
  }

  .booking-summary dl {
    grid-template-columns: 1fr 1fr;
  }

  .booking-summary dl > div {
    display: block;
  }

  .booking-summary dd {
    max-width: none;
    margin-top: 5px;
    text-align: left;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .booking-header-inner {
    width: calc(100% - 24px);
    min-height: 72px;
    gap: 10px;
  }

  .booking-brand {
    gap: 10px;
  }

  .booking-brand > span {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 20px;
  }

  .booking-brand strong {
    font-size: 16px;
  }

  .booking-brand small {
    font-size: 7px;
    letter-spacing: 0.05em;
  }

  .booking-home-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 10px;
  }

  .booking-main {
    width: calc(100% - 22px);
    padding: 28px 0 44px;
  }

  .booking-intro {
    display: block;
    margin-bottom: 22px;
  }

  .booking-intro > span {
    display: block;
    margin-bottom: 10px;
    font-size: 9px;
  }

  .booking-intro h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.02;
  }

  .booking-intro p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.65;
  }

  .booking-alert {
    padding: 13px 14px;
    font-size: 11px;
    line-height: 1.5;
  }

  .booking-content,
  .booking-summary {
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(43, 34, 20, 0.05);
  }

  /*
     * Mobilde 4 adımı yatay, kompakt ve tek satır göster.
     */
  .booking-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: visible;
  }

  .booking-steps button {
    min-height: 64px;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 8px 4px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    text-align: center;
  }

  .booking-steps span {
    font-size: 8px;
  }

  .booking-steps strong {
    width: 100%;
    font-size: 8px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .booking-step {
    padding: 22px 16px 24px;
  }

  .booking-step-heading {
    margin-bottom: 18px;
  }

  .booking-step-heading > span {
    font-size: 8px;
  }

  .booking-step-heading h2 {
    margin-top: 6px;
    font-size: 26px;
    line-height: 1.08;
  }

  .booking-step-heading p {
    font-size: 11px;
  }

  /*
     * Hizmet ve personel kartları tek kolon.
     */
  .booking-option-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .booking-option-card {
    min-height: 0;
    gap: 13px;
    padding: 16px;
    border-radius: 15px;
  }

  .booking-option-card:hover,
  .booking-option-card.selected {
    transform: none;
  }

  .booking-option-card strong {
    font-size: 21px;
  }

  .booking-option-card p {
    font-size: 11px;
    line-height: 1.55;
  }

  .booking-option-card footer {
    padding-top: 11px;
  }

  .staff-card {
    grid-template-columns: 50px minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    min-height: 0;
  }

  .booking-staff-avatar {
    width: 48px;
    height: 48px;
  }

  /*
     * Tarih alanı telefonda tam genişlik.
     */
  .booking-date-field {
    max-width: none;
    width: 100%;
  }

  .booking-date-field input {
    height: 54px;
    font-size: 16px;
  }

  .booking-slots-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    margin-top: 22px;
  }

  .booking-slots-heading span {
    text-align: left;
  }

  /*
     * Saatler iki kolon, parmakla rahat seçim.
     */
  .booking-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 12px;
  }

  .booking-slots button {
    min-height: 68px;
    padding: 10px 6px;
    border-radius: 12px;
  }

  .booking-slots strong {
    font-size: 16px;
  }

  .booking-slots span {
    font-size: 9px;
  }

  /*
     * Müşteri formu tamamen tek kolon.
     */
  .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .booking-form {
    gap: 14px;
  }

  .booking-form input {
    height: 54px;
    font-size: 16px;
  }

  .booking-form textarea {
    min-height: 120px;
    font-size: 16px;
  }

  .booking-form label > span {
    font-size: 10px;
  }

  .booking-consent {
    gap: 11px;
    font-size: 10px;
    line-height: 1.55;
  }

  .booking-consent input {
    width: 20px;
    height: 20px;
  }

  .booking-submit-button {
    min-height: 58px;
    margin-top: 4px;
    border-radius: 14px;
    font-size: 13px;
  }

  /*
     * Özet mobilde ana akıştan sonra gelir.
     */
  .booking-summary {
    padding: 18px;
  }

  .booking-summary h2 {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .booking-summary dl {
    grid-template-columns: 1fr;
  }

  .booking-summary dl > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
  }

  .booking-summary dd {
    max-width: 60%;
    margin-top: 0;
    text-align: right;
  }

  .booking-success {
    padding: 34px 16px;
  }

  .booking-success > span {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .booking-success h2 {
    font-size: 29px;
  }

  .booking-success dl {
    grid-template-columns: 1fr;
  }

  .booking-success button {
    width: 100%;
    min-height: 52px;
  }

  .booking-disabled-card {
    margin: 30px auto;
    padding: 30px 18px;
    border-radius: 18px;
  }

  .booking-disabled-card h1 {
    font-size: 29px;
  }

  .booking-disabled-card a {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
  .booking-header-inner {
    width: calc(100% - 18px);
  }

  .booking-brand small {
    display: none;
  }

  .booking-home-link {
    padding: 0 10px;
  }

  .booking-main {
    width: calc(100% - 16px);
  }

  .booking-intro h1 {
    font-size: 34px;
  }

  .booking-content,
  .booking-summary {
    border-radius: 15px;
  }

  .booking-steps button {
    min-height: 60px;
    padding: 7px 2px;
  }

  .booking-steps strong {
    font-size: 7px;
  }

  .booking-step {
    padding: 19px 13px 22px;
  }

  .booking-step-heading h2 {
    font-size: 24px;
  }

  .booking-option-card {
    padding: 14px;
  }

  .booking-option-card strong {
    font-size: 20px;
  }

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

  .booking-slots button {
    min-height: 66px;
  }

  .booking-summary {
    padding: 15px;
  }

  .booking-summary dl > div {
    gap: 10px;
  }

  .booking-summary dt,
  .booking-summary dd {
    font-size: 9px;
  }
}

/* =========================================================
   RANDEVU BAŞARI / YÖNETİM BUTONLARI
   ========================================================= */

.booking-success-actions {
    max-width: 620px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px auto 0;
}

.booking-success-actions > a,
.booking-success-actions > button {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.booking-manage-button {
    color: #171717;
    background: #ffffff;
    border: 1px solid #cdaa63;
}

.booking-success-actions > button {
    color: #171717;
    background: #cdaa63;
    border: 1px solid #cdaa63;
}

@media (max-width: 620px) {
    .booking-success-actions {
        grid-template-columns: 1fr;
    }

    .booking-success-actions > a,
    .booking-success-actions > button {
        width: 100%;
        min-height: 56px;
    }
}


/* =========================================================
   RANDEVU YÖNETİM SAYFASI
   ========================================================= */

.manage-booking-card {
    width: min(900px, 100%);
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e0d4;
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(43, 34, 20, 0.06);
}

.manage-booking-header {
    padding: 28px;
    border-bottom: 1px solid #e8e0d4;
}

.manage-booking-header > span {
    color: #a27d3c;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
}

.manage-booking-header h1 {
    margin: 8px 0 7px;
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 500;
}

.manage-booking-header p {
    margin: 0;
    color: #817b73;
    font-size: 12px;
    line-height: 1.6;
}

.manage-status {
    display: inline-flex;
    margin-top: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #f4ead5;
    font-size: 10px;
    font-weight: 900;
}

.manage-booking-body {
    display: grid;
    gap: 22px;
    padding: 28px;
}

.manage-current-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid #e8e0d4;
    border-radius: 15px;
}

.manage-current-summary > div {
    padding: 15px;
    border-right: 1px solid #e8e0d4;
    border-bottom: 1px solid #e8e0d4;
}

.manage-current-summary > div:nth-child(3n) {
    border-right: 0;
}

.manage-current-summary small,
.manage-current-summary strong {
    display: block;
}

.manage-current-summary small {
    color: #918a81;
    font-size: 9px;
}

.manage-current-summary strong {
    margin-top: 5px;
    font-size: 11px;
}

.manage-form {
    display: grid;
    gap: 16px;
}

.manage-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.manage-field {
    display: grid;
    gap: 7px;
}

.manage-field > span {
    font-size: 10px;
    font-weight: 850;
}

.manage-field input,
.manage-field select,
.manage-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 13px;
    background: #faf8f4;
    border: 1px solid #e8e0d4;
    border-radius: 12px;
    outline: 0;
}

.manage-field textarea {
    min-height: 110px;
    padding-top: 12px;
    resize: vertical;
}

.manage-field input:focus,
.manage-field select:focus,
.manage-field textarea:focus {
    background: #fff;
    border-color: #cdaa63;
    box-shadow: 0 0 0 4px rgba(205,170,99,.13);
}

.manage-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 4px;
}

.manage-save-button,
.manage-cancel-button {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 13px;
    font-weight: 900;
}

.manage-save-button {
    color: #171717;
    background: #cdaa63;
    border: 1px solid #cdaa63;
}

.manage-cancel-button {
    color: #9a3028;
    background: #fff5f3;
    border: 1px solid #efc7c1;
}

.manage-help {
    padding: 15px;
    color: #756f67;
    background: #f8f3e9;
    border-radius: 13px;
    font-size: 10px;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .manage-booking-header,
    .manage-booking-body {
        padding: 20px 16px;
    }

    .manage-current-summary,
    .manage-form-grid,
    .manage-actions {
        grid-template-columns: 1fr;
    }

    .manage-current-summary > div {
        border-right: 0;
    }
}