
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0f1523;
  color: #f0f2f8;
  border-top: 2px solid #00c2ff;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.45);
  padding: 1.25rem 1.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-banner__inner {
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__copy {
  flex: 1 1 320px;
  min-width: 0;
}

.cookie-banner__title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #f0f2f8;
  margin-bottom: 0.3rem;
}

.cookie-banner__text {
  color: #b4bbd1;
  margin: 0;
}

.cookie-banner__link {
  color: #00c2ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  cursor: pointer;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.cookie-banner__btn:hover {
  opacity: 0.85;
}

.cookie-banner__btn--primary {
  background: #00c2ff;
  color: #0a0e1a;
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: #f0f2f8;
  border: 1.5px solid rgba(240,242,248,0.3);
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .cookie-banner__actions {
    width: 100%;
  }
}
.cookie-banner__btn--secondary:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.customize-panel {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #0f1523;
  color: #f0f2f8;
  border-top: 2px solid #00c2ff;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.6);
  padding: 2rem 1.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  max-height: 80vh;
  overflow-y: auto;
}

.customize-panel__inner {
  max-width: 1160px;
  margin-inline: auto;
}

.customize-panel__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0f2f8;
  margin-bottom: 1rem;
}

.customize-panel__description {
  font-size: 0.9rem;
  color: #b4bbd1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cookie-category {
  background: rgba(0, 194, 255, 0.05);
  border: 1px solid rgba(0, 194, 255, 0.15);
  border-radius: 8px;
  padding: 1rem;
}

.cookie-category__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cookie-category__checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #00c2ff;
}

.cookie-category__label {
  font-weight: 600;
  color: #f0f2f8;
  cursor: pointer;
  flex: 1;
}

.cookie-category__description {
  font-size: 0.8rem;
  color: #b4bbd1;
  line-height: 1.5;
}

.cookie-category__essential {
  opacity: 0.7;
}

.cookie-category__essential .cookie-category__checkbox {
  cursor: not-allowed;
}

.customize-panel__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.customize-panel__btn {
  cursor: pointer;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.customize-panel__btn:hover {
  opacity: 0.85;
}

.customize-panel__btn:focus-visible {
  outline: 2px solid #00c2ff;
  outline-offset: 2px;
}

.customize-panel__btn--primary {
  background: #00c2ff;
  color: #0a0e1a;
}

.customize-panel__btn--secondary {
  background: transparent;
  color: #f0f2f8;
  border: 1.5px solid rgba(240,242,248,0.3);
}

.cookie-policy-link {
  font-size: 0.85rem;
  color: #00c2ff;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-bottom: 1rem;
  display: inline-block;
}

@media (max-width: 640px) {
  .customize-panel {
    padding: 1.5rem 1rem;
  }

  .cookie-categories {
    grid-template-columns: 1fr;
  }

  .customize-panel__actions {
    justify-content: stretch;
  }

  .customize-panel__btn {
    flex: 1 1 0;
    text-align: center;
  }
}

.cookie-category { color: #111111 !important; }


/* wh-contrast-fix */
/* Auto-injected: text color did not meet 4.5:1 against declared background. */
.cookie-category { color: #111111 !important; }
