:root {
  --mm-booking-text: #161616;
  --mm-booking-line: rgba(17, 17, 17, 0.08);
  --mm-booking-muted: #8e8e8e;
  --mm-booking-soft: #cfcfcf;
  --mm-booking-pill: #f7f6f4;
  --mm-booking-hover: #f1f1f1;
  --mm-booking-disabled-bg: #f6f4f1;
  --mm-booking-disabled-text: #c8c3c5;
  --mm-booking-accent: rgba(209, 59, 141, 0.5);
  --mm-booking-accent-text: #151515;
  --mm-booking-notice: rgba(209, 59, 141, 0.08);
  --mm-booking-notice-strong: rgba(209, 59, 141, 0.1);
  --mm-booking-notice-text: #d13b8d;
}

* {
  box-sizing: border-box;
}

body[data-mm-page^="booking"],
body[data-mm-page^="gift"] {
  min-height: 100vh;
  background: #ffffff;
  color: var(--mm-booking-text);
}

.mm-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body[data-mm-page^="booking"] .mm-subpage-shell,
body[data-mm-page^="gift"] .mm-subpage-shell {
  width: min(calc(100vw - 96px), 2550px);
  padding-top: 28px;
  padding-bottom: 84px;
}

body[data-mm-page^="booking"] .mm-subpage-topbar,
body[data-mm-page^="gift"] .mm-subpage-topbar {
  padding-top: 14px;
  padding-bottom: 34px;
  border-bottom-color: var(--mm-booking-line);
}

body[data-mm-page^="booking"] .mm-subpage-brand,
body[data-mm-page^="gift"] .mm-subpage-brand {
  font-size: clamp(34px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.07em;
  text-transform: none;
}

body[data-mm-page^="booking"] .mm-subpage-back,
body[data-mm-page^="gift"] .mm-subpage-back {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.mm-booking-shell {
  padding-top: 34px;
}

.mm-booking-stage {
  width: min(100%, 1260px);
  margin: 0 auto;
}

.mm-booking-stage__top,
.mm-booking-selector,
.mm-calendar-weekdays,
.mm-calendar-grid,
.mm-package-picker,
.mm-flow-block,
.mm-booking-actions {
  width: min(100%, 950px);
  margin-left: auto;
  margin-right: auto;
}

.mm-booking-stage__top {
  margin-bottom: 30px;
}

.mm-booking-top-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 14px;
}

.mm-booking-top-nav--marker-only {
  grid-template-columns: 1fr;
  justify-items: center;
}

.mm-booking-top-nav .mm-booking-mode-button:first-child {
  justify-self: start;
}

.mm-booking-top-nav .mm-booking-mode-button:last-child {
  justify-self: end;
}

.mm-booking-mode-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--mm-booking-text);
  box-shadow: inset 0 0 0 2px #1a1a1a;
  background: #fff;
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.mm-booking-mode-button:not(.is-active):hover,
.mm-booking-mode-button:not(.is-active):focus-visible {
  background: var(--mm-booking-hover);
}

.mm-booking-mode-button.is-active {
  background: var(--mm-booking-accent);
  box-shadow: none;
}

.mm-booking-step-marker {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--mm-booking-hover);
  color: var(--mm-booking-text);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.mm-booking-progress {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px;
}

.mm-booking-progress span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: #ececec;
}

.mm-booking-progress span.is-active {
  background: var(--mm-booking-accent);
}

.mm-booking-selector {
  display: grid;
  grid-template-columns: 86px 1fr 86px;
  align-items: center;
  gap: 56px;
}

.mm-month-heading {
  text-align: center;
}

.mm-month-heading h2 {
  margin: 0;
  font-size: clamp(56px, 5vw, 76px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.06em;
  text-transform: lowercase;
}

.mm-month-nav {
  width: 82px;
  height: 82px;
  border: 4px solid #111111;
  border-radius: 24px;
  background: #ffffff;
  color: #111111;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.mm-month-nav span {
  position: relative;
  top: -3px;
}

.mm-month-nav:disabled {
  border-color: #bebebe;
  color: #bebebe;
  cursor: default;
}

.mm-month-nav:not(:disabled):hover,
.mm-month-nav:not(:disabled):focus-visible {
  background: var(--mm-booking-hover);
}

.mm-calendar-weekdays,
.mm-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.mm-calendar-weekdays {
  margin-top: 32px;
  gap: 18px;
}

.mm-calendar-weekdays span {
  text-align: center;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  color: #9d9d9d;
  text-transform: lowercase;
}

.mm-calendar-grid {
  gap: 18px;
  margin-top: 28px;
}

.mm-calendar-day {
  min-height: 74px;
  border: 0;
  background: transparent;
  color: var(--mm-booking-text);
  text-align: center;
  cursor: pointer;
  padding: 0;
}

.mm-calendar-day span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin: 0 auto;
  border-radius: 999px;
  font-size: 31px;
  line-height: 1;
  font-weight: 500;
  transition: background-color 160ms ease, color 160ms ease;
}

.mm-calendar-day:hover span,
.mm-calendar-day:focus-visible span {
  background: var(--mm-booking-hover);
}

.mm-calendar-day.is-selected span {
  background: var(--mm-booking-accent);
}

.mm-calendar-day.is-soldout span {
  position: relative;
  color: #8f8a8d;
}

.mm-calendar-day.is-soldout span::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  height: 1.5px;
  background: rgba(17, 17, 17, 0.28);
  transform: translateY(-50%);
}

.mm-calendar-day.is-soldout:hover span,
.mm-calendar-day.is-soldout:focus-visible span {
  background: #f7f5f6;
}

.mm-calendar-day.is-dimmed,
.mm-calendar-day:disabled {
  cursor: default;
}

.mm-calendar-day.is-dimmed span,
.mm-calendar-day:disabled span {
  color: var(--mm-booking-soft);
}

.mm-calendar-day.is-empty {
  min-height: 74px;
  pointer-events: none;
}

.mm-package-picker {
  margin-top: 34px;
}

.mm-segmented-control {
  display: grid;
  gap: 6px;
  padding: 6px;
  box-shadow: inset 0 0 0 3px #1a1a1a;
  border-radius: 999px;
  background: #ffffff;
}

.mm-segmented-control--packages {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mm-segmented-control button,
.mm-event-switch {
  min-height: 68px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--mm-booking-text);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  text-transform: lowercase;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.mm-segmented-control button:not(.is-active):hover,
.mm-segmented-control button:not(.is-active):focus-visible,
.mm-event-switch:not(.is-active):hover,
.mm-event-switch:not(.is-active):focus-visible {
  background: var(--mm-booking-hover);
}

.mm-segmented-control button.is-active {
  background: var(--mm-booking-accent);
  color: var(--mm-booking-accent-text);
}

.mm-event-switch {
  display: block;
  width: 100%;
  margin-top: 14px;
  box-shadow: inset 0 0 0 3px #1a1a1a;
  background: #ffffff;
  text-transform: none;
  line-height: 1.2;
  padding: 14px 24px;
}

.mm-event-switch.is-active {
  background: var(--mm-booking-accent);
  box-shadow: none;
}

.mm-flow-block {
  margin-top: 24px;
}

.mm-flow-block.is-hidden {
  display: none;
}

.mm-slots-header,
.mm-section-heading {
  margin: 0 0 16px;
}

.mm-slots-header h3,
.mm-section-heading h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
}

.mm-slots-header p,
.mm-section-heading p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: #7d7d7d;
}

.mm-time-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mm-time-slot {
  min-height: 104px;
  border: 0;
  border-radius: 18px;
  background: var(--mm-booking-pill);
  color: var(--mm-booking-text);
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
  transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.mm-time-slot:disabled {
  cursor: default;
}

.mm-time-slot:not(:disabled):not(.is-selected):hover,
.mm-time-slot:not(:disabled):not(.is-selected):focus-visible {
  background: var(--mm-booking-hover);
}

.mm-time-slot strong,
.mm-time-slot span {
  display: block;
}

.mm-time-slot strong {
  padding-top: 21px;
  font-size: 26px;
  line-height: 1;
  font-weight: 600;
}

.mm-time-slot span {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 500;
  color: #aaa2a7;
}

.mm-time-slot.is-selected {
  background: var(--mm-booking-accent);
  box-shadow: none;
}

.mm-time-slot.is-selected:hover,
.mm-time-slot.is-selected:focus-visible {
  background: var(--mm-booking-accent);
}

.mm-time-slot.is-selected span {
  color: rgba(17, 17, 17, 0.68);
}

.mm-time-slot.is-occupied {
  background: #fbfaf8;
  color: #b7b1b5;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.mm-time-slot.is-occupied span {
  color: #c7c0c4;
}

.mm-empty-state {
  margin: 0;
  color: var(--mm-booking-muted);
  font-size: 16px;
  line-height: 1.5;
}

.mm-empty-state.is-error {
  color: #9e2d66;
}

.mm-guests-block,
.mm-summary-block {
  margin-top: 26px;
}

.mm-guests-block.is-hidden,
.mm-summary-block.is-hidden {
  display: none;
}

.mm-guests-inline {
  display: grid;
  grid-template-columns: minmax(340px, 0.54fr) minmax(250px, 0.46fr);
  gap: 16px;
  align-items: stretch;
  min-height: 72px;
}

.mm-guests-control-wrap {
  width: 100%;
  display: flex;
  align-items: stretch;
}

.mm-guests-control {
  display: grid;
  grid-template-columns: 92px 1fr 92px;
  align-items: center;
  gap: 14px;
  max-width: 480px;
  width: 100%;
  min-height: 72px;
}

.mm-guests-stepper {
  min-height: 72px;
  border: 0;
  border-radius: 999px;
  background: var(--mm-booking-pill);
  color: var(--mm-booking-text);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.mm-guests-stepper:not(:disabled):hover,
.mm-guests-stepper:not(:disabled):focus-visible {
  background: var(--mm-booking-hover);
}

.mm-guests-stepper:not(:disabled):active {
  background: var(--mm-booking-accent);
}

.mm-guests-stepper:disabled {
  cursor: default;
  color: var(--mm-booking-disabled-text);
  background: var(--mm-booking-disabled-bg);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.04);
}

.mm-guests-value {
  min-height: 72px;
  border-radius: 999px;
  background: var(--mm-booking-pill);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.mm-guests-value strong,
.mm-guests-value span {
  display: block;
}

.mm-guests-value strong {
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
}

.mm-guests-value span {
  font-size: 14px;
  line-height: 1;
  color: var(--mm-booking-muted);
}

.mm-guests-context {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 72px;
  height: 100%;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--mm-booking-notice-strong);
  text-align: center;
}

.mm-guests-context.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.mm-guests-context p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--mm-booking-notice-text);
}

.mm-guests-context-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: #161616;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  text-align: center;
}

.mm-helper-card {
  margin-top: 16px;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--mm-booking-notice);
}

.mm-helper-card__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--mm-booking-notice-text);
  text-align: center;
}

.mm-summary-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mm-summary-item {
  padding: 18px 20px;
  border-radius: 16px;
  background: #fbfaf8;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.mm-summary-item--price {
  background: #f7f4f0;
}

.mm-summary-item--extra.is-flash {
  animation: mmExtraFlash 720ms ease-out;
}

.mm-summary-item span,
.mm-summary-item strong {
  display: block;
}

.mm-summary-item span {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--mm-booking-muted);
}

.mm-summary-item strong {
  margin-top: 10px;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--mm-booking-text);
}

@keyframes mmExtraFlash {
  0% {
    background: rgba(209, 59, 141, 0.2);
    box-shadow: inset 0 0 0 1px rgba(209, 59, 141, 0.24);
  }

  100% {
    background: #fbfaf8;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
  }
}

.mm-gift-block {
  margin-top: 18px;
}

.mm-gift-block.is-hidden {
  display: none;
}

.mm-gift-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 24px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: inset 0 0 0 3px #1a1a1a;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--mm-booking-text);
  text-align: center;
  cursor: pointer;
  transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.mm-gift-toggle:not(.is-active):hover,
.mm-gift-toggle:not(.is-active):focus-visible {
  background: var(--mm-booking-hover);
}

.mm-gift-toggle.is-active {
  background: var(--mm-booking-accent);
  box-shadow: none;
}

.mm-segmented-control button:not(.is-active):active,
.mm-event-switch:not(.is-active):active,
.mm-time-slot:not(:disabled):active {
  background: var(--mm-booking-accent);
}

.mm-gift-panel {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

.mm-gift-panel.is-hidden {
  display: none;
}

.mm-gift-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.mm-gift-field {
  display: grid;
  gap: 10px;
}

.mm-gift-field span {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--mm-booking-muted);
}

.mm-gift-field input {
  width: 100%;
  min-height: 68px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background: #fbfaf8;
  color: var(--mm-booking-text);
  font: inherit;
  font-size: 18px;
  line-height: 1.2;
  box-sizing: border-box;
}

.mm-gift-field input::placeholder {
  color: #b0acad;
}

.mm-gift-apply {
  min-width: 162px;
  min-height: 68px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--mm-booking-text);
  box-shadow: inset 0 0 0 3px #1a1a1a;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.mm-gift-apply:hover,
.mm-gift-apply:focus-visible {
  background: var(--mm-booking-hover);
}

.mm-gift-apply.is-applied {
  background: var(--mm-booking-accent);
  box-shadow: none;
}

.mm-gift-apply.is-applied:hover,
.mm-gift-apply.is-applied:focus-visible {
  background: var(--mm-booking-accent);
}

.mm-gift-feedback {
  margin: 0;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(209, 59, 141, 0.12);
  color: #7f295c;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.mm-gift-feedback.is-hidden,
.mm-gift-result.is-hidden {
  display: none;
}

.mm-gift-feedback.is-error {
  background: rgba(209, 59, 141, 0.1);
}

.mm-gift-result {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(209, 59, 141, 0.08);
  box-shadow: inset 0 0 0 1px rgba(209, 59, 141, 0.18);
}

.mm-gift-result__title {
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-gift-result__grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mm-gift-result__item {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.mm-gift-result__item span,
.mm-gift-result__item strong {
  display: block;
}

.mm-gift-result__item span {
  font-size: 13px;
  line-height: 1.25;
  color: var(--mm-booking-muted);
}

.mm-gift-result__item strong {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-event-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mm-field {
  display: grid;
  gap: 8px;
}

.mm-field--full {
  grid-column: 1 / -1;
}

.mm-field span {
  font-size: 14px;
  line-height: 1.2;
  color: var(--mm-booking-muted);
}

.mm-field input,
.mm-field textarea {
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: var(--mm-booking-pill);
  padding: 18px 18px;
  font: inherit;
  color: var(--mm-booking-text);
  box-sizing: border-box;
}

.mm-field textarea {
  resize: vertical;
  min-height: 132px;
}

.mm-booking-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 88px;
}

.mm-booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 84px;
  padding: 0 26px;
  box-sizing: border-box;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  text-transform: lowercase;
  appearance: none;
  -webkit-appearance: none;
}

.mm-booking-button--secondary {
  border: 0;
  box-shadow: inset 0 0 0 3px #111111;
  background: #ffffff;
  color: #111111;
  transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.mm-booking-button--secondary:hover,
.mm-booking-button--secondary:focus-visible {
  background: var(--mm-booking-hover);
}

.mm-booking-button--secondary:active {
  background: var(--mm-booking-accent);
  box-shadow: none;
}

.mm-booking-button--primary {
  border: 0;
  background: #cfcfcf;
  color: #ffffff;
  transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

button.mm-booking-button--primary.is-ready,
.mm-booking-button--primary.is-ready {
  background: #111111 !important;
  background-color: #111111 !important;
}

button.mm-booking-button--primary.is-ready:hover,
button.mm-booking-button--primary.is-ready:focus-visible,
.mm-booking-button--primary.is-ready:hover,
.mm-booking-button--primary.is-ready:focus-visible {
  background: var(--mm-booking-hover) !important;
  background-color: var(--mm-booking-hover) !important;
  color: #111111;
}

button.mm-booking-button--primary.is-ready:active,
.mm-booking-button--primary.is-ready:active {
  background: var(--mm-booking-accent) !important;
  background-color: var(--mm-booking-accent) !important;
  color: #111111;
}

.mm-booking-button--primary:disabled {
  cursor: default;
}

.mm-step-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mm-step-progress span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #ececec;
}

.mm-step-progress span.is-complete,
.mm-step-progress span.is-active {
  background: var(--mm-booking-accent);
}

.mm-step-progress span.is-complete {
  opacity: 0.8;
}

.mm-booking-stage--contact,
.mm-booking-stage--summary {
  width: min(100%, 1260px);
  margin: 0 auto;
}

.mm-booking-stage--contact .mm-booking-stage__top,
.mm-booking-stage--summary .mm-booking-stage__top {
  width: min(100%, 950px);
}

.mm-booking-stage--contact .mm-booking-stage__top {
  margin-bottom: 34px;
}

.mm-contact-divider {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--mm-booking-accent);
}

.mm-contact-hero-title {
  margin: 18px 0 0;
  text-align: center;
  font-size: clamp(56px, 5vw, 76px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--mm-booking-text);
}

.mm-contact-context,
.mm-summary-context {
  width: min(100%, 950px);
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mm-context-chip {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fbfaf8;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.mm-context-chip span,
.mm-context-chip strong {
  display: block;
}

.mm-context-chip span {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--mm-booking-muted);
}

.mm-context-chip strong {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-contact-intro,
.mm-summary-intro {
  width: min(100%, 950px);
  margin: 0 auto 28px;
}

.mm-summary-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(46px, 4.2vw, 60px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.mm-contact-intro p,
.mm-summary-intro p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.35;
  color: #7d7d7d;
  text-align: center;
}

.mm-contact-form {
  width: min(100%, 950px);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.mm-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.mm-contact-field {
  display: grid;
  gap: 10px;
}

.mm-contact-field label {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-contact-field input {
  width: 100%;
  min-height: 74px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background: #fbfaf8;
  color: var(--mm-booking-text);
  font: inherit;
  font-size: 20px;
  line-height: 1.2;
}

.mm-contact-field input::placeholder {
  color: #b0acad;
}

.mm-contact-helper {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #7d7d7d;
}

.mm-consent-block {
  width: min(100%, 950px);
  margin: 24px auto 0;
  display: grid;
  gap: 12px;
}

.mm-consent-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fbfaf8;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.mm-consent-row input {
  margin: 2px 0 0;
  width: 20px;
  height: 20px;
  accent-color: #d13b8d;
}

.mm-consent-copy {
  display: grid;
  gap: 4px;
}

.mm-consent-copy strong {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--mm-booking-text);
}

.mm-required-mark {
  display: inline-block;
  color: #cf1f3a;
  font-weight: 700;
  font-size: 1.02em;
  margin-right: 0.18em;
}

.mm-consent-copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.mm-consent-copy span {
  font-size: 15px;
  line-height: 1.45;
  color: var(--mm-booking-muted);
}

.mm-summary-placeholder-card {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 26px 28px;
  border-radius: 24px;
  background: #fbfaf8;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.mm-summary-placeholder-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.mm-summary-placeholder-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #6f6f6f;
}

.mm-review-section {
  width: min(100%, 950px);
  margin: 0 auto 26px;
}

.mm-review-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mm-review-item {
  padding: 18px 20px;
  border-radius: 16px;
  background: #fbfaf8;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.mm-review-item span,
.mm-review-item strong {
  display: block;
}

.mm-review-item span {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--mm-booking-muted);
}

.mm-review-item strong {
  margin-top: 10px;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-review-item strong small {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--mm-booking-muted);
}

.mm-payment-summary-card,
.mm-payment-state-card {
  padding: 24px;
  border-radius: 24px;
  background: #fbfaf8;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.mm-payment-breakdown {
  display: grid;
  gap: 12px;
}

.mm-breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.mm-breakdown-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mm-breakdown-row span {
  font-size: 18px;
  line-height: 1.4;
  color: var(--mm-booking-text);
}

.mm-breakdown-row strong {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--mm-booking-text);
  white-space: nowrap;
}

.mm-promo-block {
  margin-top: 18px;
}

.mm-promo-block.is-hidden {
  display: none;
}

.mm-promo-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 24px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: inset 0 0 0 3px #1a1a1a;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--mm-booking-text);
  cursor: pointer;
  transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.mm-promo-toggle:not(.is-active):hover,
.mm-promo-toggle:not(.is-active):focus-visible {
  background: var(--mm-booking-hover);
}

.mm-promo-toggle.is-active {
  background: var(--mm-booking-accent);
  box-shadow: none;
}

.mm-promo-panel {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

.mm-promo-panel.is-hidden {
  display: none;
}

.mm-promo-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.mm-promo-field {
  display: grid;
  gap: 10px;
}

.mm-promo-field span {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--mm-booking-muted);
}

.mm-promo-field input {
  width: 100%;
  min-height: 68px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background: #ffffff;
  color: var(--mm-booking-text);
  font: inherit;
  font-size: 18px;
  line-height: 1.2;
}

.mm-promo-field input::placeholder {
  color: #b0acad;
}

.mm-promo-apply {
  min-width: 162px;
  min-height: 68px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--mm-booking-text);
  box-shadow: inset 0 0 0 3px #1a1a1a;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.mm-promo-apply:hover,
.mm-promo-apply:focus-visible {
  background: var(--mm-booking-hover);
}

.mm-promo-apply.is-applied {
  background: var(--mm-booking-accent);
  box-shadow: none;
}

.mm-promo-apply.is-applied:hover,
.mm-promo-apply.is-applied:focus-visible {
  background: var(--mm-booking-accent);
}

.mm-promo-feedback {
  margin: 0;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(209, 59, 141, 0.12);
  color: #7f295c;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.mm-promo-feedback.is-hidden {
  display: none;
}

.mm-promo-feedback.is-error {
  background: rgba(209, 59, 141, 0.1);
}

.mm-payment-total-card {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f7f4f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mm-payment-total-card span {
  font-size: 18px;
  line-height: 1.3;
  color: var(--mm-booking-text);
}

.mm-payment-total-card strong {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: var(--mm-booking-text);
  white-space: nowrap;
}

.mm-payment-state-copy {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.45;
  color: #7d7d7d;
}

.mm-sandbox-pending-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.mm-sandbox-pending-note strong,
.mm-sandbox-pending-note span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(209, 59, 141, 0.1);
  color: #7f295c;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mm-sandbox-feedback {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(209, 59, 141, 0.1);
  color: #7f295c;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.mm-sandbox-feedback.is-error {
  background: rgba(158, 45, 102, 0.1);
  color: #9e2d66;
}

.mm-payment-note {
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(209, 59, 141, 0.08);
  color: var(--mm-booking-text);
  font-size: 16px;
  line-height: 1.45;
}

.mm-payment-note strong {
  font-weight: 600;
}

.mm-payment-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mm-pay-method {
  min-height: 62px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px #1a1a1a;
  color: var(--mm-booking-text);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.mm-pay-method:not(.is-active):hover,
.mm-pay-method:not(.is-active):focus-visible {
  background: var(--mm-booking-hover);
}

.mm-pay-method.is-active {
  background: var(--mm-booking-accent);
  box-shadow: none;
}

.mm-zero-state strong {
  display: block;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--mm-booking-text);
}

.mm-zero-state p {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.5;
  color: #7d7d7d;
}

.mm-gift-stage .mm-booking-stage__top {
  width: min(100%, 950px);
  margin-bottom: 50px;
}

.mm-gift-progress {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.mm-gift-progress span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: #ececec;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.03);
}

.mm-gift-progress span.is-active {
  background: var(--mm-booking-accent);
  box-shadow: none;
}

.mm-gift-stage .mm-contact-hero-title {
  margin-top: 30px;
}

.mm-gift-context-line {
  width: min(100%, 950px);
  margin: 0 auto 34px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--mm-booking-text);
  text-align: center;
}

.mm-gift-context-line--contact {
  margin-bottom: 40px;
}

.mm-slots-header--gift-select {
  width: min(100%, 950px);
  margin: 0 auto 14px;
  text-align: center;
}

.mm-slots-header--gift-select h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
}

.mm-gift-prelude {
  width: min(100%, 950px);
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.5;
  color: #7d7d7d;
  text-align: center;
}

.mm-gift-basket {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mm-gift-basket--contact {
  width: min(100%, 950px);
  margin: 0 auto 38px;
}

.mm-gift-basket-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fbfaf8;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-gift-selector,
.mm-gift-flow-card,
.mm-gift-flow-form,
.mm-gift-rules,
.mm-gift-actions-wrap {
  width: min(100%, 950px);
  margin-left: auto;
  margin-right: auto;
}

.mm-gift-selector {
  display: grid;
  gap: 24px;
}

.mm-gift-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mm-gift-option {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 22px;
  aspect-ratio: 1 / 1;
  padding: 28px 22px 22px;
  border-radius: 22px;
  background: #fbfaf8;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
  text-align: center;
  transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.mm-gift-option-select {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.mm-gift-pick-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: inset 0 0 0 3px #111111;
  color: var(--mm-booking-text);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease, opacity 160ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.mm-gift-pick-button:hover,
.mm-gift-pick-button:focus-visible {
  background: var(--mm-booking-hover);
}

.mm-gift-pick-button:active {
  background: var(--mm-booking-accent);
  box-shadow: none;
}

.mm-gift-pick-button.is-hidden,
.mm-gift-qty.is-hidden {
  display: none;
}

.mm-gift-option__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.mm-gift-option:not(.is-selected):hover,
.mm-gift-option:not(.is-selected):focus-visible,
.mm-gift-delivery-option:not(.is-selected):hover,
.mm-gift-delivery-option:not(.is-selected):focus-visible,
.mm-gift-inline-toggle:not(.is-active):hover,
.mm-gift-inline-toggle:not(.is-active):focus-visible {
  background: var(--mm-booking-hover);
}

.mm-gift-option-select:focus-visible {
  outline: none;
}

.mm-gift-option.is-selected,
.mm-gift-delivery-option.is-selected,
.mm-gift-inline-toggle.is-active {
  background: var(--mm-booking-accent);
  box-shadow: none;
}

.mm-gift-option__body strong,
.mm-gift-option__body span {
  display: block;
}

.mm-gift-option strong {
  font-size: 38px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--mm-booking-text);
}

.mm-gift-option__body > span {
  font-size: 19px;
  line-height: 1.35;
  font-weight: 500;
  color: #6b6b6b;
}

.mm-gift-qty {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  width: 100%;
  min-height: 62px;
  padding: 4px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 3px #111111;
  background: rgba(255, 255, 255, 0.88);
}

.mm-gift-qty-button,
.mm-gift-qty-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mm-gift-qty-button {
  border: 0;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--mm-booking-hover);
  color: var(--mm-booking-text);
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.mm-gift-qty-button:hover,
.mm-gift-qty-button:focus-visible {
  background: #e7e7e7;
}

.mm-gift-option.is-selected .mm-gift-qty-button:not(:disabled) {
  background: rgba(255, 255, 255, 0.9);
}

.mm-gift-qty-button.is-disabled,
.mm-gift-qty-button:disabled {
  opacity: 0.45;
  cursor: default;
}

.mm-gift-qty-button:disabled:hover,
.mm-gift-qty-button:disabled:focus-visible {
  background: var(--mm-booking-hover);
}

.mm-gift-qty-value {
  min-width: 0;
  width: 100%;
  font-size: 26px;
  line-height: 1;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-gift-rules {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.mm-gift-rules p {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-gift-total {
  width: min(100%, 950px);
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 18px;
  background: #fbfaf8;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.mm-gift-total--delivery {
  display: block;
  gap: 18px;
}

.mm-gift-total-breakdown {
  display: grid;
  gap: 12px;
  width: 100%;
}

.mm-gift-total-detail,
.mm-gift-total-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.mm-gift-total-detail {
  padding-bottom: 0;
}

.mm-gift-total-row {
  padding-top: 0;
}

.mm-gift-total-breakdown + .mm-gift-total-row {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.mm-gift-total span,
.mm-gift-total strong {
  display: block;
}

.mm-gift-total > span {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-gift-total > strong {
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--mm-booking-text);
}

.mm-gift-total-detail span,
.mm-gift-total-row span {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-gift-total-detail strong {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--mm-booking-text);
}

.mm-gift-total-row strong {
  font-size: 28px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--mm-booking-text);
}

.mm-gift-delivery-grid {
  display: grid;
  gap: 14px;
}

.mm-gift-delivery-option {
  position: relative;
  padding: 24px 24px 26px;
  border: 0;
  border-radius: 22px;
  background: #fbfaf8;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.mm-gift-delivery-option.is-hidden {
  display: none;
}

.mm-gift-delivery-option strong,
.mm-gift-delivery-option span,
.mm-gift-delivery-option small {
  display: block;
}

.mm-gift-delivery-price-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-gift-delivery-option strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mm-booking-text);
}

.mm-gift-delivery-option span {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-gift-delivery-option small {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-gift-flow-card {
  padding: 24px;
  border-radius: 24px;
  background: #fbfaf8;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.mm-gift-inline-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px #1a1a1a;
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  color: var(--mm-booking-text);
  cursor: pointer;
  transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.mm-gift-inline-panel {
  margin-top: 16px;
}

.mm-gift-inline-panel.is-hidden {
  display: none;
}

.mm-gift-form-section.is-hidden {
  display: none;
}

.mm-gift-flow-form {
  display: grid;
  gap: 28px;
}

.mm-gift-form-section {
  display: grid;
  gap: 22px;
}

.mm-gift-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.mm-gift-form-grid--address {
  margin-top: 2px;
}

.mm-gift-field-row {
  display: grid;
  gap: 10px;
}

.mm-gift-field-row label {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--mm-booking-text);
}

.mm-gift-field-row input,
.mm-gift-field-row select {
  width: 100%;
  min-height: 74px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background: #fbfaf8;
  color: var(--mm-booking-text);
  font: inherit;
  font-size: 20px;
  line-height: 1.2;
}

.mm-gift-field-row input::placeholder {
  color: #b0acad;
}

.mm-gift-helper {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #6f6b6c;
}

body[data-mm-page="gift-contact"] .mm-gift-flow-card {
  padding: 30px 30px 34px;
}

body[data-mm-page="gift-contact"] .mm-consent-block {
  margin-top: 32px;
  gap: 16px;
}

body[data-mm-page="gift-contact"] .mm-consent-row {
  padding: 18px 20px;
}

body[data-mm-page="gift-contact"] .mm-consent-copy strong {
  font-size: 20px;
  line-height: 1.45;
}

.mm-gift-actions-wrap {
  margin-top: 54px;
}

@media (max-width: 980px) {
  body[data-mm-page^="booking"] .mm-subpage-shell,
  body[data-mm-page^="gift"] .mm-subpage-shell {
    width: min(calc(100vw - 40px), 1200px);
  }

  .mm-booking-stage__top,
  .mm-booking-selector,
  .mm-calendar-weekdays,
  .mm-calendar-grid,
  .mm-package-picker,
  .mm-flow-block,
  .mm-booking-actions {
    width: min(100%, 1100px);
  }
}

@media (max-width: 760px) {
  body[data-mm-page^="booking"] .mm-subpage-shell,
  body[data-mm-page^="gift"] .mm-subpage-shell {
    width: min(calc(100vw - 24px), 760px);
    padding-top: 16px;
    padding-bottom: 48px;
  }

  body[data-mm-page^="booking"] .mm-subpage-topbar,
  body[data-mm-page^="gift"] .mm-subpage-topbar {
    flex-direction: row;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 18px;
  }

  body[data-mm-page^="booking"] .mm-subpage-brand,
  body[data-mm-page^="gift"] .mm-subpage-brand {
    font-size: 24px;
  }

  body[data-mm-page^="booking"] .mm-subpage-back,
  body[data-mm-page^="gift"] .mm-subpage-back {
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .mm-booking-shell {
    padding-top: 20px;
  }

  .mm-booking-stage__top,
  .mm-booking-selector,
  .mm-calendar-weekdays,
  .mm-calendar-grid,
  .mm-package-picker,
  .mm-flow-block,
  .mm-booking-actions {
    width: 100%;
  }

  .mm-booking-top-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mm-booking-top-nav .mm-booking-mode-button:first-child,
  .mm-booking-top-nav .mm-booking-mode-button:last-child {
    justify-self: stretch;
  }

  .mm-booking-mode-button {
    flex: 1 1 100%;
    font-size: 16px;
  }

  .mm-booking-step-marker {
    justify-self: center;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .mm-booking-progress span {
    height: 5px;
  }

  .mm-booking-selector {
    grid-template-columns: 52px 1fr 52px;
    gap: 14px;
  }

  .mm-month-heading h2 {
    font-size: 38px;
  }

  .mm-month-nav {
    width: 52px;
    height: 52px;
    border-width: 2px;
    border-radius: 16px;
    font-size: 34px;
  }

  .mm-calendar-weekdays {
    margin-top: 22px;
    gap: 6px;
  }

  .mm-calendar-weekdays span {
    font-size: 12px;
  }

  .mm-calendar-grid {
    gap: 10px 6px;
    margin-top: 16px;
  }

  .mm-calendar-day,
  .mm-calendar-day.is-empty {
    min-height: 46px;
  }

  .mm-calendar-day span {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .mm-segmented-control {
    box-shadow: inset 0 0 0 2px #1a1a1a;
  }

  .mm-segmented-control button,
  .mm-event-switch {
    min-height: 56px;
    font-size: 17px;
  }

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

  .mm-time-slot {
    min-height: 88px;
    border-radius: 16px;
  }

  .mm-time-slot strong {
    padding-top: 17px;
    font-size: 23px;
  }

  .mm-time-slot span {
    margin-top: 8px;
    font-size: 13px;
  }

  .mm-guests-inline {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mm-guests-control {
    grid-template-columns: 68px 1fr 68px;
    max-width: none;
  }

  .mm-guests-stepper,
  .mm-guests-value {
    min-height: 60px;
  }

  .mm-guests-stepper {
    font-size: 32px;
  }

  .mm-guests-context {
    padding: 12px 14px;
    min-height: 0;
    height: auto;
  }

  .mm-guests-context p,
  .mm-guests-context-link {
    font-size: 13px;
  }

  .mm-guests-context.is-hidden {
    display: none;
  }

  .mm-helper-card {
    padding: 16px;
    border-radius: 16px;
  }

  .mm-helper-card__body {
    font-size: 14px;
  }

  .mm-gift-toggle {
    padding: 18px 18px;
    font-size: 17px;
  }

  .mm-gift-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mm-gift-field input {
    min-height: 62px;
    padding: 0 18px;
    font-size: 17px;
  }

  .mm-gift-apply {
    width: 100%;
    min-width: 0;
    min-height: 60px;
    font-size: 17px;
  }

  .mm-gift-feedback {
    padding: 13px 16px;
    font-size: 14px;
  }

  .mm-gift-result {
    padding: 16px;
  }

  .mm-gift-result__title {
    font-size: 16px;
  }

  .mm-gift-result__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mm-gift-result__item {
    padding: 13px 14px;
  }

  .mm-gift-result__item strong {
    font-size: 17px;
  }

  .mm-summary-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mm-summary-item {
    padding: 16px 16px;
  }

  .mm-summary-item span {
    font-size: 13px;
  }

  .mm-summary-item strong {
    margin-top: 8px;
    font-size: 17px;
  }

  .mm-summary-card {
    grid-template-columns: 1fr;
  }

  .mm-summary-item strong {
    font-size: 16px;
  }

  .mm-review-card {
    grid-template-columns: 1fr;
  }

  .mm-review-item {
    padding: 16px;
  }

  .mm-review-item span {
    font-size: 13px;
  }

  .mm-review-item strong {
    font-size: 17px;
  }

  .mm-payment-summary-card,
  .mm-payment-state-card {
    padding: 18px;
    border-radius: 18px;
  }

  .mm-breakdown-row {
    align-items: flex-start;
    gap: 12px;
  }

  .mm-breakdown-row span {
    font-size: 16px;
  }

  .mm-breakdown-row strong {
    font-size: 17px;
  }

  .mm-promo-toggle {
    padding: 18px 18px;
    font-size: 17px;
  }

  .mm-promo-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mm-promo-field input {
    min-height: 62px;
    padding: 0 18px;
    font-size: 17px;
  }

  .mm-promo-apply {
    width: 100%;
    min-width: 0;
    min-height: 60px;
    font-size: 17px;
  }

  .mm-promo-feedback {
    padding: 13px 16px;
    font-size: 14px;
  }

  .mm-payment-total-card {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .mm-payment-total-card span {
    font-size: 16px;
  }

  .mm-payment-total-card strong {
    font-size: 24px;
  }

  .mm-payment-state-copy,
  .mm-zero-state p {
    font-size: 16px;
  }

  .mm-payment-methods {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mm-pay-method {
    min-height: 56px;
    font-size: 17px;
  }

  .mm-zero-state strong {
    font-size: 26px;
  }

  .mm-event-form {
    grid-template-columns: 1fr;
  }

  .mm-booking-actions {
    gap: 14px;
    margin-top: 44px;
  }

  .mm-booking-button {
    min-height: 62px;
    font-size: 18px;
  }

  .mm-step-progress {
    gap: 8px;
  }

  .mm-step-progress span {
    height: 6px;
  }

  .mm-contact-context,
  .mm-summary-context {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }

  .mm-context-chip {
    padding: 12px 14px;
  }

  .mm-context-chip strong {
    font-size: 15px;
  }

  .mm-contact-intro,
  .mm-summary-intro {
    margin-bottom: 22px;
  }

  .mm-contact-hero-title {
    margin-top: 14px;
    font-size: 38px;
  }

  .mm-contact-intro h2,
  .mm-summary-intro h2 {
    font-size: 34px;
  }

  .mm-contact-intro p,
  .mm-summary-intro p {
    font-size: 22px;
  }

  .mm-contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mm-contact-field input {
    min-height: 64px;
    padding: 0 18px;
    font-size: 18px;
  }

  .mm-consent-row {
    grid-template-columns: 22px 1fr;
    gap: 12px;
    padding: 14px 14px;
  }

  .mm-consent-copy strong {
    font-size: 16px;
  }

  .mm-consent-copy span,
  .mm-contact-helper {
    font-size: 14px;
  }

  .mm-gift-context-line {
    margin-bottom: 28px;
    font-size: 24px;
  }

  .mm-slots-header--gift-select {
    margin-bottom: 12px;
  }

  .mm-slots-header--gift-select h3 {
    font-size: 24px;
  }

  .mm-gift-prelude {
    margin-bottom: 18px;
    font-size: 17px;
  }

  .mm-gift-option-grid,
  .mm-gift-delivery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mm-gift-option,
  .mm-gift-delivery-option,
  .mm-gift-flow-card {
    padding: 20px 18px 20px;
    border-radius: 18px;
  }

  .mm-gift-option {
    aspect-ratio: auto;
    min-height: 268px;
  }

  .mm-gift-pick-button {
    min-height: 58px;
    font-size: 18px;
  }

  .mm-gift-option strong,
  .mm-gift-delivery-option strong {
    font-size: 34px;
  }

  .mm-gift-option__body > span,
  .mm-gift-delivery-option span {
    font-size: 16px;
  }

  .mm-gift-delivery-option small {
    font-size: 16px;
  }

  .mm-gift-qty {
    min-height: 58px;
    grid-template-columns: 50px 1fr 50px;
  }

  .mm-gift-qty-button {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .mm-gift-qty-value {
    font-size: 26px;
  }

  .mm-gift-delivery-option small,
  .mm-gift-rules p,
  .mm-gift-helper {
    font-size: 24px;
  }

  .mm-gift-rules {
    margin-top: 32px;
    gap: 18px;
  }

  .mm-gift-total {
    margin-top: 32px;
    padding: 18px 18px;
  }

  .mm-gift-total--delivery {
    gap: 14px;
  }

  .mm-gift-total-breakdown + .mm-gift-total-row {
    padding-top: 14px;
  }

  .mm-gift-total-detail span,
  .mm-gift-total-row span {
    font-size: 18px;
  }

  .mm-gift-total > span {
    font-size: 24px;
  }

  .mm-gift-total-detail strong {
    font-size: 20px;
  }

  .mm-gift-total-row strong {
    font-size: 24px;
  }

  .mm-gift-total > strong {
    font-size: 28px;
  }

  .mm-gift-inline-toggle {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
  }

  .mm-gift-field-row label {
    font-size: 24px;
  }

  .mm-gift-field-row input,
  .mm-gift-field-row select {
    min-height: 64px;
    padding: 0 18px;
    font-size: 18px;
  }

  .mm-gift-actions-wrap {
    margin-top: 40px;
  }

  .mm-gift-delivery-option span,
  .mm-gift-delivery-option small {
    font-size: 18px;
    line-height: 1.3;
  }

  .mm-gift-delivery-option strong {
    font-size: 20px;
    min-height: 40px;
    padding: 0 14px;
  }

  body[data-mm-page="gift-contact"] .mm-gift-flow-card {
    padding: 22px 18px 26px;
  }

  .mm-summary-placeholder-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .mm-summary-placeholder-card h3 {
    font-size: 22px;
  }

  .mm-summary-placeholder-card p {
    font-size: 15px;
  }
}
