/* Systemtransport quick assistant widget */
.assistant-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #E52C43 0%, #FF6C00 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.assistant-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.assistant-panel {
  position: fixed;
  right: 24px;
  bottom: 98px;
  z-index: 9999;
  width: min(380px, 94vw);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
}

.assistant-panel.is-open {
  display: block;
}

.assistant-header {
  background: #181A1F;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.assistant-title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.assistant-close {
  cursor: pointer;
  font-size: 18px;
}

.assistant-body {
  padding: 14px 16px;
  max-height: 52vh;
  overflow-y: auto;
  background: #F3F3F5;
}

.assistant-msg {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #181A1F;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.assistant-msg.is-user {
  background: #181A1F;
  color: #fff;
  margin-left: auto;
}

.assistant-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.assistant-chip {
  background: #fff;
  border: 1px solid #E5E7EB;
  color: #181A1F;
  border-radius: 9999px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}

.assistant-footer {
  padding: 10px 12px;
  border-top: 1px solid #EEE;
  background: #fff;
  display: flex;
  gap: 8px;
}

.assistant-input {
  flex: 1;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  outline: none;
}

.assistant-send {
  background: #FF6C00;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

.assistant-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
}

.assistant-nudge {
  position: fixed;
  right: 92px;
  bottom: 34px;
  z-index: 9998;
  background: #181A1F;
  color: #fff;
  padding: 8px 12px;
  border-radius: 9999px;
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  display: none;
}

.assistant-nudge.is-visible {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.assistant-nudge-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #FF6C00;
  box-shadow: 0 0 0 4px rgba(255, 108, 0, 0.2);
}

.assistant-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.assistant-brand-badge {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #E52C43 0%, #FF6C00 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* KVK + cookie consent modal */
.consent-lock {
  overflow: hidden;
}

.consent-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.consent-modal {
  width: min(560px, 92vw);
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.consent-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.consent-text {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.6;
}

.consent-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.consent-link {
  font-size: 13px;
  color: #ff6c00;
  text-decoration: none;
  font-weight: 600;
}

.consent-accept {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #E52C43 0%, #FF6C00 100%);
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.consent-reject {
  width: 100%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}
