/* kutassy-web · kt-consent.css — a süti-sáv. A projekt tokenjeit használja, ha vannak. */
.kt-consent {
  position: fixed; z-index: 2147483000;
  left: max(16px, env(safe-area-inset-left)); bottom: max(16px, env(safe-area-inset-bottom));
  width: min(440px, calc(100vw - 32px)); max-height: calc(100vh - 32px); overflow-y: auto;
  padding: 24px; box-sizing: border-box;
  background: var(--color-white, #fff); color: var(--color-black, #0a0a0a);
  border: 1px solid var(--color-gray-200, #e5e5e5); border-radius: 12px;
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.18);
  font: 400 15px/1.5 var(--font-sans, Inter, system-ui, sans-serif);
}
.kt-consent-title { margin: 0 0 8px; font-size: 17px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.kt-consent-text { margin: 0 0 16px; color: var(--color-gray-700, #404040); }
.kt-consent-text a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.kt-consent-panel { display: grid; gap: 12px; margin: 0 0 16px; }
.kt-consent-panel[hidden] { display: none; }
.kt-consent-row { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.kt-consent-row input { width: 18px; height: 18px; margin: 2px 0 0; flex-shrink: 0; accent-color: var(--color-black, #0a0a0a); }
.kt-consent-row-text { display: grid; gap: 2px; }
.kt-consent-row-text span { font-size: 13px; color: var(--color-gray-600, #525252); }
.kt-consent-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.kt-consent-btn {
  flex: 1 1 auto; min-height: 44px; padding: 10px 16px; border-radius: 999px; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600; line-height: 1.2;
  background: transparent; color: inherit; border: 1px solid currentColor;
}
.kt-consent-btn--primary { background: var(--color-black, #0a0a0a); color: var(--color-white, #fff); border-color: var(--color-black, #0a0a0a); }
.kt-consent-btn:focus-visible, .kt-consent-row input:focus-visible { outline: 2px solid #2563eb; outline-offset: 2px; }
@media (prefers-reduced-motion: no-preference) {
  .kt-consent { animation: kt-consent-in 240ms cubic-bezier(.2, .8, .2, 1); }
  @keyframes kt-consent-in { from { opacity: 0; transform: translateY(12px); } }
}
