.gncb-button-wrap {
  width: 100%;
  display: flex;
}

.gncb-align-left {
  justify-content: flex-start;
}

.gncb-align-center {
  justify-content: center;
}

.gncb-align-right {
  justify-content: flex-end;
}

.gncb-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  margin: 22px 0 10px;
  border-radius: 999px;
  background: #d8b35c;
  color: #1d1a10 !important;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  border: 0;
  cursor: pointer;
  transition: 0.25s ease;
}

.gncb-book-btn:hover,
.gncb-book-btn:focus {
  transform: translateY(-2px);
  background: #e2c36f;
  color: #1d1a10 !important;
}

.gncb-error {
  color: #9b1c1c;
  font-weight: 700;
}

body.gncb-booking-page {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #f7f2e7;
  color: #1d1a10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  box-sizing: border-box;
}

.gncb-card {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  text-align: center;
  box-sizing: border-box;
}

.gncb-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a6c21;
  margin-bottom: 10px;
}

.gncb-card h1 {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #1d1a10;
}

.gncb-details {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.gncb-notice {
  background: #fff6dd;
  border: 1px solid #e4c46a;
  border-radius: 18px;
  padding: 16px 18px;
  margin: 0 0 24px;
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
  color: #3b3115;
}

.gncb-notice strong {
  font-weight: 800;
}

.gncb-notice-title {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.gncb-small {
  margin-top: 18px;
  font-size: 13px;
  color: #6f6754;
  line-height: 1.5;
}

.gncb-card-wide {
  max-width: 860px;
}

.gncb-forms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
  text-align: left;
}

.gncb-form-card {
  background: #fbf8ef;
  border: 1px solid rgba(216, 179, 92, 0.55);
  border-radius: 20px;
  padding: 22px;
  box-sizing: border-box;
}

.gncb-form-card h2 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.2;
  color: #1d1a10;
}

.gncb-form-card label {
  display: block;
  margin-bottom: 13px;
  font-size: 13px;
  font-weight: 700;
  color: #3b3115;
}

.gncb-form-card input[type="text"],
.gncb-form-card input[type="email"],
.gncb-form-card input[type="tel"],
.gncb-form-card input[type="password"] {
  display: block;
  width: 100%;
  min-height: 44px;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #d9c995;
  border-radius: 12px;
  background: #fff;
  color: #1d1a10;
  font-size: 15px;
  box-sizing: border-box;
}

.gncb-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500 !important;
  line-height: 1.4;
}

.gncb-checkbox input {
  margin-top: 2px;
}

.gncb-message {
  border-radius: 16px;
  padding: 14px 16px;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
}

.gncb-message-error {
  background: #fff0f0;
  border: 1px solid #d86b6b;
  color: #6f1515;
}

.gncb-message-success {
  background: #eef9ef;
  border: 1px solid #79c987;
  color: #194d23;
}

.gncb-small a {
  color: #8a6c21;
  font-weight: 700;
}

@media (max-width: 760px) {
  .gncb-forms {
    grid-template-columns: 1fr;
  }

  .gncb-card {
    padding: 24px;
  }
}

.gncb-message-warning {
  background: #fff6dd;
  border: 1px solid #e4c46a;
  color: #3b3115;
}

.gncb-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
  text-align: left;
}

.gncb-price-card {
  background: #fbf8ef;
  border: 1px solid rgba(216, 179, 92, 0.55);
  border-radius: 18px;
  padding: 18px;
  box-sizing: border-box;
}

.gncb-price-card h2 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #1d1a10;
}

.gncb-price-card p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #3b3115;
}

.gncb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.gncb-secondary-btn {
  background: #f3e6bd;
}

.gncb-confirm-form {
  margin-top: 8px;
}

@media (max-width: 860px) {
  .gncb-price-grid {
    grid-template-columns: 1fr;
  }
}

.gncb-program-list {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}

.gncb-program-list table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.gncb-program-list th,
.gncb-program-list td {
  border-bottom: 1px solid #eee2c6;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.gncb-program-list th {
  background: #fff6dd;
  color: #3b3115;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gncb-program-list code {
  background: #f4ecd8;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 12px;
  word-break: break-all;
}

.gncb-program-list textarea {
  width: 100%;
  min-width: 320px;
  min-height: 58px;
  border: 1px solid #e4c46a;
  border-radius: 10px;
  padding: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  resize: vertical;
  background: #fffdf7;
  color: #1d1a10;
}

.gncb-message-info {
  background: #eef7fb;
  border: 1px solid #8ac5dd;
  color: #173f4f;
}

.gncb-option-heading {
  margin: 26px 0 8px;
  text-align: left;
  font-size: 22px;
  color: #1d1a10;
}

.gncb-purchase-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.gncb-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 6px 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #fff6dd;
  color: #8a6c21;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gncb-option-price {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: #2e6a57;
}

.gncb-mapped-id {
  margin-top: auto !important;
  font-size: 12px !important;
  color: #6f6754 !important;
}

.gncb-mapped-id code {
  background: #f4ecd8;
  padding: 3px 6px;
  border-radius: 6px;
  word-break: break-all;
}

.gncb-purchase-form .gncb-book-btn {
  width: 100%;
  margin-top: 12px;
}
