.booking-page {
  padding: 64px 0 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  position: fixed;
  top: env(safe-area-inset-top);
  left: 0;
  right: 0;
  z-index: 25;
  padding: 8px 16px;
  height: 48px;
}

.booking-header__btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 6px 0;
  cursor: pointer;
}

.booking-header__btn img {
  width: 24px;
  height: 24px;
}

.booking-header__title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #1B1B1B;
}

.booking-header--hidden {
  opacity: 0;
  pointer-events: none;
}

.booking-card {
  background: var(--surface);
  border-radius: 24px 24px 0px 0px;
  padding: 32px 16px calc(16px + env(safe-area-inset-bottom));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  margin: 0 auto;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: visible;
  max-width: 1040px;
}

.booking-card--home {
  margin-top: 72px;
}

.booking-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: -64px;
  margin-bottom: 64px;
}

.booking-user__meta {
  display: grid;
  gap: 6px;
  text-align: center;
}

.booking-user__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  background: #e6ebf2;
  border: 4px solid #F0F6FA;
}

.booking-user__name {
  font-size: 24px;
  font-weight: 600;
}

.booking-user__role {
  font-size: 14px;
  color: #1B1B1B;
}

.booking-actions {
  display: grid;
  gap: 10px;
}

.booking-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 8px 16px 16px;
  border-radius: 16px;
  border: 0px solid #d9e1ea;
  background: #f7f9fc;
  font-weight: 600;
  color: #1b1b1b;
  font-size: 14px;
  text-align: left;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


.booking-action__arrow {
  width: 18px;
  height: 18px;
  margin-left: auto;
  background: url("../../images/icons/arrow_right.svg") center / contain no-repeat;
}

.booking-action__icon {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: #e9eef6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-action__icon--date {
  background: #9ad88e;
}

.booking-action__icon--service {
  background: #59acff;
}

.booking-action__icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.booking-step {
  display: none;
}

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

.booking-step__title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}

.booking-calendar {




}

.booking-calendar__month {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 24px;
  justify-content: space-between;
  font-size: 14px;
}

.booking-calendar__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0px solid #b9b9b9;
  border-radius: 6px;
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.booking-calendar__nav img {
  width: 24px;
  height: 24px;
}

.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
  font-size: 12px;
}

.booking-calendar__day {
  padding: 8px 0;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: transparent;
  border: none;
  font-size: 14px;
  color: #1b1b1b;
}

.booking-calendar__day:disabled {
  opacity: 0.35;
  cursor: default;
}

.booking-calendar__day.is-active {
  background: #1b1b1b;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  margin: 0 auto;
  line-height: 16px;
}

.booking-times {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.booking-times__section {
  display: grid;
  gap: 8px;
}

.booking-times__label {
  font-size: 12px;
  font-weight: 600;
  color: #1B1B1B;
}

.booking-times__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.booking-time {
  padding: 10px 0;
  border-radius: 16px;
  border: 1px solid #d9e1ea;
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  height: 40px;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1b1b1b;
}

.booking-time.is-active {
  background: #1B1B1B;
  color: #fff;
  border-color: #1B1B1B;
}

.booking-services {
  display: grid;
  gap: 10px;
  padding-bottom: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.booking-service {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 8px 14px 16px;
  border-radius: 16px;
  border: 0px solid #F7F9FB;
  background: #F7F9FB;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.booking-service__indicator {
  width: 4px;
  height: 34px;
  border-radius: 6px;
}

.booking-service__info {
  flex: 1;
}

.booking-service__name {
  font-weight: 600;
  font-size: 14px;
  text-align: left;
}

.booking-service__meta {
  font-size: 12px;
  color: #1C1D21;
  margin-top: 4px;
  text-align: left;
}

.booking-service__check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: url("../../images/icons/tick-square.svg") center/20px no-repeat;
  flex-shrink: 0;
  display: inline-block;
}

.booking-service__check.is-active {
  background-image: url("../../images/icons/tick-square_act.svg");
}

.booking-card--details {
  padding-top: 24px;
}

.booking-details {
  display: grid;
  gap: 12px;
}

.booking-details__card {
  background: #f7f9fb;
  border-radius: 18px;
  padding: 14px 16px;
  display: grid;
  gap: 12px;
}

.booking-details__card--user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-details__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: #e6ebf2;
}

.booking-details__info {
  display: grid;
  gap: 4px;
}

.booking-details__name {
  font-size: 14px;
  font-weight: 600;
  color: #1B1B1B;
}

.booking-details__role {
  font-size: 12px;
  color: #1B1B1B;
}

.booking-details__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.booking-details__icon {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  display: grid;
  place-items: center;
}

.booking-details__icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.booking-details__icon--date {
  background: #9ad88e;
}

.booking-details__icon--service {
  background: #59acff;
}

.booking-details__title {
  font-size: 14px;
  font-weight: 600;
  color: #1B1B1B;
}

.booking-details__sub {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.booking-details__edit {
  border: none;
  background: transparent;
  padding: 4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.booking-details__edit img {
  width: 18px;
  height: 18px;
}

.booking-details__services {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed #e5e7eb;
}

.booking-details__service {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
  padding-left: 42px;
}

.booking-details__service:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.booking-details__service-name {
  font-size: 14px;
  font-weight: 600;
  color: #1B1B1B;
}

.booking-details__service-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #1B1B1B;
  margin-top: 4px;
}

.booking-details__service-meta img {
  width: 16px;
  height: 16px;
}

.booking-details__service-price {
  font-size: 14px;
  font-weight: 600;
  color: #1B1B1B;
}

.booking-details__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  font-weight: 400;
  color: #1B1B1B;
  padding-top: 8px;
}

.booking-details__section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #1B1B1B;
  margin-top: 8px;
}

.booking-form--details input,
.booking-form--details textarea,
.booking-form--details select {
  background: #fff;
}

.booking-form--details select {
  appearance: none;
  background: #fff url("../../images/icons/arrow_down.svg") right 14px center/16px no-repeat;
  padding-right: 36px;
}

.booking-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 11px;
  color: #6b7280;
}

.booking-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.booking-consent a {
  color: #1B1B1B;
  text-decoration: underline;
}

.booking-selected {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom) + 48px + 24px);
  border-top: 1px solid #e5e7eb;
  background: #F7F9FB;
  display: grid;
  gap: 12px;
  z-index: 20;
  max-width: 1040px;
  margin: 0 auto;
}

.booking-selected__title {
  font-size: 14px;
  font-weight: 600;
  color: #1B1B1B;
}

.booking-selected__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-selected__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid #d9e1ea;
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: #1b1b1b;
  cursor: pointer;
  font-family: inherit;
}

.booking-selected__remove {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  color: #1B1B1B;
}

.booking-selected__rows {
  display: grid;
  gap: 10px;
}

.booking-selected__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #1f2937;
}

.booking-selected__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.booking-selected__label img {
  width: 16px;
  height: 16px;
}

.booking-summary {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.booking-summary__card {
  background: #f7f9fc;
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid #d9e1ea;
}

.booking-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #374151;
}

.booking-summary__row + .booking-summary__row {
  margin-top: 6px;
}

.booking-summary__list {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  color: #374151;
}

.booking-summary__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-summary__total {
  margin-top: 8px;
}

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

.booking-form label {
  font-size: 12px;
  font-weight: 400;
  color: #1B1B1B;
  
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid #d9e1ea;
  border-radius: 16px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  margin-top: 6px;
}

.booking-form textarea {
  min-height: 80px;
  resize: vertical;
  margin-top: 6px;
}

.booking-footer {
  margin-top: 20px;
  height: 64px;
}

.booking-btn {
  width: auto;
  height: 48px;
  border-radius: 16px;
  border: none;
  background: #1b1b1b;
  color: #fff;
  font-weight: 600;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 30;
  max-width: 1008px;
  margin: 0 auto;
  font-size: 14px;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.booking-btn.booking-btn--secondary {
  background: #fff;
  border: 1px solid #1f2937;
  color: #1f2937;
}

.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.booking-empty {
  text-align: center;
  color: #6b7280;
  padding: 24px 0;
}
