.acrt-booking {
  --acrt-burgundy: #4b0710;
  --acrt-burgundy-dark: #2b0308;
  --acrt-gold: #d7a349;
  --acrt-gold-light: #f2c978;
  --acrt-cream: #fffaf2;
  --acrt-paper: #f7efe2;
  --acrt-text: #2b1a12;
  --acrt-muted: #6c5547;
  --acrt-border: rgba(215, 163, 73, 0.46);
  box-sizing: border-box;
  width: 100%;
  max-width: 980px;
  margin: 48px auto;
  padding: 34px;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(247, 239, 226, 0.96));
  color: var(--acrt-text);
  box-shadow: none;
}

.acrt-booking *,
.acrt-booking *::before,
.acrt-booking *::after {
  box-sizing: border-box;
}

.acrt-booking-form,
.acrt-details,
.acrt-availability,
.acrt-floor-room,
.acrt-floor-heading {
  min-width: 0;
  max-width: 100%;
}

.acrt-booking-form,
.acrt-details {
  display: grid;
  gap: 22px;
}

.acrt-public-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.acrt-public-grid > * {
  min-width: 0;
}

.acrt-public-grid.acrt-public-grid--single-room {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.acrt-actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
}

.acrt-actions .acrt-check {
  margin-right: auto;
  margin-left: auto;
}

.acrt-booking label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--acrt-text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.acrt-booking input,
.acrt-booking select,
.acrt-booking textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--acrt-border);
  border-radius: 3px;
  outline: 0;
  background: rgba(255, 250, 242, 0.88);
  color: var(--acrt-text);
  font: inherit;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.acrt-booking textarea {
  min-height: 110px;
  resize: vertical;
}

.acrt-booking input:focus,
.acrt-booking select:focus,
.acrt-booking textarea:focus {
  border-color: var(--acrt-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(215, 163, 73, 0.14);
}

.acrt-booking .button,
.acrt-booking > button,
.acrt-booking .acrt-check,
.acrt-booking .acrt-submit {
  display: inline-flex;
  width: fit-content;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 13px 24px;
  border: 1px solid var(--acrt-gold);
  border-radius: 0;
  background: var(--acrt-burgundy);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.acrt-booking .button:hover,
.acrt-booking .acrt-check:hover,
.acrt-booking .acrt-submit:hover {
  transform: translateY(-1px);
  background: var(--acrt-gold);
  color: var(--acrt-burgundy-dark);
}

.acrt-availability {
  margin-top: 2px;
}

.acrt-availability:empty,
.acrt-message:empty {
  display: none;
}

.acrt-availability h3,
.acrt-details h3 {
  margin: 0 0 14px;
  color: var(--acrt-burgundy);
  font-size: 24px;
  font-weight: 700;
}

.acrt-floor-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.acrt-floor-heading h3 {
  margin-bottom: 5px;
}

.acrt-floor-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--acrt-muted);
  font-size: 13px;
  line-height: 1.55;
}

.acrt-details {
  padding-top: 24px;
  border-top: 1px solid var(--acrt-border);
}

.acrt-auto-choice {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 11px 18px;
  border: 1px solid var(--acrt-border);
  border-radius: 999px;
  background: var(--acrt-cream);
  color: var(--acrt-burgundy);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.acrt-auto-choice.is-selected {
  border-color: var(--acrt-gold);
  background: var(--acrt-burgundy);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(215, 163, 73, 0.14);
}

.acrt-floor-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 14px;
}

.acrt-floor-legend span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--acrt-muted);
  font-size: 12px;
  font-weight: 700;
}

.acrt-floor-legend span::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #c8bfb4;
  content: "";
}

.acrt-floor-legend .status-available::before {
  background: #6f936b;
}

.acrt-floor-legend .status-unavailable::before {
  background: #c8bfb4;
}

.acrt-floor-room {
  margin: 12px 0 0;
}

.acrt-floor-room h4 {
  margin: 0 0 9px;
  color: var(--acrt-burgundy);
}

.acrt-floor-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 1px;
  overflow: visible;
}

.acrt-public-floor {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 0;
  overflow: visible;
  border: 1px solid rgba(215, 163, 73, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.92), transparent 52%),
    linear-gradient(145deg, #fffaf2, #f5ead9);
  box-shadow: inset 0 1px 0 #fff, 0 14px 34px rgba(75, 7, 16, 0.06);
}

.acrt-floor-viewport .acrt-public-floor {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left top;
}

.acrt-public-table {
  position: absolute;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  padding: 2px;
  border: 1px solid rgba(111, 147, 107, 0.65);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--acrt-text);
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 7px 16px rgba(48, 31, 20, 0.09);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.acrt-booking button.acrt-public-table {
  appearance: none;
  margin: 0;
  padding: 2px;
  cursor: pointer;
  font: inherit;
}

.acrt-public-table strong {
  max-width: 100%;
  overflow: hidden;
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.acrt-public-table small {
  max-width: 100%;
  overflow: hidden;
  color: var(--acrt-muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.acrt-public-table-label {
  position: absolute;
  inset: 4px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: none;
  transform: rotate(var(--acrt-label-rotation, 0deg));
  transform-origin: center center;
}

.acrt-public-table-label strong,
.acrt-public-table-label small {
  display: block;
  transform: none !important;
}

.acrt-public-table.shape-round,
.acrt-public-table.shape-plant {
  border-radius: 999px;
}

.acrt-public-table.shape-booth {
  border-color: #8c6f47;
  background: #ead8be;
}

.acrt-public-table.shape-wall {
  border-color: var(--acrt-burgundy-dark);
  border-radius: 2px;
  background: var(--acrt-burgundy-dark);
  color: #fff;
}

.acrt-public-table.shape-wall small {
  color: var(--acrt-paper);
}

.acrt-public-table.shape-pillar {
  overflow: hidden;
  border-color: #7b7066;
  border-radius: 4px;
  background: #ddd5cc;
  box-shadow: none;
}

.acrt-public-table.shape-pillar::before,
.acrt-public-table.shape-pillar::after {
  position: absolute;
  top: 50%;
  left: -15%;
  width: 130%;
  height: 1.5px;
  background: #7b7066;
  content: "";
  transform: rotate(45deg);
}

.acrt-public-table.shape-pillar::after {
  transform: rotate(-45deg);
}

.acrt-public-table.shape-door,
.acrt-public-table.shape-plant {
  border-color: #78906c;
  background: #e4efdf;
  color: #385638;
}

.acrt-public-table.shape-toilet,
.acrt-public-table.shape-window {
  border-color: #7598a1;
  background: #e8f1f1;
  color: #365f66;
}

.acrt-public-table.shape-bar {
  border-color: #a47b39;
  background: #f4e6c8;
  color: #664919;
}

.acrt-public-table.shape-note,
.acrt-public-table.shape-helper {
  border-color: #a99a88;
  background: #eee8df;
  color: #66594d;
}

.acrt-public-table.status-available {
  border-color: rgba(111, 147, 107, 0.72);
  background: rgba(247, 252, 245, 0.94);
  color: #385638;
}

.acrt-public-table.status-reserved,
.acrt-public-table.status-capacity,
.acrt-public-table.status-offline,
.acrt-public-table.status-staff,
.acrt-public-table.status-inactive,
.acrt-public-table.status-closed {
  border-color: rgba(158, 145, 131, 0.35);
  background: #eee8df;
  color: #81766b;
  box-shadow: none;
}

.acrt-public-table.is-table:hover:not(:disabled) {
  z-index: 4;
  border-color: var(--acrt-burgundy);
  box-shadow: 0 0 0 4px rgba(215, 163, 73, 0.22), 0 12px 22px rgba(75, 7, 16, 0.14);
}

.acrt-public-table.is-table.is-selected {
  z-index: 5;
  border-color: var(--acrt-burgundy);
  outline: 3px solid rgba(215, 163, 73, 0.48);
  background: #fff8e9;
  box-shadow: 0 12px 24px rgba(75, 7, 16, 0.16);
}

.acrt-public-table:disabled {
  cursor: default;
  opacity: 1;
}

.acrt-mobile-selection {
  display: none;
}

.acrt-checkline {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px !important;
  align-items: start;
  margin-top: 2px;
  color: var(--acrt-muted) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.5;
  letter-spacing: 0 !important;
}

.acrt-checkline input {
  width: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  accent-color: var(--acrt-burgundy);
}

.acrt-message,
.acrt-error,
.acrt-loading,
.acrt-calendar-note {
  margin-top: 16px;
  padding: 13px 15px;
  border: 1px solid var(--acrt-border);
  border-radius: 3px;
  background: var(--acrt-paper);
  color: var(--acrt-text);
}

.acrt-message.is-ok {
  border-color: rgba(88, 129, 87, 0.32);
  background: #edf5e9;
  color: #315f37;
}

.acrt-message.is-error,
.acrt-error {
  border-color: rgba(215, 163, 73, 0.42);
  background: linear-gradient(135deg, #fffaf0, #f9edda);
  color: var(--acrt-text);
}

.acrt-error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(75, 7, 16, 0.07);
}

.acrt-error__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--acrt-burgundy);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.acrt-error strong {
  display: block;
  margin-bottom: 3px;
  color: var(--acrt-burgundy);
  font-size: 14px;
}

.acrt-error p {
  margin: 0;
  color: var(--acrt-muted);
  font-size: 13px;
  line-height: 1.5;
}

.acrt-loading {
  color: var(--acrt-burgundy);
}

@media (max-width: 720px) {
  .acrt-booking {
    width: 100%;
    max-width: 100%;
    margin: 32px 0;
    padding: 22px 14px;
    overflow: hidden;
  }

  .acrt-booking-form,
  .acrt-details {
    gap: 18px;
  }

  .acrt-public-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .acrt-public-grid.acrt-public-grid--single-room {
    grid-template-columns: 1fr;
  }

  .acrt-floor-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .acrt-auto-choice {
    width: 100%;
  }

  .acrt-booking .button,
  .acrt-booking .acrt-check,
  .acrt-booking .acrt-submit {
    width: 100%;
  }

  .acrt-public-floor {
    width: 100%;
    min-height: 0;
    border-radius: 12px;
  }

  .acrt-public-table strong {
    font-size: 12px;
  }

  .acrt-public-table small {
    display: none;
  }

  .acrt-mobile-selection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(215, 163, 73, 0.38);
    border-radius: 12px;
    background: #fff8e9;
    box-shadow: 0 8px 20px rgba(75, 7, 16, 0.08);
  }

  .acrt-mobile-selection span {
    color: var(--acrt-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .acrt-mobile-selection strong {
    color: var(--acrt-burgundy);
    font-size: 13px;
    text-align: right;
  }
}

/* Premium reservation experience */
.acrt-booking {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 42px 40px 30px;
  overflow: hidden;
  border: 1px solid rgba(154, 106, 46, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(202, 168, 111, 0.13), transparent 25%),
    linear-gradient(145deg, #fffdf8, #f8f0e5);
  box-shadow: 0 30px 70px rgba(25, 8, 9, 0.18), inset 0 1px 0 #fff;
}

.acrt-booking::before,
.acrt-booking::after {
  position: absolute;
  z-index: 0;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(171, 126, 61, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.acrt-booking::before {
  top: -145px;
  right: -90px;
  box-shadow: 0 0 0 18px rgba(171, 126, 61, 0.025), 0 0 0 42px rgba(171, 126, 61, 0.018);
}

.acrt-booking::after {
  bottom: -180px;
  left: -120px;
  box-shadow: 0 0 0 24px rgba(171, 126, 61, 0.02);
}

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

.acrt-booking-intro {
  margin: 0 auto 20px;
  text-align: center;
}

.acrt-booking-intro > span {
  color: #a97931;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.acrt-booking-intro h2 {
  margin: 3px 0 5px;
  color: var(--acrt-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.acrt-booking-intro p {
  margin: 8px 0 0;
  color: var(--acrt-muted);
  font-size: 13px;
}

.acrt-booking-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #bd8b3f;
}

.acrt-booking-ornament i {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c79a4b);
}

.acrt-booking-ornament i:last-child {
  transform: scaleX(-1);
}

.acrt-booking-ornament b {
  font-size: 17px;
  line-height: 1;
}

.acrt-crown-icon {
  width: 28px;
  height: 17px;
  flex: 0 0 auto;
  color: #bd8b3f;
}

.acrt-booking-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 22px 0 20px;
}

.acrt-booking-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #806e61;
  text-align: center;
}

.acrt-booking-step::before,
.acrt-booking-step::after {
  position: absolute;
  top: 15px;
  width: calc(50% - 21px);
  border-top: 1px dashed rgba(171, 126, 61, 0.32);
  content: "";
}

.acrt-booking-step::before { left: 0; }
.acrt-booking-step::after { right: 0; }
.acrt-booking-step:first-child::before,
.acrt-booking-step:last-child::after { display: none; }

.acrt-booking-step b {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(132, 102, 70, 0.33);
  border-radius: 50%;
  background: #fffaf3;
  color: #695344;
  font-size: 12px;
  box-shadow: 0 3px 8px rgba(76, 39, 24, 0.06);
  transition: 0.3s ease;
}

.acrt-booking-step small {
  font-size: 10px;
  font-weight: 700;
}

.acrt-booking-step.is-current b,
.acrt-booking-step.is-complete b {
  border-color: #c59a52;
  background: linear-gradient(145deg, #741329, #360711);
  color: #fff4df;
  box-shadow: 0 0 0 3px rgba(197, 154, 82, 0.14);
}

.acrt-booking-step.is-current small {
  color: var(--acrt-burgundy);
}

.acrt-booking-controls {
  padding: 14px;
  border: 1px solid rgba(171, 126, 61, 0.25);
  border-radius: 13px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: inset 0 1px 0 #fff;
}

.acrt-booking-controls .acrt-actions {
  margin-top: 12px;
}

.acrt-booking label > span,
.acrt-section-title p {
  color: #765f50;
}

.acrt-booking label > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.acrt-booking input,
.acrt-booking select,
.acrt-booking textarea {
  min-height: 44px;
  border-color: rgba(171, 126, 61, 0.28);
  border-radius: 7px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 4px 12px rgba(65, 27, 16, 0.035);
}

.acrt-booking .acrt-check {
  min-height: 43px;
  padding: 11px 28px;
  border-radius: 999px;
}

.acrt-floor-heading {
  margin-top: 20px;
  margin-bottom: 8px;
}

.acrt-floor-heading h3,
.acrt-details h3 {
  margin: 0 0 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.acrt-auto-choice {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 11px;
}

.acrt-floor-legend {
  justify-content: flex-end;
  margin: 0 0 10px;
}

.acrt-floor-legend .status-selected::before {
  background: #d5a54e;
  box-shadow: 0 0 0 3px rgba(213, 165, 78, 0.2);
}

.acrt-public-floor {
  min-height: 0;
  overflow: visible;
  border: 2px solid rgba(112, 95, 82, 0.34);
  border-radius: 20px 20px 28px 28px;
  background:
    radial-gradient(circle at 28% 18%, rgba(216, 184, 130, 0.11), transparent 18%),
    radial-gradient(circle at 80% 78%, rgba(154, 120, 69, 0.08), transparent 15%),
    linear-gradient(145deg, #fffdf9, #f4ebdf);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.42), inset 0 0 34px rgba(111, 79, 50, 0.08);
}

.acrt-public-table {
  z-index: 3;
  overflow: hidden;
  border-width: 1.5px;
  border-color: rgba(95, 126, 89, 0.58);
  background: linear-gradient(145deg, #f4faef, #dce9d8);
  box-shadow: 0 5px 10px rgba(75, 53, 34, 0.13), inset 0 1px 0 rgba(255,255,255,.85);
}

.acrt-public-table strong {
  color: #4f3d30;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 600;
}

.acrt-public-table.shape-chair {
  z-index: 1;
  overflow: hidden;
  border: 1.5px solid #a8957d;
  border-radius: 42% 42% 25% 25%;
  background: linear-gradient(180deg, #f7efe4 0 28%, #c2af97 29% 38%, #e6d6c1 39%);
  box-shadow: inset 0 -3px 0 rgba(100, 72, 43, 0.12);
}

.acrt-public-table.shape-chair::before {
  position: absolute;
  top: 3px;
  left: 16%;
  width: 68%;
  height: 36%;
  border: 1.5px solid #a8957d;
  border-bottom: 0;
  border-radius: 10px 10px 2px 2px;
  background: #f7efe4;
  content: "";
}

.acrt-public-table.shape-wall,
.acrt-public-table.shape-door,
.acrt-public-table.shape-pillar {
  z-index: 0;
  box-shadow: none;
}

.acrt-public-table.shape-wall {
  border: 1px solid #8d8279;
  border-radius: 2px;
  background: repeating-linear-gradient(135deg, #b9aea3 0 6px, #d1c8be 6px 12px);
}

.acrt-public-table.shape-pillar {
  overflow: hidden;
  border: 1.5px solid #8d8279;
  border-radius: 4px;
  background: #d8d0c6;
}

.acrt-public-table.shape-pillar::before,
.acrt-public-table.shape-pillar::after {
  position: absolute;
  top: 50%;
  left: -15%;
  width: 130%;
  height: 1.5px;
  background: #8d8279;
  content: "";
  transform: rotate(45deg);
}

.acrt-public-table.shape-pillar::after {
  transform: rotate(-45deg);
}

.acrt-public-table.shape-window {
  z-index: 2;
  border: 3px double #8ca1a1;
  border-radius: 2px;
  background: repeating-linear-gradient(90deg, #eaf4f2 0 28px, #adc0bf 29px 31px);
}

.acrt-public-table.shape-door {
  overflow: visible;
  border: 0;
  border-bottom: 3px solid #8c765d;
  border-radius: 0;
  background: transparent;
}

.acrt-public-table.shape-door::before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 72%;
  height: 100%;
  border: 2px solid rgba(140, 118, 93, 0.72);
  border-width: 2px 2px 0 0;
  border-radius: 0 100% 0 0;
  content: "";
  transform-origin: left bottom;
}

.acrt-public-table.shape-door::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 7px;
  height: 7px;
  border: 2px solid #8c765d;
  border-radius: 50%;
  background: #fffaf2;
  content: "";
}

.acrt-public-table.is-table:hover:not(:disabled) {
  z-index: 6;
}

.acrt-public-table.is-table.is-selected {
  z-index: 7;
  overflow: visible;
  border: 2px solid #b87e28;
  outline: 0;
  background: linear-gradient(145deg, #fff8df, #edcf92);
  box-shadow: 0 0 0 3px rgba(255, 248, 218, 0.94), 0 12px 24px rgba(96, 46, 11, 0.2);
  animation: acrtSelectedGlow 2.2s ease-in-out infinite;
}

.acrt-public-table.is-table.is-selected::before,
.acrt-public-table.is-table.is-selected::after {
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.acrt-public-table.is-table.is-selected::before {
  inset: -7px;
  border: 2px solid rgba(255, 248, 218, 0.9);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.86), 0 0 15px rgba(225, 172, 66, 0.46);
  animation: acrtSelectedEdge 1.8s ease-in-out infinite;
}

.acrt-public-table.is-table.is-selected.shape-round::before {
  inset: -9px;
  padding: 3px;
  border: 0;
  background: conic-gradient(from 0deg, transparent 0 68%, rgba(255,255,255,.12) 72%, #fff 82%, rgba(255,255,255,.2) 91%, transparent 96%);
  box-shadow: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: acrtSelectedOrbit 2.3s linear infinite;
  filter: drop-shadow(0 0 4px rgba(255,255,255,.95));
}

.acrt-public-table.is-table.is-selected::after {
  inset: -14px;
  border: 1px solid rgba(225, 172, 66, 0.62);
  animation: acrtSelectedTable 2.2s ease-out infinite;
}

.acrt-details {
  margin-top: 22px;
  padding-top: 20px;
}

.acrt-section-title p {
  margin: 0 0 12px;
  font-size: 12px;
}

.acrt-booking .acrt-details .reservation-summary {
  margin: 2px 0 18px;
  padding: 14px;
  border: 1px solid rgba(171, 126, 61, 0.22);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(248, 236, 216, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.acrt-booking .acrt-details .reservation-summary h3 {
  margin: 0 0 10px;
  color: var(--acrt-burgundy);
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
}

.acrt-booking .acrt-details .reservation-summary dl {
  display: grid;
  gap: 6px;
  margin: 0;
  border: 0;
  background: transparent;
}

.acrt-booking .acrt-details .reservation-summary dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid rgba(171, 126, 61, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.acrt-booking .acrt-details .reservation-summary dt,
.acrt-booking .acrt-details .reservation-summary dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.25;
}

.acrt-booking .acrt-details .reservation-summary dt {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--acrt-muted);
  font-weight: 700;
}

.acrt-booking .acrt-details .reservation-summary dt .icon {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--acrt-gold);
}

.acrt-booking .acrt-details .reservation-summary dd {
  max-width: 150px;
  color: var(--acrt-burgundy-dark);
  font-weight: 900;
  text-align: right;
}

.acrt-contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.acrt-questionnaire {
  margin: 4px 0;
  padding: 18px;
  border: 1px solid rgba(171, 126, 61, 0.24);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.58);
}

.acrt-questionnaire legend {
  padding: 0 8px;
  color: var(--acrt-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.acrt-questionnaire > p {
  margin: -3px 0 14px;
  color: var(--acrt-muted);
  font-size: 12px;
}

.acrt-questionnaire__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.acrt-question-card {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(171, 126, 61, 0.22);
  border-radius: 9px;
  background: rgba(255,255,255,.55);
}

.acrt-question-card--checkbox {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  cursor: pointer;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.acrt-question-card--checkbox:hover {
  border-color: rgba(190, 143, 58, 0.58);
  background: rgba(255, 250, 241, 0.88);
  transform: translateY(-1px);
}

.acrt-question-card--checkbox:has(input[type="checkbox"]:checked) {
  border-color: rgba(151, 24, 54, 0.48);
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.98), rgba(248, 235, 211, 0.76));
  box-shadow: inset 0 0 0 1px rgba(203, 157, 74, 0.16), 0 10px 24px rgba(83, 15, 29, 0.08);
}

.acrt-question-card strong,
.acrt-question-card small {
  display: block;
}

.acrt-question-card--checkbox > span {
  letter-spacing: 0;
  text-transform: none;
}

.acrt-question-card strong {
  color: var(--acrt-text);
  font-size: 12px;
}

.acrt-question-card small {
  margin-top: 2px;
  color: var(--acrt-muted);
  font-size: 10px;
  font-weight: 500;
}

.acrt-booking .acrt-checkline {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px !important;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

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

.acrt-booking .acrt-checkline:hover {
  border-color: rgba(190, 143, 58, 0.3);
  background: rgba(255, 250, 241, 0.55);
}

.acrt-booking .acrt-checkline:has(input[type="checkbox"]:checked) {
  border-color: rgba(151, 24, 54, 0.3);
  background: linear-gradient(90deg, rgba(122, 9, 36, 0.06), rgba(202, 157, 74, 0.08));
  box-shadow: inset 3px 0 0 rgba(142, 16, 47, 0.75);
}

.acrt-booking .acrt-checkline input[type="checkbox"],
.acrt-booking .acrt-question-card input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  display: grid;
  place-items: center;
  width: 21px !important;
  height: 21px;
  min-height: 21px !important;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(145, 101, 38, 0.68);
  border-radius: 5px;
  background: linear-gradient(145deg, #fffdf8, #f5ead8);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.82), 0 2px 5px rgba(72, 20, 27, 0.1);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.acrt-booking .acrt-checkline input[type="checkbox"]::after,
.acrt-booking .acrt-question-card input[type="checkbox"]::after {
  content: "";
  width: 5px;
  height: 9px;
  margin-top: -2px;
  border: solid #fff5d9;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(0.35);
  transition: opacity 160ms ease, transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1.25);
}

.acrt-booking .acrt-checkline input[type="checkbox"]:hover,
.acrt-booking .acrt-question-card input[type="checkbox"]:hover {
  border-color: #a87827;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.86), 0 0 0 4px rgba(190, 143, 58, 0.12);
}

.acrt-booking .acrt-checkline input[type="checkbox"]:checked,
.acrt-booking .acrt-question-card input[type="checkbox"]:checked {
  border-color: #d5aa57;
  background: linear-gradient(145deg, #9d1738, #570914 72%);
  box-shadow: inset 0 0 0 1px rgba(255, 218, 139, 0.32), 0 0 0 3px rgba(151, 24, 54, 0.1), 0 4px 10px rgba(72, 8, 22, 0.2);
}

.acrt-booking .acrt-checkline input[type="checkbox"]:checked::after,
.acrt-booking .acrt-question-card input[type="checkbox"]:checked::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.acrt-booking .acrt-checkline input[type="checkbox"]:focus-visible,
.acrt-booking .acrt-question-card input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(151, 24, 54, 0.72);
  outline-offset: 3px;
}

.acrt-booking .acrt-checkline > span {
  color: var(--acrt-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.acrt-booking .acrt-submit {
  position: relative;
  width: 100%;
  min-height: 56px;
  overflow: hidden;
  gap: 12px;
  border: 1px solid #d5a654;
  border-radius: 0 !important;
  background:
    linear-gradient(115deg, transparent 0 37%, rgba(255,255,255,.11) 48%, transparent 59%) -160% 0 / 80% 100% no-repeat,
    linear-gradient(100deg, #4d0917, #941235 48%, #5f0a1e);
  box-shadow: 0 10px 24px rgba(75, 7, 16, 0.28), inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(0,0,0,.22);
  letter-spacing: .06em;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: background-position .7s ease, box-shadow .35s ease, letter-spacing .35s ease, transform .35s ease, color .35s ease;
}

.acrt-booking .acrt-submit .acrt-crown-icon {
  width: 27px;
  height: 16px;
  color: #f0c674;
  transition: transform .35s ease, filter .35s ease;
}

.acrt-booking .acrt-submit:hover {
  background-position: 240% 0, 0 0;
  color: #fff8e9;
  box-shadow: 0 13px 32px rgba(75, 7, 16, 0.38), 0 0 0 1px rgba(239, 190, 89, 0.28), 0 0 26px rgba(203, 145, 55, 0.22);
  letter-spacing: .09em;
  transform: translateY(-2px);
}

.acrt-booking .acrt-submit:hover .acrt-crown-icon {
  filter: drop-shadow(0 0 7px rgba(255,226,157,.8));
  transform: translateY(-1px) scale(1.08);
}

.acrt-security-note {
  margin: -10px 0 0;
  color: #8a7668;
  font-size: 10px;
  text-align: center;
}

@keyframes acrtSelectedTable {
  0% { opacity: 0.9; transform: scale(0.94); }
  70%, 100% { opacity: 0; transform: scale(1.18); }
}

@keyframes acrtSelectedOrbit {
  to { transform: rotate(360deg); }
}

@keyframes acrtSelectedEdge {
  0%, 100% {
    opacity: 0.68;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.72), 0 0 12px rgba(225, 172, 66, 0.34);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 11px rgba(255, 255, 255, 1), 0 0 22px rgba(225, 172, 66, 0.62);
  }
}

@keyframes acrtSelectedGlow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 248, 218, 0.92), 0 12px 24px rgba(96, 46, 11, 0.18); }
  50% { box-shadow: 0 0 0 5px rgba(239, 190, 89, 0.42), 0 0 24px rgba(225, 172, 66, 0.52), 0 14px 28px rgba(96, 46, 11, 0.23); }
}

@media (max-width: 720px) {
  .acrt-booking {
    padding: 28px 14px 20px;
    border-radius: 18px;
  }

  .acrt-booking-steps {
    gap: 4px;
  }

  .acrt-booking-step::before,
  .acrt-booking-step::after {
    display: none;
  }

  .acrt-booking-step small {
    display: none;
  }

  .acrt-contact-grid {
    grid-template-columns: 1fr;
  }

  .acrt-questionnaire__grid {
    grid-template-columns: 1fr;
  }

  .acrt-floor-legend {
    justify-content: flex-start;
  }

  .acrt-floor-room {
    overflow: visible;
  }

  .acrt-floor-room::-webkit-scrollbar {
    display: none;
  }

  .acrt-public-floor {
    min-height: 0;
    overflow: visible;
  }

  .acrt-booking-controls {
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .acrt-public-table.is-table.is-selected::before,
  .acrt-public-table.is-table.is-selected::after {
    animation: none;
  }

  .acrt-public-table.is-table.is-selected {
    animation: none;
  }
}
