/* NWTL Booking Widget — toniagara-grade polished styling */

.nwtl-bk-widget {
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(43,15,22,.1);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(43,15,22,.15), 0 4px 12px rgba(43,15,22,.05);
  font-family: Inter, -apple-system, sans-serif;
  color: #211713;
}

/* ── HEADER PRICE BAND ── */
.nwtl-bk-head {
  background: linear-gradient(135deg, #2b0f16 0%, #3a141d 100%);
  color: #ffffff;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nwtl-bk-from {
  display: inline-block;
  color: #d8b56d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nwtl-bk-price {
  font-family: Georgia, serif;
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}
.nwtl-bk-unit {
  color: #ede0cc;
  font-size: 12px;
  font-weight: 500;
}

/* ── FORM BODY ── */
.nwtl-bk-form {
  padding: 18px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── ROW (label above input) ── */
.nwtl-bk-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nwtl-bk-row > span:first-child {
  color: #5f554d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nwtl-bk-row input,
.nwtl-bk-row select,
.nwtl-bk-row textarea {
  border: 1px solid rgba(43,15,22,.15);
  border-radius: 8px;
  background: #fffaf0;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: #211713;
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
  appearance: none;
}
.nwtl-bk-row input:focus,
.nwtl-bk-row select:focus,
.nwtl-bk-row textarea:focus {
  outline: none;
  border-color: #d8b56d;
  box-shadow: 0 0 0 3px rgba(216,181,109,.2);
  background: #ffffff;
}
.nwtl-bk-row select {
  background: #fffaf0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232b0f16' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 14px center/12px no-repeat;
  padding-right: 32px;
}
.nwtl-bk-row textarea {
  resize: vertical;
  min-height: 60px;
}

/* ── COUNT STEPPERS (Adults / Children) ── */
.nwtl-bk-counts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.nwtl-bk-counts label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fffaf0;
  border: 1px solid rgba(43,15,22,.12);
  border-radius: 8px;
  padding: 10px 12px;
}
.nwtl-bk-counts label > span {
  color: #5f554d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nwtl-bk-counts label > div,
.nwtl-bk-counts label {
  display: flex;
  align-items: center;
}
.nwtl-bk-counts label {
  flex-direction: row;
  flex-wrap: wrap;
}
.nwtl-bk-counts label > span:first-child {
  flex: 1 0 100%;
  margin-bottom: 6px;
}
.nwtl-bk-counts button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(43,15,22,.2);
  background: #ffffff;
  color: #2b0f16;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s, transform .1s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nwtl-bk-counts button:hover {
  background: #d8b56d;
  color: #180c10;
  border-color: #d8b56d;
}
.nwtl-bk-counts button:active { transform: scale(0.95); }
.nwtl-bk-counts input {
  flex: 1;
  border: none;
  background: transparent;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #2b0f16;
  width: 40px;
  padding: 0;
  -moz-appearance: textfield;
}
.nwtl-bk-counts input::-webkit-outer-spin-button,
.nwtl-bk-counts input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── ADD-ONS FIELDSET ── */
.nwtl-bk-addons {
  border: 1px solid rgba(43,15,22,.12);
  border-radius: 8px;
  padding: 14px 16px 10px;
  margin: 4px 0 0;
  background: #fffaf0;
}
.nwtl-bk-addons legend {
  color: #5f554d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 0 6px;
  margin-left: -4px;
}
.nwtl-bk-addons label {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13.5px;
  cursor: pointer;
  color: #211713;
  border-bottom: 1px solid rgba(43,15,22,.06);
  line-height: 1.4;
}
.nwtl-bk-addons label:last-child { border-bottom: none; }
.nwtl-bk-addons input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #2b0f16;
  cursor: pointer;
}
.nwtl-bk-addon-price {
  color: #7b2035;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}

/* ── SUMMARY BLOCK ── */
.nwtl-bk-summary {
  background: #f6f1e8;
  border-radius: 8px;
  padding: 14px 16px;
  margin: 6px 0 0;
}
.nwtl-bk-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
  font-size: 13px;
  color: #5f554d;
}
.nwtl-bk-summary-row > span:first-child { color: #5f554d; }
.nwtl-bk-summary-row > span:last-child { color: #211713; font-weight: 700; }
.nwtl-bk-summary-row.nwtl-bk-total {
  border-top: 1px solid rgba(43,15,22,.15);
  padding-top: 10px;
  margin-top: 6px;
}
.nwtl-bk-summary-row.nwtl-bk-total > span:first-child {
  color: #2b0f16;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.nwtl-bk-summary-row.nwtl-bk-total > span:last-child {
  color: #2b0f16;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 22px;
}
.nwtl-bk-summary-row.nwtl-bk-total small {
  color: #5f554d;
  font-weight: 500;
  font-size: 12px;
  font-family: Inter, sans-serif;
}

/* ── SUBMIT BUTTON ── */
.nwtl-bk-submit {
  background: linear-gradient(135deg, #d8b56d 0%, #efcf84 100%);
  color: #180c10;
  border: 0;
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .1s, box-shadow .15s;
  min-height: 52px;
  margin-top: 4px;
  box-shadow: 0 6px 16px rgba(216,181,109,.35);
}
.nwtl-bk-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(216,181,109,.45);
}
.nwtl-bk-submit:active { transform: translateY(0); }
.nwtl-bk-submit:disabled {
  background: #aaa;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── TRUST + FALLBACK ── */
.nwtl-bk-trust {
  text-align: center;
  color: #5f554d;
  font-size: 12px;
  line-height: 1.7;
  margin: 6px 0 0;
}
.nwtl-bk-fallback {
  background: #fffaf0;
  border-top: 1px solid rgba(43,15,22,.08);
  padding: 12px 22px;
  text-align: center;
  font-size: 12px;
  color: #5f554d;
}
.nwtl-bk-fallback a {
  color: #7b2035;
  font-weight: 700;
  text-decoration: none;
}
.nwtl-bk-fallback a:hover { text-decoration: underline; }

/* ── RESULT MESSAGE ── */
.nwtl-bk-result {
  margin: 10px 22px 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.nwtl-bk-result.ok {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
}
.nwtl-bk-result.err {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ffcdd2;
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  .nwtl-bk-counts { grid-template-columns: 1fr; }
  .nwtl-bk-form { padding: 16px 18px 18px; }
  .nwtl-bk-head { padding: 18px 20px; }
}
