.asdcc-root {
  --asdcc-bg: #fff;
  --asdcc-text: #1f2937;
  --asdcc-primary: #111827;
  --asdcc-border: #d1d5db;
  --asdcc-radius: 14px;
  --asdcc-max-width: 1280px;
  position: relative;
  z-index: 2147483000;
  font-family: inherit;
}
.asdcc-root * { box-sizing: border-box; }
.asdcc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .48);
  z-index: 2147483000;
}
.asdcc-banner,
.asdcc-modal {
  color: var(--asdcc-text);
  z-index: 2147483001;
}
.asdcc-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
}
.asdcc-banner__content {
  width: min(100%, var(--asdcc-max-width));
  margin: 0 auto;
  background: var(--asdcc-bg);
  border: 1px solid var(--asdcc-border);
  border-radius: var(--asdcc-radius);
  box-shadow: 0 18px 60px rgba(15, 23, 42, .18);
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}
.asdcc-root[data-position="bottom-left"] .asdcc-banner,
.asdcc-root[data-position="bottom-right"] .asdcc-banner,
.asdcc-root[data-position="center"] .asdcc-banner {
  left: 16px;
  right: auto;
  width: min(520px, calc(100vw - 32px));
}
.asdcc-root[data-position="bottom-right"] .asdcc-banner { left: auto; right: 16px; }
.asdcc-root[data-position="center"] .asdcc-banner {
  left: 50%;
  right: auto;
  bottom: 50%;
  transform: translate(-50%, 50%);
  width: min(600px, calc(100vw - 32px));
}
.asdcc-root[data-position="bottom-left"] .asdcc-banner__content,
.asdcc-root[data-position="bottom-right"] .asdcc-banner__content,
.asdcc-root[data-position="center"] .asdcc-banner__content,
.asdcc-root[data-layout="card"] .asdcc-banner__content {
  grid-template-columns: 1fr;
}
.asdcc-root[data-layout="card"] .asdcc-banner {
  left: auto;
  right: 16px;
  width: min(520px, calc(100vw - 32px));
}
.asdcc-title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
  color: var(--asdcc-text);
  font-weight: 700;
}
.asdcc-text,
.asdcc-category p {
  margin: 0;
  line-height: 1.55;
  font-size: 14px;
  color: var(--asdcc-text);
}
.asdcc-policy-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--asdcc-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.asdcc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
  align-items: center;
}
.asdcc-btn {
  appearance: none;
  border: 1px solid var(--asdcc-border);
  border-radius: calc(var(--asdcc-radius) * .65);
  background: var(--asdcc-bg);
  color: var(--asdcc-text);
  min-height: 42px;
  padding: 9px 15px;
  font: inherit;
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.asdcc-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(15, 23, 42, .10); }
.asdcc-btn:focus-visible,
.asdcc-close:focus-visible,
.asdcc-floating:focus-visible,
.asdcc-switch input:focus-visible + .asdcc-switch__slider {
  outline: 3px solid color-mix(in srgb, var(--asdcc-primary) 30%, transparent);
  outline-offset: 2px;
}
.asdcc-btn--primary,
.asdcc-btn--save {
  background: var(--asdcc-primary);
  border-color: var(--asdcc-primary);
  color: #fff;
}
.asdcc-btn--secondary { background: var(--asdcc-bg); border-color: var(--asdcc-primary); }
.asdcc-btn--ghost { border-color: transparent; text-decoration: underline; }
.asdcc-modal {
  position: fixed;
  inset: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.asdcc-modal:not([hidden]) { pointer-events: auto; }
.asdcc-modal__card {
  width: min(900px, 100%);
  max-height: min(86vh, 920px);
  overflow: auto;
  background: var(--asdcc-bg);
  border: 1px solid var(--asdcc-border);
  border-radius: var(--asdcc-radius);
  box-shadow: 0 24px 80px rgba(15, 23, 42, .28);
}
.asdcc-modal__header,
.asdcc-modal__footer {
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}
.asdcc-modal__header { border-bottom: 1px solid var(--asdcc-border); }
.asdcc-modal__footer { border-top: 1px solid var(--asdcc-border); align-items: center; }
.asdcc-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--asdcc-border);
  background: var(--asdcc-bg);
  color: var(--asdcc-text);
  border-radius: 999px;
  cursor: pointer;
  font-size: 26px;
  line-height: 32px;
}
.asdcc-category-list { padding: 6px 20px 18px; }
.asdcc-category { padding: 17px 0; border-bottom: 1px solid var(--asdcc-border); }
.asdcc-category:last-child { border-bottom: 0; }
.asdcc-category__top { display: flex; gap: 18px; align-items: flex-start; justify-content: space-between; }
.asdcc-category__copy { min-width: 0; }
.asdcc-category h3 { margin: 0 0 5px; font-size: 16px; color: var(--asdcc-text); }
.asdcc-necessary-note { margin-top: 7px !important; font-size: 12px !important; opacity: .75; }
.asdcc-switch { position: relative; display: inline-flex; width: 48px; height: 26px; flex: 0 0 48px; }
.asdcc-switch input { position: absolute; opacity: 0; pointer-events: none; }
.asdcc-switch__slider {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 999px;
  transition: .18s ease;
  cursor: pointer;
}
.asdcc-switch__slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, .25);
  transition: .18s ease;
}
.asdcc-switch input:checked + .asdcc-switch__slider { background: var(--asdcc-primary); }
.asdcc-switch input:checked + .asdcc-switch__slider::before { transform: translateX(22px); }
.asdcc-switch input:disabled + .asdcc-switch__slider { opacity: .75; cursor: not-allowed; }
.asdcc-cookie-details { margin-top: 12px; }
.asdcc-cookie-details summary { cursor: pointer; font-size: 13px; font-weight: 650; }
.asdcc-cookie-table-wrap { overflow-x: auto; margin-top: 10px; }
.asdcc-cookie-table { width: 100%; border-collapse: collapse; font-size: 12px; min-width: 620px; }
.asdcc-cookie-table th,
.asdcc-cookie-table td { padding: 8px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--asdcc-border); }
.asdcc-cookie-table code { white-space: nowrap; }
.asdcc-floating {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 2147482999;
  border: 1px solid var(--asdcc-border);
  border-radius: 999px;
  background: var(--asdcc-bg);
  color: var(--asdcc-text);
  box-shadow: 0 8px 30px rgba(15, 23, 42, .16);
  min-height: 42px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
}
.asdcc-floating__icon { font-size: 15px; }
.asdcc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.asdcc-lock { overflow: hidden !important; }
@media (max-width: 760px) {
  .asdcc-banner { padding: 10px; }
  .asdcc-banner__content { grid-template-columns: 1fr; padding: 16px; gap: 14px; }
  .asdcc-actions { justify-content: stretch; }
  .asdcc-actions .asdcc-btn { flex: 1 1 100%; }
  .asdcc-modal { padding: 8px; }
  .asdcc-modal__card { max-height: 94vh; }
  .asdcc-modal__header,
  .asdcc-modal__footer { padding: 16px; }
  .asdcc-modal__footer { display: block; }
  .asdcc-modal__links { margin-bottom: 12px; }
  .asdcc-category-list { padding: 4px 16px 12px; }
  .asdcc-floating__label { display: none; }
  .asdcc-floating { width: 44px; height: 44px; padding: 0; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .asdcc-btn,
  .asdcc-switch__slider,
  .asdcc-switch__slider::before { transition: none; }
}
