/* ============================================
   ANDRÉ HUHN — COMPONENTS
   Buttons, Cards, Badges, Forms, Modals
   ============================================ */

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.btn i {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-smooth);
}

.btn:hover i {
  transform: translateX(3px);
}

/* Primary Button — Gold CTA with blue hover */
.btn-primary {
  background: var(--gradient-cta);
  color: #000000 !important; /* Ensure it stays black for AAA contrast on gold bg */
  font-weight: var(--fw-bold);
  box-shadow: var(--shadow-glow-gold);
  border: 1px solid rgba(245, 180, 0, 0.2);
  position: relative;
  overflow: hidden;
  animation: cta-pulse 4s infinite ease-in-out;
}

.btn-primary::before {
  background: var(--gradient-cta-hover); /* Blue gradient */
}

/* Shimmer Sweep Animation */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  pointer-events: none;
  z-index: 2;
  animation: shimmer-sweep 4s infinite ease-in-out;
}

.btn-primary:hover {
  color: #FFFFFF !important; /* White text for excellent contrast on blue bg */
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow-cyan-lg);
  border-color: rgba(0, 183, 255, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover::after {
  animation-play-state: paused; /* stop shimmer sweep on hover for a cleaner look if desired */
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
}

/* Secondary Button — Outline with cyan hover */
.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  font-weight: var(--fw-semibold);
}

.btn-secondary::before {
  background: var(--gradient-cta-hover);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-secondary:hover {
  border-color: var(--color-cyan);
  color: #FFFFFF !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow-cyan);
}

.btn-secondary:hover::before {
  opacity: 0.15; /* subtle blue glow inside outline */
}

.btn-secondary:active {
  transform: translateY(-1px) scale(1);
}

/* Keyframes for premium CTA buttons */
@keyframes cta-pulse {
  0% {
    box-shadow: 0 0 12px rgba(245, 180, 0, 0.25);
    border-color: rgba(245, 180, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 22px rgba(245, 180, 0, 0.5);
    border-color: rgba(245, 180, 0, 0.45);
  }
  100% {
    box-shadow: 0 0 12px rgba(245, 180, 0, 0.25);
    border-color: rgba(245, 180, 0, 0.2);
  }
}

@keyframes shimmer-sweep {
  0% {
    left: -60%;
  }
  15% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}

/* Gold Button */
.btn-gold {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212, 165, 32, 0.3),
              0 0 60px rgba(212, 165, 32, 0.15);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--color-cyan);
  padding: 0.75rem 1.5rem;
}

.btn-ghost:hover {
  background: rgba(0, 212, 255, 0.08);
}

/* Button Sizes */
.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: var(--text-lg);
}

.btn-xl {
  padding: 1.25rem 3rem;
  font-size: var(--text-lg);
  border-radius: var(--radius-xl);
}

/* Button Full Width */
.btn-full {
  width: 100%;
}

/* Disabled and Loading States */
.btn:disabled,
.btn[disabled],
.btn.is-loading {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Button with Icon */
.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-lg);
}

.btn-icon.btn-sm {
  width: 40px;
  height: 40px;
}

/* ═══════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gradient-glass);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-card-hover);
}

.card:hover::before {
  opacity: 1;
}

/* Card Glass */
.card-glass {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-smooth);
}

.card-glass:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-2px);
}

/* Card Icon */
.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-cyan);
  margin-bottom: var(--space-6);
  transition: all var(--transition-smooth);
}

.card:hover .card-icon {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-glow-cyan);
  transform: scale(1.05);
}

.card-icon i {
  width: 24px;
  height: 24px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.card-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-cyan);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  margin-top: var(--space-4);
  transition: all var(--transition-fast);
}

.card-link i {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.card-link:hover {
  color: var(--color-cyan-light);
}

.card-link:hover i {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   BADGES
   ═══════════════════════════════════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.375rem 0.875rem;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  border-radius: var(--radius-full);
  background: rgba(0, 212, 255, 0.1);
  color: var(--color-cyan);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.badge-gold {
  background: rgba(212, 165, 32, 0.1);
  color: var(--color-gold);
  border-color: rgba(212, 165, 32, 0.2);
}

.badge-success {
  background: rgba(34, 197, 94, 0.1);
  color: #22C55E;
  border-color: rgba(34, 197, 94, 0.2);
}

.badge-floating {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════════ */

.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: all var(--transition-base);
}

.form-input:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
  outline: none;
}

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

.form-select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: all var(--transition-base);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236E6E85' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: var(--text-base);
  resize: vertical;
  min-height: 100px;
  transition: all var(--transition-base);
}

.form-textarea:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
  outline: none;
}

/* Radio & Checkbox Custom */
.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form-radio-label,
.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.875rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.form-radio-label:hover,
.form-checkbox-label:hover {
  border-color: var(--border-cyan);
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.form-radio-label input,
.form-checkbox-label input {
  display: none;
}

.form-radio-label .radio-custom,
.form-checkbox-label .checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  transition: all var(--transition-base);
  position: relative;
}

.form-checkbox-label .checkbox-custom {
  border-radius: var(--radius-sm);
}

.form-radio-label input:checked ~ .radio-custom,
.form-checkbox-label input:checked ~ .checkbox-custom {
  border-color: var(--color-cyan);
  background: var(--color-cyan);
}

.form-radio-label input:checked ~ .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--bg-primary);
  border-radius: 50%;
}

.form-checkbox-label input:checked ~ .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid var(--bg-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-radio-label input:checked ~ span:last-child,
.form-checkbox-label input:checked ~ span:last-child {
  color: var(--text-primary);
}

.form-radio-label:has(input:checked),
.form-checkbox-label:has(input:checked) {
  border-color: var(--color-cyan);
  background: rgba(0, 212, 255, 0.05);
}

/* Form Error */
.form-error {
  font-size: var(--text-sm);
  color: #EF4444;
  margin-top: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* ═══════════════════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════════════════ */

.progress-bar {
  width: 100%;
  height: 4px;
  background: var(--bg-card);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gradient-cta);
  border-radius: var(--radius-full);
  transition: width var(--transition-smooth);
  box-shadow: var(--shadow-glow-cyan);
}

/* ═══════════════════════════════════════════
   MODAL / OVERLAY
   ═══════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: var(--glass-blur-sm);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  max-width: 560px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition-smooth);
  box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* ═══════════════════════════════════════════
   TABS
   ═══════════════════════════════════════════ */

.tabs {
  display: flex;
  gap: var(--space-1);
  background: var(--bg-card);
  padding: var(--space-1);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-8);
  overflow-x: auto;
}

.tab {
  padding: 0.75rem 1.5rem;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.tab:hover {
  color: var(--text-primary);
}

.tab.active {
  background: var(--bg-elevated);
  color: var(--color-cyan);
  box-shadow: var(--shadow-sm);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ═══════════════════════════════════════════
   ACCORDION / FAQ
   ═══════════════════════════════════════════ */

.accordion-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: background-color 350ms ease, color 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

.accordion-item:hover {
  border-color: var(--border-cyan);
}

.accordion-item.active {
  border-color: rgba(245, 180, 0, 0.3);
  box-shadow: 0 0 15px rgba(245, 180, 0, 0.12);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: var(--bg-card);
  transition: background-color 350ms ease, color 350ms ease, border-color 350ms ease;
}

.accordion-header:hover {
  background: var(--bg-card-hover);
}

.accordion-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  flex: 1;
  padding-right: var(--space-4);
  transition: color 350ms ease;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  color: var(--color-cyan);
  transition: transform 350ms ease, color 350ms ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-header {
  background: var(--color-gold);
}

.accordion-item.active .accordion-title {
  color: #000000;
}

.accordion-item.active .accordion-icon {
  color: #000000;
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
  background: var(--bg-secondary);
}

.accordion-item.active .accordion-body {
  max-height: 1000px; /* Fallback seguro. O JavaScript substitui dinamicamente pelo scrollHeight exato */
}

.accordion-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-base);
  background: var(--bg-secondary);
}

/* ═══════════════════════════════════════════
   TOOLTIP
   ═══════════════════════════════════════════ */

.tooltip {
  position: relative;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 0.5rem 0.75rem;
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-size: var(--text-xs);
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
  z-index: var(--z-tooltip);
  box-shadow: var(--shadow-md);
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════
   DIVIDERS
   ═══════════════════════════════════════════ */

.divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  margin: var(--space-8) 0;
}

.divider-cyan {
  background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
  height: 1px;
  opacity: 0.3;
}

/* ═══════════════════════════════════════════
   STAR RATING
   ═══════════════════════════════════════════ */

.stars {
  display: inline-flex;
  gap: 2px;
  color: #FACC15;
}

.stars i {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ═══════════════════════════════════════════
   COOKIE CONSENT BANNER & PREFERENCES CENTER
   ═══════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2 * var(--space-4));
  max-width: 900px;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 183, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  z-index: var(--z-overlay);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 183, 255, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  opacity: 0;
  transition: bottom 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  pointer-events: none;
}

.cookie-banner.show {
  bottom: var(--space-4);
  opacity: 1;
  pointer-events: auto;
}

.cookie-content {
  flex: 1;
}

.cookie-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.cookie-title i {
  color: var(--color-gold);
}

.cookie-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: left;
}

.cookie-text a {
  color: var(--color-cyan);
  text-decoration: underline;
  cursor: pointer;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Preferences Toggles */
.cookie-preference-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cookie-preference-item:last-child {
  border-bottom: none;
}

.cookie-preference-info {
  flex: 1;
  padding-right: var(--space-4);
}

.cookie-preference-name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
  text-align: left;
}

.cookie-preference-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.4;
  text-align: left;
}

/* Switch styling */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-muted);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: rgba(0, 183, 255, 0.2);
  border-color: var(--color-cyan);
}

input:checked + .slider:before {
  background-color: var(--color-cyan);
  transform: translateX(24px);
}

input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}

input:disabled + .slider:before {
  background-color: var(--text-muted);
}

/* Footer compliance links */
.footer-compliance {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  margin: var(--space-6) 0 var(--space-2);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-compliance-link {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-compliance-link:hover {
  color: var(--color-gold);
}

.footer-compliance-separator {
  color: rgba(255, 255, 255, 0.1);
  font-size: var(--text-xs);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
    padding: var(--space-5);
    width: calc(100% - 2 * var(--space-3));
  }
  .cookie-buttons {
    flex-direction: column;
  }
  .footer-compliance {
    flex-direction: column;
    gap: var(--space-2);
    align-items: center;
  }
  .footer-compliance-separator {
    display: none;
  }
}
