.dhol-module-notice,
.dhol-module-success {
  padding: 1rem 1.25rem;
  border-radius: 14px;
  margin: 1rem 0 2rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.dhol-module-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.dhol-services-stack {
  display: grid;
  gap: 2rem;
}
.dhol-service-section {
  background: var(--dhol-color-surface);
  border-radius: var(--dhol-global-radius);
  padding: 1.5rem;
  box-shadow: var(--dhol-shadow-soft);
}
.dhol-service-title {
  margin-bottom: 1rem;
}

.vtc-booking {
  padding: 1rem 0 2rem;
}
.vtc-steps {
  display: flex;
  gap: .75rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  flex-wrap: wrap;
}
.vtc-steps li {
  opacity: .45;
  font-weight: 600;
}
.vtc-steps li.is-active {
  opacity: 1;
}
.vtc-screen[hidden] {
  display: none !important;
}
.vtc-title {
  margin: 0 0 .85rem;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
}
.vtc-group,
.vtc-quickbar,
.vtc-summary,
.dhol-booking-form {
  margin-bottom: 1rem;
}
.vtc-input,
.dhol-booking-form input,
.dhol-booking-form textarea,
.dhol-vtc-field input,
.dhol-vtc-field select {
  width: 100%;
  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid #dbe3ec;
  background: #fff;
}
.vtc-input:focus,
.dhol-booking-form input:focus,
.dhol-booking-form textarea:focus,
.dhol-vtc-field input:focus,
.dhol-vtc-field select:focus {
  outline: none;
  border-color: var(--dhol-color-accent);
  box-shadow: 0 0 0 3px rgba(200, 155, 94, .15);
}
.suggestions {
  position: absolute;
  z-index: 30;
  width: 100%;
  background: #fff;
  color: #0f172a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--dhol-shadow-soft);
}
.suggestions ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.suggestions li {
  padding: .85rem 1rem;
  border-top: 1px solid #eef2f7;
  cursor: pointer;
}
.suggestions li:first-child {
  border-top: 0;
}
.suggestions li:hover {
  background: #f8fafc;
}
.vtc-group,
.vtc-when-wrap {
  position: relative;
}
.vtc-chipbtn,
.vtc-btn {
  border-radius: 999px;
}
.vtc-when-popover {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  width: min(420px, 100%);
  padding: .9rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--dhol-shadow-medium);
  z-index: 20;
}
.vtc-when-row,
.dhol-booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.dhol-booking-form-full {
  grid-column: 1 / -1;
}
.vtc-when-actions,
.vtc-actions {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}
.vtc-actions {
  justify-content: flex-end;
}
.vtc-actions.top {
  justify-content: flex-start;
}
.vtc-map {
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background: #f1f5f9;
  margin-bottom: 1rem;
}
.vtc-summary {
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: var(--dhol-shadow-soft);
}
.vtc-stickybar {
  position: sticky;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--dhol-shadow-medium);
}
.vtc-fare {
  display: flex;
  flex-direction: column;
}
.vtc-fare-title {
  color: var(--dhol-color-text-muted);
}
.vtc-fare-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dhol-color-accent);
}

.dhol-vtc-admin-header,
.dhol-vtc-admin-tools,
.dhol-vtc-admin-group {
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--dhol-shadow-soft);
  margin-bottom: 1.5rem;
}
.dhol-vtc-admin-inline {
  display: flex;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}
.dhol-vtc-admin-inline input {
  max-width: 220px;
}
.dhol-vtc-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.dhol-vtc-field {
  display: grid;
  gap: .5rem;
  align-content: start;
}
.dhol-vtc-field-value {
  font-size: .95rem;
  color: var(--dhol-color-text-muted);
}
.dhol-vtc-insee-results {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

@media (max-width: 782px) {
  .vtc-when-row,
  .dhol-booking-form-grid {
    grid-template-columns: 1fr;
  }
  .vtc-stickybar,
  .dhol-vtc-admin-inline {
    flex-direction: column;
    align-items: stretch;
  }
}
