/* Kyezen Cookie Consent Banner — consent.css */

#kyz-consent-banner {
  display: none; /* shown via JS when no stored consent */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0f0f0f;
  color: #f1f1f1;
  padding: 20px 24px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #2a2a2a;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  #kyz-consent-banner {
    flex-direction: row;
    align-items: flex-start;
  }
}

#kyz-consent-text {
  flex: 1;
}

#kyz-consent-text p {
  margin: 0 0 6px;
  color: #d1d1d1;
}

#kyz-consent-text a {
  color: #6ee7b7;
  text-decoration: none;
}

#kyz-consent-text a:hover {
  text-decoration: underline;
}

#kyz-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.kyz-consent-btn {
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.kyz-consent-btn:hover {
  opacity: 0.85;
}

#kyz-consent-accept-all {
  background: #10b981;
  color: #fff;
}

#kyz-consent-reject-all {
  background: #2a2a2a;
  color: #d1d1d1;
  border: 1px solid #3a3a3a;
}

#kyz-consent-customize {
  background: transparent;
  color: #9ca3af;
  text-decoration: underline;
  padding: 9px 4px;
  font-size: 12px;
}

/* ── Custom panel ──────────────────────────────────────────────────────────── */

#kyz-consent-custom-panel {
  display: none;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
  width: 100%;
}

.kyz-consent-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.kyz-consent-option input[type='checkbox'] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: #10b981;
  cursor: pointer;
  flex-shrink: 0;
}

.kyz-consent-option input[type='checkbox']:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.kyz-consent-option-label {
  font-size: 13px;
}

.kyz-consent-option-label strong {
  display: block;
  color: #f1f1f1;
  margin-bottom: 2px;
}

.kyz-consent-option-label span {
  color: #9ca3af;
  font-size: 12px;
}

#kyz-consent-save-custom {
  background: #10b981;
  color: #fff;
  margin-top: 4px;
}
