/* ============================================================
   Lombok Glamping — Booking System Styles
   ============================================================ */

/* ── Custom properties ────────────────────────────────────────────────────── */
:root {
  --lg-green:      #1a3a2a;
  --lg-green-mid:  #2e7d32;
  --lg-gold:       #c9a84c;
  --lg-gold-light: #f5f0e0;
  --lg-blue:       #1565c0;
  --lg-white:      #ffffff;
  --lg-bg:         #f9f7f4;
  --lg-border:     #e0d9d0;
  --lg-text:       #333333;
  --lg-text-muted: #666666;
  --lg-error:      #d32f2f;
  --lg-success:    #2e7d32;
  --lg-radius:     8px;
  --lg-shadow:     0 2px 8px rgba(0,0,0,.1);
  --lg-transition: 0.2s ease;
}

/* ── Theme reset — prevent WordPress theme from overriding our styles ─────── */
.lg-booking-wrapper h1,
.lg-booking-wrapper h2,
.lg-booking-wrapper h3,
.lg-booking-wrapper h4,
.lg-booking-wrapper h5,
.lg-booking-wrapper h6 {
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: bold !important;
  line-height: 1.3 !important;
}

.lg-booking-wrapper *,
.lg-calendar-wrapper * {
  box-sizing: border-box;
}

.lg-booking-wrapper .lg-btn {
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: bold !important;
  border-radius: 6px !important;
  line-height: 1 !important;
  font-size: 15px !important;
}

.lg-booking-wrapper input,
.lg-booking-wrapper select,
.lg-booking-wrapper textarea {
  font-family: inherit !important;
  font-size: 15px !important;
  line-height: normal !important;
}

.lg-booking-wrapper a {
  color: var(--lg-gold);
}

/* ── Wrapper ──────────────────────────────────────────────────────────────── */
.lg-booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px 64px;
  font-family: 'Georgia', serif;
  color: var(--lg-text);
}

/* ── Progress bar ─────────────────────────────────────────────────────────── */
.lg-progress {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 24px 0;
  border-bottom: 2px solid var(--lg-border);
}

.lg-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  opacity: 0.4;
  transition: opacity var(--lg-transition);
}

.lg-progress-step.active,
.lg-progress-step.completed {
  opacity: 1;
}

.lg-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lg-border);
  color: var(--lg-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  transition: background var(--lg-transition), color var(--lg-transition);
}

.lg-progress-step.active .lg-step-number {
  background: var(--lg-gold);
  color: var(--lg-white);
}

.lg-progress-step.completed .lg-step-number {
  background: var(--lg-green-mid);
  color: var(--lg-white);
}

.lg-progress-step.completed .lg-step-number::after {
  content: '✓';
}

.lg-step-label {
  font-size: 12px;
  text-align: center;
  color: var(--lg-text-muted);
}

.lg-progress-step.active .lg-step-label,
.lg-progress-step.completed .lg-step-label {
  color: var(--lg-text);
  font-weight: bold;
}

.lg-progress-divider {
  flex: 0;
  width: 40px;
  height: 2px;
  background: var(--lg-border);
}

/* ── Step titles ──────────────────────────────────────────────────────────── */
.lg-step-title {
  font-size: 26px;
  color: var(--lg-green);
  margin: 0 0 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--lg-gold);
}

/* ── Location header + discount pill ─────────────────────────────────────── */
.lg-locations-header {
  margin-bottom: 10px;
}
.lg-locations-header .lg-field-label {
  margin-bottom: 4px;
}
.lg-discount-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--lg-text-muted);
}
.lg-discount-pill__pct {
  background: var(--lg-green-mid);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  white-space: nowrap;
}

/* ── Location cards ───────────────────────────────────────────────────────── */
.lg-locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

@media (max-width: 680px) {
  .lg-locations-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .lg-locations-grid { grid-template-columns: 1fr; }
}

.lg-location-card {
  position: relative;
  border: 2px solid var(--lg-border);
  border-radius: var(--lg-radius);
  padding: 14px 14px 12px;
  cursor: pointer;
  transition: border-color var(--lg-transition), box-shadow var(--lg-transition), opacity var(--lg-transition);
  background: var(--lg-white);
  display: block;
}

.lg-location-card:hover:not(.lg-location-card--unavailable) {
  border-color: var(--lg-gold);
  box-shadow: var(--lg-shadow);
}

.lg-location-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lg-location-card--selected {
  border-color: var(--lg-gold);
  background: var(--lg-gold-light);
  box-shadow: var(--lg-shadow);
}

.lg-location-card--unavailable {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: var(--lg-border);
}

.lg-location-card__badge {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.lg-location-card__name {
  font-size: 17px;
  color: var(--lg-green);
  margin: 0 0 6px;
}

.lg-location-card__desc {
  font-size: 12px;
  color: var(--lg-text-muted);
  line-height: 1.45;
  margin: 0 0 10px;
}

.lg-location-card__price {
  font-size: 13px;
  color: var(--lg-gold);
  font-weight: bold;
}

.lg-location-card__status {
  font-size: 11px;
  margin-top: 5px;
  min-height: 14px;
}

.lg-unavailable-text { color: var(--lg-error); }

.lg-location-card__check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lg-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  opacity: 0;
  transition: opacity var(--lg-transition);
}

.lg-location-card--selected .lg-location-card__check {
  opacity: 1;
}

/* ── Stay panel — "When are you visiting?" card ───────────────────────────── */
.lg-stay-panel {
  background: var(--lg-bg);
  border: 2px solid var(--lg-border);
  border-radius: var(--lg-radius);
  padding: 20px 24px 24px;
  margin-bottom: 24px;
}

.lg-stay-panel__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--lg-text-muted);
  font-weight: bold;
  margin: 0 0 20px;
}

/* 3-column grid: check-in | check-out | guests */
.lg-stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}

/* Tablet: dates side by side, guests full width below */
@media (max-width: 620px) {
  .lg-stay-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lg-guest-col {
    grid-column: 1 / -1;
  }
}

/* Mobile: single column */
@media (max-width: 400px) {
  .lg-stay-grid { grid-template-columns: 1fr; }
  .lg-guest-col { grid-column: auto; }
}

/* Make date inputs taller and more clickable inside the panel */
.lg-stay-panel .lg-input[type="date"] {
  height: 48px;
  padding: 0 12px;
  cursor: pointer;
  background: var(--lg-white);
}

/* Guest column — stacked label + stepper */
.lg-guest-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Make stepper fill the full column width */
.lg-guest-col .lg-stepper {
  display: flex;
  width: 100%;
  margin: 0;
}

.lg-guest-col .lg-stepper-display {
  flex: 1;
  min-width: 0;
}

/* ── Date row (kept for any legacy use) ───────────────────────────────────── */
.lg-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width: 520px) {
  .lg-date-row { grid-template-columns: 1fr; }
}

/* ── Form fields ──────────────────────────────────────────────────────────── */
.lg-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .lg-form-grid { grid-template-columns: 1fr; }
}

.lg-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.lg-field-label {
  font-size: 13px;
  font-weight: bold;
  color: var(--lg-text);
}

.lg-field-label.lg-required::after {
  content: ' *';
  color: var(--lg-error);
}

.lg-optional {
  font-weight: normal;
  color: var(--lg-text-muted);
}

.lg-input {
  padding: 10px 14px;
  border: 2px solid var(--lg-border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--lg-text);
  background: var(--lg-white);
  transition: border-color var(--lg-transition);
  width: 100%;
  box-sizing: border-box;
}

.lg-input:focus {
  outline: none;
  border-color: var(--lg-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.lg-textarea {
  resize: vertical;
  min-height: 80px;
}

.lg-field-hint {
  font-size: 12px;
  color: var(--lg-text-muted);
}

.lg-field-hint--error {
  color: var(--lg-error);
}

/* ── Fieldset / radio ─────────────────────────────────────────────────────── */
.lg-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.lg-radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.lg-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
}

.lg-radio-label input[type="radio"] {
  accent-color: var(--lg-gold);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* ── Price preview ────────────────────────────────────────────────────────── */
.lg-price-preview {
  background: var(--lg-gold-light);
  border: 2px solid var(--lg-gold);
  border-radius: var(--lg-radius);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.lg-price-preview__inner {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.lg-price-preview__label {
  font-size: 13px;
  color: var(--lg-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lg-price-preview__amount {
  font-size: 24px;
  font-weight: bold;
  color: var(--lg-green);
}

.lg-price-preview__nights {
  font-size: 14px;
  color: var(--lg-text-muted);
}

.lg-price-preview__breakdown {
  margin-top: 10px;
  border-top: 1px solid var(--lg-gold);
  padding-top: 10px;
}

.lg-breakdown-row {
  font-size: 13px;
  color: var(--lg-text-muted);
  padding: 2px 0;
}

.lg-price-usd {
  color: var(--lg-gold);
}

.lg-price-sep {
  color: var(--lg-text-muted);
  font-weight: normal;
}

.lg-price-idr {
  color: var(--lg-green-mid);
  font-weight: normal;
}

.lg-preview-idr {
  color: var(--lg-green-mid);
  font-weight: normal;
  margin-left: 6px;
}

/* ── Alerts ───────────────────────────────────────────────────────────────── */
.lg-alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.lg-alert--error {
  background: #ffebee;
  border: 1px solid var(--lg-error);
  color: var(--lg-error);
}

.lg-alert--warning {
  background: #fff3e0;
  border: 1px solid #f57c00;
  color: #e65100;
}

/* ── Review card ──────────────────────────────────────────────────────────── */
.lg-review-card {
  background: var(--lg-white);
  border: 1px solid var(--lg-border);
  border-radius: var(--lg-radius);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--lg-shadow);
}

.lg-review-card__title {
  font-size: 16px;
  color: var(--lg-green);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lg-border);
}

.lg-review-card--payment-info {
  background: var(--lg-gold-light);
  border-color: var(--lg-gold);
}

.lg-review-table {
  width: 100%;
  border-collapse: collapse;
}

.lg-review-table th,
.lg-review-table td {
  padding: 8px 0;
  text-align: left;
  border-bottom: 1px solid var(--lg-border);
  font-size: 14px;
}

.lg-review-table th {
  width: 40%;
  color: var(--lg-text-muted);
  font-weight: bold;
  font-size: 13px;
}

.lg-review-table__total th,
.lg-review-table__total td {
  font-size: 16px;
  color: var(--lg-green);
  font-weight: bold;
  border-bottom: none;
  padding-top: 12px;
}

/* ── Terms & checkbox ─────────────────────────────────────────────────────── */
.lg-terms-group {
  margin: 20px 0;
}

.lg-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.lg-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--lg-gold);
  cursor: pointer;
  margin-top: 2px;
}

/* ── Turnstile ────────────────────────────────────────────────────────────── */
.lg-turnstile-wrapper {
  margin: 20px 0;
}

/* ── Step actions ─────────────────────────────────────────────────────────── */
.lg-step-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.lg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background var(--lg-transition), color var(--lg-transition), border-color var(--lg-transition);
}

.lg-btn--primary {
  background: var(--lg-gold);
  color: var(--lg-white);
  border-color: var(--lg-gold);
}

.lg-btn--primary:hover:not(:disabled) {
  background: #b8942e;
  border-color: #b8942e;
}

.lg-btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.lg-btn--secondary {
  background: transparent;
  color: var(--lg-green);
  border-color: var(--lg-green);
}

.lg-btn--secondary:hover {
  background: var(--lg-green);
  color: var(--lg-white);
}

.lg-btn--submit {
  min-width: 180px;
  justify-content: center;
}

/* Spinner */
.lg-spinner-icon {
  width: 20px;
  height: 20px;
  animation: lg-spin 1s linear infinite;
}

@keyframes lg-spin {
  to { transform: rotate(360deg); }
}

/* ── Confirmation ─────────────────────────────────────────────────────────── */
.lg-confirmation {
  text-align: center;
  padding: 40px 20px;
}

.lg-confirmation__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--lg-green-mid);
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.lg-confirmation__title {
  font-size: 32px;
  color: var(--lg-green);
  margin: 0 0 8px;
}

.lg-confirmation__subtitle {
  color: var(--lg-text-muted);
  font-size: 16px;
  margin: 0 0 32px;
}

.lg-ref-box {
  background: var(--lg-gold-light);
  border: 2px solid var(--lg-gold);
  border-radius: var(--lg-radius);
  padding: 20px;
  margin: 0 auto 28px;
  max-width: 340px;
  text-align: center;
}

.lg-ref-box__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lg-text-muted);
  margin-bottom: 6px;
}

.lg-ref-box__code {
  font-size: 28px;
  font-weight: bold;
  color: var(--lg-green);
  letter-spacing: 3px;
}

/* ── Countdown timer ─────────────────────────────────────────────────────── */
.lg-countdown {
  background: #fff8e1;
  border: 2px solid var(--lg-gold);
  border-radius: var(--lg-radius);
  padding: 28px 20px 20px;
  margin: 0 auto 28px;
  max-width: 480px;
  text-align: center;
}

.lg-countdown__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7a6000;
  margin-bottom: 10px;
}

.lg-countdown__timer {
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 4px;
  font-variant-numeric: tabular-nums;
  color: var(--lg-green);
  line-height: 1;
  margin-bottom: 12px;
}

.lg-countdown__timer--urgent {
  color: #c62828;
}

.lg-countdown__timer--expired {
  font-size: 32px;
  color: #c62828;
}

.lg-countdown__deadline {
  font-size: 13px;
  color: #7a6000;
}

/* ── Payment box ─────────────────────────────────────────────────────────── */
.lg-payment-box {
  background: var(--lg-white);
  border: 1px solid var(--lg-border);
  border-radius: var(--lg-radius);
  padding: 24px;
  margin: 0 auto 24px;
  max-width: 480px;
  text-align: left;
}

.lg-payment-box h3 {
  margin: 0 0 16px;
  color: var(--lg-green);
  font-size: 17px;
}

.lg-payment-box__note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--lg-text-muted);
  background: #f5f0eb;
  border-left: 3px solid var(--lg-gold);
  padding: 10px 12px;
  border-radius: 0 4px 4px 0;
}

.lg-confirmation__email-note {
  background: #e8f5e9;
  border: 1px solid var(--lg-green-mid);
  border-radius: 6px;
  padding: 14px 18px;
  max-width: 480px;
  margin: 0 auto 24px;
  font-size: 14px;
  color: #1b5e20;
  text-align: center;
}

.lg-confirmation__email-note p {
  margin: 0;
}

.lg-confirmation__next-steps {
  text-align: left;
  max-width: 480px;
  margin: 0 auto 28px;
  background: var(--lg-white);
  border: 1px solid var(--lg-border);
  border-radius: var(--lg-radius);
  padding: 20px;
}

.lg-confirmation__next-steps h3 {
  color: var(--lg-green);
  margin: 0 0 14px;
}

.lg-confirmation__next-steps ol {
  margin: 0;
  padding-left: 20px;
}

.lg-confirmation__next-steps li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 14px;
}

.lg-confirmation__actions {
  margin-top: 16px;
}

/* ── Calendar ─────────────────────────────────────────────────────────────── */
.lg-calendar-wrapper {
  position: relative;
  font-family: 'Georgia', serif;
}

.lg-calendar-legend {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lg-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--lg-text-muted);
}

.lg-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}

.lg-calendar {
  border-radius: var(--lg-radius);
  overflow: hidden;
  box-shadow: var(--lg-shadow);
  border: 1px solid var(--lg-border);
}

.lg-past-day {
  background: #f5f5f5 !important;
  color: #ccc;
}

.lg-calendar--loading::after {
  content: 'Loading…';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--lg-text-muted);
}

/* ── Admin styles ─────────────────────────────────────────────────────────── */
.lg-admin-wrap {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lg-admin-tabs {
  margin-bottom: 0;
}

.lg-admin-table-wrap {
  margin-top: 0;
  border-top: 1px solid #ddd;
}

.lg-admin-table th,
.lg-admin-table td {
  vertical-align: top;
  font-size: 13px;
}

.lg-row-urgent {
  background: #fff8e1 !important;
}

.lg-cell-urgent {
  color: var(--lg-error);
  font-weight: bold;
}

.lg-overdue {
  background: var(--lg-error);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
}

.lg-admin-empty {
  padding: 40px;
  text-align: center;
  color: var(--lg-text-muted);
  border: 1px solid var(--lg-border);
  border-top: none;
  background: var(--lg-white);
}

/* ── Modal ────────────────────────────────────────────────────────────────── */
.lg-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lg-modal[hidden] { display: none; }

.lg-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.lg-modal__dialog {
  position: relative;
  background: var(--lg-white);
  border-radius: var(--lg-radius);
  padding: 28px;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.lg-modal__title {
  margin: 0 0 16px;
  color: var(--lg-green);
}

.lg-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}

/* ── Stepper (guest count) ────────────────────────────────────────────────── */
.lg-guest-group {
  margin-bottom: 0;
}

.lg-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 2px solid var(--lg-border);
  border-radius: 10px;
  overflow: hidden;
  margin: 6px 0 4px;
}

.lg-stepper-btn {
  width: 48px;
  background: var(--lg-bg);
  border: none;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  color: var(--lg-green);
  font-family: inherit !important;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--lg-transition), color var(--lg-transition);
  flex-shrink: 0;
}

.lg-stepper-btn:hover:not(:disabled) {
  background: var(--lg-gold-light);
  color: var(--lg-green);
}

.lg-stepper-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lg-stepper-display {
  min-width: 110px;
  text-align: center;
  padding: 10px 12px;
  background: var(--lg-white);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-left: 1px solid var(--lg-border);
  border-right: 1px solid var(--lg-border);
}

.lg-stepper-num {
  font-size: 22px;
  font-weight: bold;
  color: var(--lg-green);
  line-height: 1;
}

.lg-stepper-unit {
  font-size: 13px;
  font-weight: normal;
  color: var(--lg-text-muted);
  align-self: flex-end;
  padding-bottom: 1px;
}

/* ── Night-split control ──────────────────────────────────────────────────── */
.lg-night-split {
  background: #edf7ed;
  border: 2px solid var(--lg-green-mid);
  border-radius: var(--lg-radius);
  padding: 20px 24px;
  margin-bottom: 20px;
  width: 100%;
}

.lg-night-split__header {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lg-night-split__title {
  font-size: 15px;
  font-weight: bold;
  color: var(--lg-green);
}

.lg-night-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lg-night-split__grid--2col { grid-template-columns: 1fr 1fr; }
.lg-night-split__grid--3col { grid-template-columns: 1fr 1fr 1fr; }

@media (max-width: 700px) {
  .lg-night-split__grid--3col { grid-template-columns: 1fr 1fr; }
}

.lg-night-split__card {
  background: var(--lg-white);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 8px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.lg-night-split__card--derived {
  background: #f7f7f5;
}

.lg-night-split__loc-name {
  font-size: 14px;
  font-weight: bold;
  color: var(--lg-green);
}

.lg-night-split__stepper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lg-split-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--lg-green-mid) !important;
  background: var(--lg-white);
  color: var(--lg-green-mid);
  font-size: 22px;
  font-weight: bold;
  font-family: inherit !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: background var(--lg-transition), color var(--lg-transition);
  flex-shrink: 0;
}

.lg-split-btn:hover {
  background: var(--lg-green-mid);
  color: var(--lg-white);
}

.lg-split-count {
  text-align: center;
  min-width: 64px;
}

.lg-split-num {
  font-size: 28px;
  font-weight: bold;
  color: var(--lg-green);
  display: block;
  line-height: 1;
}

.lg-split-unit {
  font-size: 12px;
  color: var(--lg-text-muted);
  margin-top: 2px;
  display: block;
}

.lg-split-count--derived .lg-split-num {
  color: var(--lg-text-muted);
}

.lg-night-split__hint {
  font-size: 12px;
  color: var(--lg-text-muted);
  font-style: italic;
}

.lg-night-split__dates {
  font-size: 12px;
  color: var(--lg-text-muted);
  background: #f0f7f0;
  padding: 3px 8px;
  border-radius: 4px;
}

@media (max-width: 520px) {
  .lg-night-split__grid { grid-template-columns: 1fr; }
}

/* ── Mini calendar widget ─────────────────────────────────────────────────── */
.lg-mini-cal {
  font-family: 'Georgia', serif;
  background: var(--lg-white);
  border: 1px solid var(--lg-border);
  border-radius: var(--lg-radius);
  padding: 14px 14px 12px;
  box-shadow: var(--lg-shadow);
  width: 100%;
  box-sizing: border-box;
  color: var(--lg-text);
}

.lg-mini-cal__header {
  margin-bottom: 8px;
}

.lg-mini-cal__title {
  font-size: 10px;
  font-weight: bold;
  color: var(--lg-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lg-mini-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.lg-mini-cal__month-label {
  font-size: 13px;
  font-weight: bold;
  color: var(--lg-green);
  text-align: center;
  flex: 1;
}

.lg-mini-nav-btn {
  width: 26px;
  height: 26px;
  background: none;
  border: 1px solid var(--lg-border);
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  color: var(--lg-text-muted);
  line-height: 1;
  padding: 0;
  font-family: inherit !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--lg-transition), color var(--lg-transition), border-color var(--lg-transition);
}

.lg-mini-nav-btn:hover {
  background: var(--lg-gold-light);
  color: var(--lg-green);
  border-color: var(--lg-gold);
}

/* Day grid */
.lg-mini-cal__days-header,
.lg-mini-cal__days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.lg-mini-day-label {
  font-size: 9px;
  font-weight: bold;
  color: var(--lg-text-muted);
  text-align: center;
  padding: 2px 0 4px;
  text-transform: uppercase;
}

.lg-mini-day {
  font-size: 11px;
  text-align: center;
  padding: 4px 1px;
  border-radius: 4px;
  cursor: default;
  line-height: 1.3;
  color: var(--lg-text);
  transition: background var(--lg-transition);
}

.lg-mini-day--empty {
  visibility: hidden;
}

.lg-mini-day--past {
  color: #ccc;
}

.lg-mini-day--today {
  font-weight: bold;
  outline: 2px solid var(--lg-gold);
  outline-offset: -1px;
}

.lg-mini-day--gili {
  background: #2e7d32;
  color: #fff;
  border-radius: 4px;
}

.lg-mini-day--tetebatu {
  background: #1565c0;
  color: #fff;
  border-radius: 4px;
}

.lg-mini-day--selong {
  background: #00695c;
  color: #fff;
  border-radius: 4px;
}

.lg-mini-day--both {
  background: linear-gradient(135deg, #2e7d32 50%, #1565c0 50%);
  color: #fff;
  border-radius: 4px;
}

.lg-mini-day--gili-selong {
  background: linear-gradient(135deg, #2e7d32 50%, #00695c 50%);
  color: #fff;
  border-radius: 4px;
}

.lg-mini-day--tete-selong {
  background: linear-gradient(135deg, #1565c0 50%, #00695c 50%);
  color: #fff;
  border-radius: 4px;
}

.lg-mini-day--all-three {
  background: linear-gradient(135deg, #2e7d32 33%, #1565c0 33% 66%, #00695c 66%);
  color: #fff;
  border-radius: 4px;
}

/* Loading skeleton */
.lg-mini-cal__loading-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 20px 0;
}

.lg-mini-cal__loading-dots span {
  width: 6px;
  height: 6px;
  background: var(--lg-border);
  border-radius: 50%;
  animation: lg-pulse 1.2s ease-in-out infinite;
}

.lg-mini-cal__loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.lg-mini-cal__loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes lg-pulse {
  0%, 80%, 100% { opacity: 0.3; }
  40%           { opacity: 1; }
}

/* Legend */
.lg-mini-cal__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 10px 0 10px;
  padding-top: 10px;
  border-top: 1px solid var(--lg-border);
}

.lg-mini-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--lg-text-muted);
}

.lg-mini-legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.lg-mini-legend-dot--available {
  background: var(--lg-white);
  border: 1px solid var(--lg-border);
}

/* View full calendar button */
.lg-mini-cal__view-full {
  width: 100%;
  padding: 9px 12px;
  background: var(--lg-green);
  color: var(--lg-white);
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
  font-family: inherit !important;
  cursor: pointer;
  transition: background var(--lg-transition);
  text-align: center;
  letter-spacing: 0.2px;
}

.lg-mini-cal__view-full:hover {
  background: #1a3a2a;
}

/* ── Full-calendar modal ───────────────────────────────────────────────────── */
.lg-cal-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lg-cal-modal[hidden] {
  display: none;
}

.lg-cal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}

.lg-cal-modal__dialog {
  position: relative;
  background: var(--lg-white);
  border-radius: var(--lg-radius);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.lg-cal-modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--lg-border);
  background: var(--lg-bg);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.lg-cal-modal__legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex: 1;
}

.lg-cal-modal__title {
  font-size: 16px;
  color: var(--lg-green);
  margin: 0;
  white-space: nowrap;
  font-weight: bold;
}

.lg-cal-modal__close {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--lg-border);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  font-family: inherit !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lg-text);
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  transition: background var(--lg-transition);
}

.lg-cal-modal__close:hover {
  background: #d0ccc4;
}

.lg-cal-modal__body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.lg-cal-modal__loading {
  text-align: center;
  padding: 48px 20px;
  color: var(--lg-text-muted);
  font-size: 15px;
}

#lg-cal-modal__calendar {
  min-height: 420px;
  display: none;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .lg-progress-step .lg-step-label { display: none; }
  .lg-progress-divider { width: 20px; }
  .lg-confirmation { padding: 24px 0; }
  .lg-ref-box__code { font-size: 22px; }
  .lg-cal-modal { padding: 0; }
  .lg-cal-modal__dialog { max-height: 100vh; border-radius: 0; }
}

/* ============================================================
   Location Widget — [glamping_location_widget]
   ============================================================ */

.lg-loc-widget {
  max-width: 100%;
  width: 100%;
  background: var(--lg-white);
  border: 2px solid var(--lg-border);
  border-radius: var(--lg-radius);
  overflow: hidden;
  box-shadow: var(--lg-shadow);
  font-family: 'Georgia', serif;
  color: var(--lg-text);
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.lg-loc-widget__header {
  padding: 20px 20px 16px;
  border-bottom: 2px solid var(--lg-border);
}

.lg-loc-widget__badge {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lg-loc-widget__tagline {
  font-size: 15px;
  color: var(--lg-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Sections ────────────────────────────────────────────────────────────── */
.lg-loc-widget__section {
  padding: 16px 20px;
  border-bottom: 1px solid var(--lg-border);
}

.lg-loc-widget__section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--lg-text-muted);
  font-weight: bold;
  margin: 0 0 16px;
}

/* ── Pricing tier table ──────────────────────────────────────────────────── */
.lgw-tier-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--lg-border);
}

.lgw-tier-row:last-child {
  border-bottom: none;
}

.lgw-tier-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lgw-tier-name {
  font-size: 15px;
  font-weight: bold;
  color: var(--lg-text);
}

.lgw-tier-dates {
  font-size: 13px;
  color: var(--lg-text-muted);
}

.lgw-tier-price {
  text-align: right;
  white-space: nowrap;
}

.lgw-tier-usd {
  font-size: 18px;
  font-weight: bold;
  color: var(--lg-gold);
}

.lgw-tier-per {
  font-size: 12px;
  color: var(--lg-text-muted);
  margin-left: 2px;
}

.lgw-no-data,
.lgw-loading {
  font-size: 14px;
  color: var(--lg-text-muted);
  margin: 0;
}

/* ── Date row ────────────────────────────────────────────────────────────── */
.lg-loc-widget__date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

@media (max-width: 360px) {
  .lg-loc-widget__date-row { grid-template-columns: 1fr; }
}

.lg-loc-widget .lg-input[type="date"] {
  height: 48px;
  padding: 0 12px;
  cursor: pointer;
  font-size: 15px;
}

.lg-loc-widget .lg-field-label {
  font-size: 14px;
}

.lg-loc-widget .lg-field-hint {
  font-size: 13px;
}

/* ── Guest stepper area ──────────────────────────────────────────────────── */
.lg-loc-widget__guests {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lg-loc-widget__guests .lg-stepper {
  width: 100%;
  margin: 0;
}

.lg-loc-widget__guests .lg-stepper-display {
  flex: 1;
}

/* ── Result box ──────────────────────────────────────────────────────────── */
.lgw-result {
  padding: 14px 20px;
  border-bottom: 1px solid var(--lg-border);
}

.lgw-status {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}

.lgw-status--available {
  color: var(--lg-success);
}

.lgw-status--unavailable {
  color: var(--lg-error);
}

.lgw-estimate {
  background: var(--lg-gold-light);
  border: 1px solid var(--lg-gold);
  border-radius: 6px;
  padding: 12px 14px;
}

.lgw-estimate__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2px;
}

.lgw-estimate__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--lg-text-muted);
}

.lgw-estimate__amount {
  font-size: 28px;
  font-weight: bold;
  color: var(--lg-green);
}

.lgw-estimate__idr {
  font-size: 13px;
  color: var(--lg-text-muted);
  text-align: right;
  margin-bottom: 10px;
}

.lgw-breakdown {
  border-top: 1px solid var(--lg-gold);
  padding-top: 8px;
  margin-top: 4px;
}

.lgw-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--lg-text-muted);
  padding: 3px 0;
}

.lgw-breakdown-note {
  font-size: 12px;
  color: var(--lg-text-muted);
  font-style: italic;
  margin-top: 4px;
}

.lgw-checking {
  font-size: 14px;
  color: var(--lg-text-muted);
  margin: 0;
}

.lgw-error {
  font-size: 14px;
  color: var(--lg-error);
  margin: 0;
}

/* ── CTA button ──────────────────────────────────────────────────────────── */
.lg-loc-widget__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px 20px;
  border-radius: 0;
  font-size: 17px;
  text-decoration: none !important;
  /* Override .lg-booking-wrapper a color inheritance */
  color: #ffffff !important;
}

.lg-loc-widget__cta:hover,
.lg-loc-widget__cta:visited,
.lg-loc-widget__cta:focus,
.lg-loc-widget__cta:active {
  color: #ffffff !important;
  text-decoration: none !important;
}

.lg-loc-widget__cta[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

/* ── Extras & Preferences Step ───────────────────────────────────────────── */
.lg-extras-intro {
  color: var(--lg-text-muted);
  font-size: 15px;
  margin: 0 0 24px;
}

.lg-extras-section {
  margin-bottom: 32px;
}

.lg-extras-section__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--lg-green);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lg-border);
}

.lg-extras-section .lg-field-group {
  margin-bottom: 24px;
}

/* Card per extra item */
.lg-extras-card {
  background: var(--lg-bg-subtle);
  border: 1px solid var(--lg-border);
  border-radius: var(--lg-radius);
  padding: 16px;
  margin-bottom: 10px;
}

/* Toggle row (checkbox + label body) */
.lg-extras-toggle {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.lg-extras-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--lg-green);
  cursor: pointer;
}

.lg-extras-toggle__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lg-extras-toggle__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--lg-text);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lg-extras-toggle__desc {
  font-size: 13px;
  color: var(--lg-text-muted);
  line-height: 1.5;
}

/* Badges */
.lg-extras-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 10px;
  text-transform: uppercase;
}

.lg-extras-badge--free {
  background: #e6f4ea;
  color: #2e7d32;
}

.lg-extras-badge--later {
  background: #fff8e1;
  color: #b45309;
}

/* Sub-panel (revealed when checked) */
.lg-extras-sub {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--lg-border);
}

/* 2-col grid for extras sub-fields */
.lg-form-grid--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 520px) {
  .lg-form-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* Checkbox group (dietary) */
.lg-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.lg-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}

.lg-checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--lg-green);
  cursor: pointer;
}

/* ── Discount breakdown line ─────────────────────────────────────────────── */
.lg-breakdown-discount {
  color: #2e7d32;
  font-size: 0.85rem;
}

/* ── Private Expedition CTA ──────────────────────────────────────────────── */
.lg-expedition-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  margin: 8px 0 16px;
  border: 1px solid rgba(201, 168, 76, 0.55);
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.05);
}
.lg-expedition-cta__text {
  flex: 1;
  font-size: 0.8rem;
  color: var(--lg-text-muted);
  line-height: 1.4;
}
.lg-expedition-cta__btn {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lg-gold);
  text-decoration: none;
  border: 1px solid var(--lg-gold);
  border-radius: 6px;
  padding: 5px 12px;
  transition: background var(--lg-transition), color var(--lg-transition);
}
.lg-expedition-cta__btn:hover {
  background: var(--lg-gold);
  color: #fff;
}

@media (max-width: 560px) {
  .lg-expedition-cta { flex-direction: column; align-items: flex-start; }
  .lg-expedition-cta__btn { width: 100%; text-align: center; }
}

/* ============================================================
   Expedition Inquiry Form — [glamping_expedition]
   ============================================================ */

.lg-expedition-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px 48px;
  font-family: inherit;
  color: var(--lg-text);
}

.lg-exp-form-inner {
  background: var(--lg-white);
  border-radius: var(--lg-radius);
  box-shadow: var(--lg-shadow);
  overflow: hidden;
}

.lg-exp-form-heading {
  background: var(--lg-green);
  padding: 32px 36px;
  text-align: center;
}

.lg-exp-form-heading h2 {
  color: var(--lg-gold) !important;
  margin: 0 0 8px !important;
  font-size: 26px !important;
  letter-spacing: 1px;
}

.lg-exp-form-heading p {
  color: #9dc9a8;
  margin: 0 !important;
  font-size: 15px;
}

#lg-exp-form {
  padding: 28px 32px 32px;
}

.lg-exp-section {
  margin-bottom: 28px;
}

.lg-exp-section-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--lg-text-muted) !important;
  margin: 0 0 14px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lg-border);
}

.lg-exp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lg-exp-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 14px;
}

.lg-exp-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lg-exp-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--lg-text);
}

.lg-exp-field input[type="text"],
.lg-exp-field input[type="email"],
.lg-exp-field input[type="tel"],
.lg-exp-field input[type="date"],
.lg-exp-field select,
.lg-exp-field textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--lg-border);
  border-radius: 5px;
  font-size: 14px;
  color: var(--lg-text);
  background: #fff;
  transition: border-color var(--lg-transition);
  box-sizing: border-box;
}

.lg-exp-field input:focus,
.lg-exp-field select:focus,
.lg-exp-field textarea:focus {
  outline: none;
  border-color: var(--lg-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

.lg-exp-field textarea {
  resize: vertical;
  min-height: 110px;
}

.lg-exp-optional {
  font-weight: 400;
  color: var(--lg-text-muted);
}

/* Flexible dates toggle */
.lg-exp-flex-toggle {
  margin-top: 14px;
}

.lg-exp-toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

.lg-exp-toggle-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--lg-gold);
  cursor: pointer;
}

.lg-exp-date-fields {
  margin-top: 12px;
}

/* Location checkboxes */
.lg-location-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lg-exp-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid var(--lg-border);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color var(--lg-transition), background var(--lg-transition);
}

.lg-exp-check-label:hover {
  border-color: var(--lg-gold);
  background: var(--lg-gold-light);
}

.lg-exp-check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--lg-gold);
  flex-shrink: 0;
}

.lg-exp-check-label:has(input:checked) {
  border-color: var(--lg-gold);
  background: var(--lg-gold-light);
}

.lg-exp-check-box {
  display: none;
}

.lg-exp-check-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lg-exp-check-text strong {
  font-size: 13px;
  color: var(--lg-green);
}

.lg-exp-check-text em {
  font-size: 12px;
  color: var(--lg-text-muted);
  font-style: normal;
}

/* Custom location free-text */
.lg-exp-custom-locations {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lg-exp-custom-loc-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--lg-text);
}

.lg-exp-custom-loc-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--lg-border);
  border-radius: 5px;
  font-size: 14px;
  color: var(--lg-text);
  background: #fff;
  box-sizing: border-box;
  transition: border-color var(--lg-transition);
}

.lg-exp-custom-loc-input:focus {
  outline: none;
  border-color: var(--lg-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

/* Experience type radios */
.lg-exp-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lg-exp-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--lg-border);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: border-color var(--lg-transition), background var(--lg-transition);
}

.lg-exp-radio-label:hover {
  border-color: var(--lg-gold);
  background: var(--lg-gold-light);
}

.lg-exp-radio-label input[type="radio"] {
  accent-color: var(--lg-gold);
}

.lg-exp-radio-label:has(input:checked) {
  border-color: var(--lg-gold);
  background: var(--lg-gold-light);
  font-weight: 600;
}

.lg-exp-radio-box {
  display: none;
}

/* Submit section */
.lg-exp-submit-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.lg-exp-error {
  width: 100%;
  background: #fff3f3;
  color: var(--lg-error);
  border: 1px solid #ffc0c0;
  border-radius: 5px;
  padding: 10px 14px;
  font-size: 14px;
}

.lg-exp-submit-btn {
  background: var(--lg-gold);
  color: var(--lg-white);
  border: none;
  border-radius: 5px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .3px;
  transition: background var(--lg-transition), opacity var(--lg-transition);
}

.lg-exp-submit-btn:hover:not(:disabled) {
  background: #b8943c;
}

.lg-exp-submit-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

/* Success state */
.lg-exp-success {
  padding: 48px 32px;
  text-align: center;
}

.lg-exp-success-icon {
  width: 60px;
  height: 60px;
  background: var(--lg-success);
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  line-height: 60px;
  margin: 0 auto 20px;
}

.lg-exp-success h3 {
  color: var(--lg-green) !important;
  font-size: 22px !important;
  margin: 0 0 12px !important;
}

.lg-exp-success p {
  color: var(--lg-text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 10px !important;
}

.lg-exp-success-ref {
  font-size: 16px !important;
  color: var(--lg-text) !important;
}

.lg-exp-success-ref strong {
  color: var(--lg-green);
  letter-spacing: 1px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 700px) {
  .lg-exp-grid-4 { grid-template-columns: 1fr 1fr; }
  .lg-exp-type-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  #lg-exp-form { padding: 20px 16px 24px; }
  .lg-exp-form-heading { padding: 24px 20px; }
  .lg-exp-grid-2 { grid-template-columns: 1fr; }
  .lg-exp-grid-4 { grid-template-columns: 1fr; }
  .lg-location-check-grid { grid-template-columns: 1fr; }
  .lg-exp-type-grid { grid-template-columns: 1fr; }
  .lg-exp-submit-btn { width: 100%; text-align: center; }
}
