#cio-reservation-app.cio-reservation {
  width: min(720px, calc(100% - 40px));
  margin: 80px auto 96px !important;
  padding: 0 !important;
  color: #222;
  font-family: inherit;
}

#cio-reservation-app h1 {
  font-size: 28px;
  line-height: 1.4;
  margin: 0 0 32px !important;
  text-align: center;
  font-weight: 700;
}

#cio-reservation-app .cio-section,
#cio-reservation-app .cio-notice,
#cio-reservation-app #cio-confirm,
#cio-reservation-app #cio-complete {
  width: 100%;
  box-sizing: border-box;
}

#cio-reservation-app .cio-notice {
  padding: 20px 24px;
  background: #f5f5f5;
  border-radius: 8px;
  line-height: 1.8;
}

#cio-reservation-app .cio-section {
  margin-bottom: 32px;
}

#cio-reservation-app .cio-section h2 {
  font-size: 20px;
  margin: 0 0 16px;
}

#cio-reservation-app .cio-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

#cio-reservation-app button {
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #bbb;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  appearance: none;
}

#cio-reservation-app .cio-buttons button.selected {
  border-color: #7b2ff7;
  background: #f4edff;
  font-weight: 700;
}

#cio-reservation-app .cio-buttons button:disabled {
  background: #eee;
  color: #999;
  cursor: not-allowed;
}

#cio-reservation-app label {
  display: block;
  margin-bottom: 14px;
  font-weight: 700;
}

#cio-reservation-app input,
#cio-reservation-app textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 12px;
  font-size: 15px;
  margin-top: 6px;
  border: 1px solid #bbb;
  border-radius: 6px;
  background: #fff;
}

#cio-reservation-app .cio-error {
  color: #b00020;
  margin: 12px 0;
  white-space: pre-line;
}

#cio-reservation-app .cio-primary {
  background: #7b2ff7;
  color: #fff;
  border-color: #7b2ff7;
  width: 100%;
  max-width: 320px;
}

#cio-reservation-app .cio-primary:disabled {
  background: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
}

#cio-reservation-app .cio-time-main {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

#cio-reservation-app .cio-time-sub {
  display: block;
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.4;
}

.cio-loading {
  text-align: center;
  padding: 60px 20px;
}

.cio-spinner {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;

  border: 5px solid #ececec;
  border-top-color: #7c3aed;

  border-radius: 50%;

  animation: cio-spinner-rotate 0.8s linear infinite;
}

@keyframes cio-spinner-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cio-loading-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.cio-loading-sub {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

#cio-reservation-app .cio-step-indicator {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4edff;
  color: #7c3aed;
  font-size: 13px;
  font-weight: 700;
}

#cio-reservation-app .cio-submit-error-box {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #fff4f4;
  color: #b00020;
  line-height: 1.7;
  font-weight: 700;
}

#cio-reservation-app .cio-form-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

#cio-reservation-app .cio-form-actions .cio-primary {
  width: min(100%, 420px);
}

#cio-reservation-app .cio-submit-error-sub {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
}

#cio-reservation-app .cio-confirm-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

#cio-reservation-app .cio-confirm-actions .cio-secondary {
  width: 160px;
}

#cio-reservation-app .cio-confirm-actions .cio-primary {
  width: 420px;
  max-width: 100%;
}

@media (max-width: 640px) {
  #cio-reservation-app .cio-confirm-actions {
    flex-direction: column-reverse;
  }

  #cio-reservation-app .cio-confirm-actions .cio-secondary,
  #cio-reservation-app .cio-confirm-actions .cio-primary {
    width: 100%;
  }
}

#cio-reservation-app .cio-complete-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

#cio-reservation-app .cio-complete-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: min(100%, 420px);
  min-height: 52px;
}

#cio-reservation-app .cio-notice {
  background: #faf7ff;
  border: 1px solid #efe5ff;
  border-radius: 16px;
}

#cio-reservation-app .cio-step-indicator {
  background: #efe5ff;
  color: #7c3aed;
}

#cio-reservation-app .cio-submit-error-box {
  background: #fff4f8;
  border: 1px solid #ffd6e5;
}

#cio-reservation-app .cio-complete-icon {
  width: 64px;
  height: 64px;
  margin: 0 0 24px;
  border-radius: 50%;
  background: #7c3aed;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 700;
}

#cio-reservation-app .cio-complete-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px;
  text-align: center;
}

#cio-reservation-app .cio-complete-icon {
  margin: 0 auto 24px;
}

#cio-reservation-app .cio-complete-card h2 {
  margin: 0 0 24px;
}

#cio-reservation-app .cio-complete-actions {
  margin-top: 32px;
}

#cio-reservation-app .cio-button-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 3px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cio-spinner-rotate 0.8s linear infinite;
  vertical-align: middle;
}

#cio-reservation-app .cio-primary:disabled {
  opacity: 0.8;
}

@media (max-width: 640px) {
  #cio-reservation-app #cio-confirm .cio-notice {
    padding: 28px 24px;
    font-size: 18px;
    line-height: 1.8;
  }

  #cio-reservation-app #cio-confirm .cio-notice strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: 700;
  }

  #cio-reservation-app #cio-confirm h2 {
    font-size: 26px;
    line-height: 1.4;
  }

  #cio-reservation-app #cio-confirm .cio-confirm-actions {
    margin-top: 24px;
  }

  #cio-reservation-app #cio-confirm .cio-secondary,
  #cio-reservation-app #cio-confirm .cio-primary {
    min-height: 56px;
    font-size: 18px;
  }
}

#cio-reservation-app #cio-confirm .cio-notice {
  font-size: 20px;
  line-height: 1.9;
}

#cio-reservation-app #cio-confirm .cio-notice strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 700;
}

#cio-reservation-app #cio-confirm h2 {
  font-size: 34px;
  line-height: 1.4;
}

#cio-reservation-app #cio-confirm .cio-confirm-actions button {
  font-size: 20px;
  min-height: 64px;
}

@media (max-width: 640px) {
  #cio-reservation-app #cio-confirm .cio-notice {
    font-size: 19px;
    line-height: 1.9;
  }

  #cio-reservation-app #cio-confirm .cio-notice strong {
    font-size: 18px;
  }

  #cio-reservation-app #cio-confirm h2 {
    font-size: 28px;
  }
}

#cio-reservation-app .cio-closed-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

#cio-reservation-app .cio-closed-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: min(100%, 420px);
  min-height: 56px;
}

#cio-reservation-app h1 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (max-width: 768px) {
  #cio-reservation-app h1 {
    font-size: 30px;
    line-height: 1.4;
    padding: 0 16px;
  }
}

#cio-reservation-app .cio-reservation-lead {
  margin: 0 auto 40px;
  padding: 28px 32px;
  background: #faf7ff;
  border: 1px solid #efe5ff;
  border-radius: 16px;
  font-size: 18px;
  line-height: 1.8;
}

#cio-reservation-app .cio-reservation-lead p {
  margin: 0 0 10px;
}

#cio-reservation-app .cio-reservation-lead p:last-child {
  margin-bottom: 0;
}

#cio-reservation-app .cio-faq-item {
  padding: 22px 0;
  border-top: 1px solid #e5d8ff;
}

#cio-reservation-app .cio-faq-item:last-child {
  border-bottom: 1px solid #e5d8ff;
}

#cio-reservation-app .cio-faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  list-style: none;
}

#cio-reservation-app .cio-faq-question::-webkit-details-marker {
  display: none;
}

#cio-reservation-app .cio-faq-question::after {
  content: "+";
  margin-left: auto;
  color: #7c3aed;
  font-size: 28px;
  line-height: 1;
}

#cio-reservation-app .cio-faq-item[open] .cio-faq-question::after {
  content: "−";
}

#cio-reservation-app .cio-faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  margin-left: 48px;
  padding: 18px 22px;
  background: #faf7ff;
  border: 1px solid #efe5ff;
  border-radius: 14px;
  font-size: 18px;
  line-height: 1.8;
}

#cio-reservation-app .cio-faq-answer p {
  margin: 0;
}

#cio-reservation-app .cio-faq-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

#cio-reservation-app .cio-faq-badge-q {
  background: #7c3aed;
  color: #fff;
}

#cio-reservation-app .cio-faq-badge-a {
  background: #555;
  color: #fff;
}

@media (max-width: 640px) {
  #cio-reservation-app .cio-faq-question {
    font-size: 18px;
  }

  #cio-reservation-app .cio-faq-answer {
    margin-left: 24px;
    padding: 16px;
    font-size: 16px;
  }

  #cio-reservation-app .cio-faq-badge {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

#cio-reservation-app .cio-form-field {
  margin-top: 16px;
}

#cio-reservation-app .cio-form-field label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

#cio-reservation-app .cio-select {
  display: block;
  width: 100%;
  max-width: 420px;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

#cio-reservation-app #cio-complete .cio-notice {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 72px;
  padding: 56px 48px;
}

#cio-reservation-app #cio-complete .cio-complete-icon {
  margin-left: auto;
  margin-right: auto;
}

#cio-reservation-app #cio-complete h2 {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 36px;
}

#cio-reservation-app #cio-complete p {
  text-align: center;
}

#cio-reservation-app .cio-reservation-faq {
  margin-top: 80px;
}

@media (max-width: 640px) {
  #cio-reservation-app #cio-complete .cio-notice {
    padding: 40px 24px;
    margin-bottom: 56px;
  }

  #cio-reservation-app .cio-reservation-faq {
    margin-top: 64px;
  }
}

#cio-reservation-app .cio-form-guide {
  margin: 0 0 24px;
  padding: 18px 22px;
  background: #faf7ff;
  border: 1px solid #efe5ff;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.8;
}

#cio-reservation-app .cio-form-guide p {
  margin: 0 0 10px;
  font-weight: 700;
}

#cio-reservation-app .cio-form-guide ul {
  margin: 0;
  padding-left: 1.4em;
}

#cio-reservation-app .cio-form-guide li {
  margin: 4px 0;
}

@media (max-width: 640px) {
  #cio-reservation-app .cio-form-guide {
    padding: 16px;
    font-size: 14px;
  }
}

#cio-reservation-app .cio-reservation-header {
  margin-bottom: 40px;
}

#cio-reservation-app .cio-reservation-title {
  text-align: center;
  line-height: 1.35;
  margin-bottom: 32px;
}

#cio-reservation-app .cio-reservation-title-main,
#cio-reservation-app .cio-reservation-title-sub {
  display: block;
}

#cio-reservation-app .cio-reservation-notes {
  margin-top: 24px;
}

#cio-reservation-app .cio-reservation-notes-title {
  font-weight: 700;
  margin-bottom: 8px;
}

#cio-reservation-app .cio-reservation-notes ul {
  margin: 0;
  padding-left: 1.3em;
}

#cio-reservation-app .cio-reservation-notes li {
  margin: 4px 0;
}

#cio-reservation-app .cio-header-toggle {
  display: block;
  margin: 0 auto 18px;
  padding: 10px 18px;
  border: 1px solid #e5d8ff;
  border-radius: 999px;
  background: #faf7ff;
  color: #7c3aed;
  font-weight: 700;
  cursor: pointer;
}

#cio-reservation-app
  .cio-reservation-header.is-collapsed
  .cio-reservation-lead {
  display: none;
}

#cio-reservation-app .cio-reservation-header.is-collapsed {
  margin-bottom: 24px;
}

#cio-reservation-app .cio-faq-contact {
  margin-top: 32px;
  padding: 24px;
  background: #faf7ff;
  border: 1px solid #efe5ff;
  border-radius: 14px;
  text-align: center;
}

#cio-reservation-app .cio-faq-contact p {
  margin: 0 0 16px;
  line-height: 1.8;
}

#cio-reservation-app .cio-faq-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #7c3aed;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
