/* booking-widget.css */
#booking-widget-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  font-family: 'Jost', sans-serif;
}

.widget-form-head {
  text-align: center;
  margin-bottom: 20px;
}

.widget-form-head h2 {
  font-family: 'EB Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 5px;
}

.widget-form-head p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 10px;
}

.widget-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #dc2626;
  font-weight: 500;
}

.widget-udot {
  width: 8px;
  height: 8px;
  background: #dc2626;
  border-radius: 50%;
  animation: widget-pulse 2s infinite;
}

@keyframes widget-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.widget-form-inner {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.widget-sdots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.widget-sd {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
}

.widget-sd.active {
  background: var(--green);
  color: white;
  box-shadow: 0 0 0 4px rgba(24, 62, 54, 0.1);
}

.widget-sd.done {
  background: var(--gold);
  color: white;
}

.widget-sl {
  height: 2px;
  width: 40px;
  background: #f1f5f9;
  margin: 0 8px;
  transition: all 0.3s;
}

.widget-sl.done {
  background: var(--gold);
}

.widget-fg {
  margin-bottom: 16px;
  text-align: left;
}

.widget-fg label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
}

.widget-fg input, .widget-fg select, .widget-fg textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--black);
  transition: all 0.2s;
  background: #f8fafc;
}

.widget-fg input:focus, .widget-fg select:focus, .widget-fg textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(232, 192, 106, 0.1);
}

.widget-fg select:disabled {
  background: #f1f5f9;
  color: #64748b;
  cursor: not-allowed;
}

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

.widget-frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.widget-btn-next {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

.widget-btn-next:hover {
  background: #12302a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 62, 54, 0.2);
}

.widget-back-ln {
  text-align: center;
  margin-top: 12px;
}

.widget-back-ln button {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
}

.widget-back-ln button:hover {
  color: var(--black);
  text-decoration: underline;
}

.widget-trust-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.widget-tbadge {
  font-size: 0.7rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

.widget-summary {
  background: #f8fafc;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.6;
}

.widget-success-state {
  display: none;
  text-align: center;
}

.widget-success-state.active {
  display: block;
}

.widget-s-tick {
  width: 60px;
  height: 60px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.widget-s-tick svg {
  width: 30px;
  height: 30px;
  stroke: #059669;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.widget-walk-in-notice {
  text-align: center;
  margin-top: 20px;
  padding: 12px;
  background: #f0fdf4;
  border: 1px dashed #4ade80;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #166534;
}

@media (max-width: 992px) {
  #booking-widget-container {
    max-width: 100%;
  }
}
