:root {
  --ap-primary: #01696f;
  --ap-primary-dark: #014d52;
  --ap-primary-light: #0a9199;
  --ap-ink: #1f2937;
  --ap-accent: #f59e0b;
  --ap-success: #10b981;
  --ap-bg: #ffffff;
  --ap-surface: #ffffff;
  --ap-muted: #64748b;
  --ap-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --ap-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --ap-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --ap-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --ap-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
  box-sizing: border-box;
}

body {
  font-variant-numeric: normal;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

td,
.tabular-nums {
  font-variant-numeric: tabular-nums;
}

.ap-public-section {
  margin: 0;
  padding: 0;
}

.ap-prose {
  max-width: 68ch;
}

.ap-richtext > :first-child {
  margin-top: 0;
}

.ap-richtext > :last-child {
  margin-bottom: 0;
}

.ap-richtext p,
.ap-richtext ul,
.ap-richtext ol,
.ap-richtext blockquote {
  margin: 0 0 1rem;
}

.ap-richtext ul,
.ap-richtext ol {
  padding-left: 1.25rem;
}

.ap-richtext a {
  color: var(--ap-primary);
  text-decoration: underline;
}

.ap-richtext blockquote {
  border-left: 3px solid rgba(1, 105, 111, 0.2);
  padding-left: 1rem;
}

/* Premium animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Premium button styles */
.ap-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--ap-shadow-md);
}

.ap-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.ap-btn:hover::before {
  transform: translateX(100%);
}

.ap-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--ap-shadow-xl);
}

.ap-btn:active {
  transform: translateY(0);
  box-shadow: var(--ap-shadow-md);
}

.ap-btn-primary {
  background: linear-gradient(135deg, var(--ap-primary) 0%, var(--ap-primary-dark) 100%);
  color: white;
}

.ap-btn-primary:hover {
  background: linear-gradient(135deg, var(--ap-primary-light) 0%, var(--ap-primary) 100%);
}

/* Premium form inputs */
.ap-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--ap-surface);
}

.ap-input:focus {
  outline: none;
  border-color: var(--ap-primary);
  box-shadow: 0 0 0 3px rgba(1, 105, 111, 0.1);
  transform: translateY(-1px);
}

.ap-input::placeholder {
  color: var(--ap-muted);
}

/* Premium card styles */
.ap-card {
  background: var(--ap-surface);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--ap-shadow-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ap-shadow-xl);
}

/* Premium gradient backgrounds */
.ap-gradient-primary {
  background: linear-gradient(135deg, #01696f 0%, #0a9199 100%);
}

.ap-gradient-warm {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.ap-gradient-cool {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.ap-gradient-subtle {
  background: linear-gradient(135deg, color-mix(in srgb, var(--ap-surface) 88%, white) 0%, color-mix(in srgb, var(--ap-primary) 10%, var(--ap-surface)) 100%);
}

/* Premium text effects */
.ap-text-gradient {
  background: linear-gradient(135deg, var(--ap-primary) 0%, var(--ap-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ap-text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Premium loading states */
.ap-skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  border-radius: 8px;
}

/* Premium badges */
.ap-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--ap-primary);
  color: white;
  box-shadow: var(--ap-shadow-sm);
}

.ap-badge-success {
  background: var(--ap-success);
}

.ap-badge-warning {
  background: var(--ap-accent);
}

/* Premium tooltips */
.ap-tooltip {
  position: relative;
}

.ap-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--ap-shadow-lg);
}

.ap-tooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Premium focus states */
.ap-focus-ring:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(1, 105, 111, 0.2);
  border-radius: 8px;
}

/* Premium transitions */
.ap-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium glass morphism */
.ap-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Premium dividers */
.ap-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 2rem 0;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .ap-card {
    padding: 1.5rem;
  }
}

/* Print styles */
@media print {
  .ap-btn,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ============================================================
   Cookie Consent System Styles
   ============================================================
   A premium, accessible, dark/light-mode compatible consent UI.
   Version: 1.0.0
   ============================================================ */

/* --- CSS Custom Properties (Theme) --- */
:root {
  /* Light mode (default) */
  --ap-consent-bg: #ffffff;
  --ap-consent-text: #1a1a2e;
  --ap-consent-text-secondary: #555;
  --ap-consent-border: #e2e8f0;
  --ap-consent-primary: #2563eb;
  --ap-consent-primary-hover: #1d4ed8;
  --ap-consent-primary-text: #ffffff;
  --ap-consent-secondary: #f1f5f9;
  --ap-consent-secondary-hover: #e2e8f0;
  --ap-consent-secondary-text: #1a1a2e;
  --ap-consent-link: #2563eb;
  --ap-consent-link-hover: #1d4ed8;
  --ap-consent-overlay: rgba(0, 0, 0, 0.5);
  --ap-consent-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  --ap-consent-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --ap-consent-radius: 12px;
  --ap-consent-radius-sm: 8px;
  --ap-consent-switch-bg: #cbd5e1;
  --ap-consent-switch-active: #2563eb;
  --ap-consent-switch-handle: #ffffff;
  --ap-consent-badge-bg: #f1f5f9;
  --ap-consent-badge-text: #64748b;
  --ap-consent-reopen-bg: #ffffff;
  --ap-consent-reopen-text: #1a1a2e;
  --ap-consent-reopen-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  --ap-consent-reopen-hover: #f8fafc;
  --ap-consent-focus-ring: 0 0 0 3px rgba(37, 99, 235, 0.3);
  --ap-consent-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --ap-consent-bg: #1e293b;
    --ap-consent-text: #f1f5f9;
    --ap-consent-text-secondary: #94a3b8;
    --ap-consent-border: #334155;
    --ap-consent-primary: #3b82f6;
    --ap-consent-primary-hover: #60a5fa;
    --ap-consent-primary-text: #ffffff;
    --ap-consent-secondary: #334155;
    --ap-consent-secondary-hover: #475569;
    --ap-consent-secondary-text: #f1f5f9;
    --ap-consent-link: #60a5fa;
    --ap-consent-link-hover: #93c5fd;
    --ap-consent-overlay: rgba(0, 0, 0, 0.7);
    --ap-consent-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    --ap-consent-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --ap-consent-switch-bg: #475569;
    --ap-consent-switch-active: #3b82f6;
    --ap-consent-switch-handle: #ffffff;
    --ap-consent-badge-bg: #334155;
    --ap-consent-badge-text: #94a3b8;
    --ap-consent-reopen-bg: #1e293b;
    --ap-consent-reopen-text: #f1f5f9;
    --ap-consent-reopen-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    --ap-consent-reopen-hover: #334155;
  }
}

/* --- Banner --- */
.ap-consent-banner {
  position: fixed;
  z-index: 2147483645;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ap-consent-bg);
  color: var(--ap-consent-text);
  box-shadow: var(--ap-consent-shadow);
  border-top: 1px solid var(--ap-consent-border);
  padding: 0;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--ap-consent-transition),
              opacity var(--ap-consent-transition),
              visibility var(--ap-consent-transition);
}

.ap-consent-banner--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Banner positions */
.ap-consent-banner--top {
  top: 0;
  bottom: auto;
  border-top: none;
  border-bottom: 1px solid var(--ap-consent-border);
  transform: translateY(-100%);
}

.ap-consent-banner--top.ap-consent-banner--visible {
  transform: translateY(0);
}

.ap-consent-banner--bottom-left,
.ap-consent-banner--bottom-right {
  left: 20px;
  right: auto;
  bottom: 20px;
  max-width: 420px;
  border: 1px solid var(--ap-consent-border);
  border-radius: var(--ap-consent-radius);
  transform: translateY(calc(100% + 20px));
}

.ap-consent-banner--bottom-right {
  left: auto;
  right: 20px;
}

.ap-consent-banner--bottom-left.ap-consent-banner--visible,
.ap-consent-banner--bottom-right.ap-consent-banner--visible {
  transform: translateY(0);
}

.ap-consent-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.ap-consent-banner--bottom-left .ap-consent-banner__inner,
.ap-consent-banner--bottom-right .ap-consent-banner__inner {
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.ap-consent-banner__content {
  flex: 1;
  min-width: 0;
}

.ap-consent-banner__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ap-consent-text);
}

.ap-consent-banner__description {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ap-consent-text-secondary);
}

.ap-consent-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ap-consent-banner--bottom-left .ap-consent-banner__actions,
.ap-consent-banner--bottom-right .ap-consent-banner__actions {
  width: 100%;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.ap-consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: var(--ap-consent-radius-sm);
  cursor: pointer;
  transition: all var(--ap-consent-transition);
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
}

.ap-consent-btn:focus-visible {
  outline: none;
  box-shadow: var(--ap-consent-focus-ring);
}

.ap-consent-btn--primary {
  background: var(--ap-consent-primary);
  color: var(--ap-consent-primary-text);
  border-color: var(--ap-consent-primary);
}

.ap-consent-btn--primary:hover {
  background: var(--ap-consent-primary-hover);
  border-color: var(--ap-consent-primary-hover);
}

.ap-consent-btn--secondary {
  background: var(--ap-consent-secondary);
  color: var(--ap-consent-secondary-text);
  border-color: var(--ap-consent-border);
}

.ap-consent-btn--secondary:hover {
  background: var(--ap-consent-secondary-hover);
}

.ap-consent-btn--link {
  background: transparent;
  color: var(--ap-consent-link);
  border-color: transparent;
  padding: 10px 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ap-consent-btn--link:hover {
  color: var(--ap-consent-link-hover);
  background: transparent;
}

/* --- Overlay --- */
.ap-consent-overlay {
  position: fixed;
  z-index: 2147483646;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ap-consent-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ap-consent-transition),
              visibility var(--ap-consent-transition);
}

.ap-consent-overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* --- Modal --- */
.ap-consent-modal {
  position: fixed;
  z-index: 2147483647;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 560px;
  max-height: 85vh;
  background: var(--ap-consent-bg);
  color: var(--ap-consent-text);
  border-radius: var(--ap-consent-radius);
  box-shadow: var(--ap-consent-shadow);
  border: 1px solid var(--ap-consent-border);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--ap-consent-transition),
              opacity var(--ap-consent-transition),
              visibility var(--ap-consent-transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ap-consent-modal--visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.ap-consent-modal:focus {
  outline: none;
}

.ap-consent-modal__inner {
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  overflow: hidden;
}

.ap-consent-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
  flex-shrink: 0;
}

.ap-consent-modal__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ap-consent-text);
}

.ap-consent-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--ap-consent-text-secondary);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--ap-consent-transition);
  flex-shrink: 0;
}

.ap-consent-modal__close:hover {
  background: var(--ap-consent-secondary);
  color: var(--ap-consent-text);
}

.ap-consent-modal__close:focus-visible {
  outline: none;
  box-shadow: var(--ap-consent-focus-ring);
}

.ap-consent-modal__description {
  padding: 12px 24px 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ap-consent-text-secondary);
  flex-shrink: 0;
}

.ap-consent-modal__categories {
  padding: 16px 24px;
  overflow-y: auto;
  flex: 1;
}

.ap-consent-modal__category {
  padding: 16px 0;
  border-bottom: 1px solid var(--ap-consent-border);
}

.ap-consent-modal__category:last-child {
  border-bottom: none;
}

.ap-consent-modal__category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.ap-consent-modal__toggle-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex: 1;
  min-width: 0;
}

.ap-consent-modal__category-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ap-consent-text);
}

.ap-consent-modal__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ap-consent-badge-text);
  background: var(--ap-consent-badge-bg);
  border-radius: 20px;
  white-space: nowrap;
}

.ap-consent-modal__category-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ap-consent-text-secondary);
  padding-right: 60px;
}

/* --- Toggle Switch --- */
.ap-consent-modal__switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.ap-consent-modal__switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ap-consent-modal__slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ap-consent-switch-bg);
  border-radius: 24px;
  transition: background var(--ap-consent-transition);
}

.ap-consent-modal__slider::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--ap-consent-switch-handle);
  border-radius: 50%;
  transition: transform var(--ap-consent-transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.ap-consent-modal__switch input:checked + .ap-consent-modal__slider {
  background: var(--ap-consent-switch-active);
}

.ap-consent-modal__switch input:checked + .ap-consent-modal__slider::before {
  transform: translateX(20px);
}

.ap-consent-modal__switch input:focus-visible + .ap-consent-modal__slider {
  box-shadow: var(--ap-consent-focus-ring);
}

/* Disabled toggle (necessary) */
.ap-consent-modal__toggle:disabled + .ap-consent-modal__slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.ap-consent-modal__toggle:disabled + .ap-consent-modal__slider::before {
  background: var(--ap-consent-switch-handle);
}

/* Hidden native checkbox for disabled state */
.ap-consent-modal__toggle[disabled] {
  display: none;
}

/* --- Modal Footer --- */
.ap-consent-modal__footer {
  padding: 16px 24px 24px;
  flex-shrink: 0;
  border-top: 1px solid var(--ap-consent-border);
}

.ap-consent-modal__footer .ap-consent-btn {
  width: 100%;
}

/* --- Reopen Button --- */
.ap-consent-reopen {
  position: fixed;
  z-index: 2147483644;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--ap-consent-reopen-bg);
  color: var(--ap-consent-reopen-text);
  border: 1px solid var(--ap-consent-border);
  border-radius: 50px;
  box-shadow: var(--ap-consent-reopen-shadow);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--ap-consent-transition);
}

.ap-consent-reopen--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ap-consent-reopen:hover {
  background: var(--ap-consent-reopen-hover);
  box-shadow: var(--ap-consent-shadow);
}

.ap-consent-reopen:focus-visible {
  outline: none;
  box-shadow: var(--ap-consent-focus-ring);
}

.ap-consent-reopen--bottom-left {
  bottom: 20px;
  left: 20px;
}

.ap-consent-reopen--bottom-right {
  bottom: 20px;
  right: 20px;
}

.ap-consent-reopen__label {
  display: none;
}

@media (min-width: 480px) {
  .ap-consent-reopen__label {
    display: inline;
  }
}

/* --- No Scroll (when modal is open) --- */
.ap-consent--no-scroll {
  overflow: hidden !important;
  padding-right: var(--ap-scrollbar-width, 0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .ap-consent-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 16px;
  }

  .ap-consent-banner__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .ap-consent-banner__actions .ap-consent-btn {
    flex: 1;
    min-width: 120px;
  }

  .ap-consent-banner--bottom-left,
  .ap-consent-banner--bottom-right {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .ap-consent-modal {
    width: 95%;
    max-height: 90vh;
  }

  .ap-consent-modal__header {
    padding: 20px 20px 0;
  }

  .ap-consent-modal__description {
    padding: 10px 20px 0;
  }

  .ap-consent-modal__categories {
    padding: 12px 20px;
  }

  .ap-consent-modal__footer {
    padding: 12px 20px 20px;
  }

  .ap-consent-modal__category-desc {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .ap-consent-banner__actions .ap-consent-btn {
    flex: 1 1 100%;
  }

  .ap-consent-banner__title {
    font-size: 14px;
  }

  .ap-consent-banner__description {
    font-size: 12px;
  }

  .ap-consent-modal__title {
    font-size: 18px;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .ap-consent-banner,
  .ap-consent-overlay,
  .ap-consent-modal,
  .ap-consent-reopen,
  .ap-consent-modal__slider,
  .ap-consent-modal__slider::before,
  .ap-consent-btn {
    transition: none !important;
  }
}

/* --- Print --- */
@media print {
  .ap-consent-banner,
  .ap-consent-overlay,
  .ap-consent-modal,
  .ap-consent-reopen {
    display: none !important;
  }
}
