

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.95);
  border-top: 1px solid #00c28b;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 1000;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  color: #f5f4f0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
  max-height: auto;
  overflow-y: auto;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner--customize-open {
  flex-direction: column;
  align-items: flex-start;
}

.cookie-banner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: #f5f4f0;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #a0a09a;
}

.cookie-banner a {
  color: #00c28b;
  text-decoration: none;
  font-weight: 500;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-btn--primary {
  background: #00c28b;
  color: #0d0d0d;
}

.cookie-btn--primary:hover {
  background: #00a86f;
}

.cookie-btn--secondary {
  background: transparent;
  color: #f5f4f0;
  border: 1px solid #6b6b6b;
}

.cookie-btn--secondary:hover {
  border-color: #00c28b;
  color: #00c28b;
}

.cookie-btn:focus-visible {
  outline: 2px solid #00c28b;
  outline-offset: 2px;
}

.cookie-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  width: 100%;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cookie-category input[type="checkbox"] {
  margin-top: 0.35rem;
  cursor: pointer;
  accent-color: #00c28b;
}

.cookie-category label {
  cursor: pointer;
  font-size: 0.9375rem;
  color: #f5f4f0;
}

.cookie-category small {
  display: block;
  font-size: 0.8125rem;
  color: #a0a09a;
  margin-top: 0.25rem;
}

.cookie-customize {
  display: none;
  width: 100%;
}

.cookie-customize.visible {
  display: block;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .cookie-banner-content {
    width: 100%;
  }

  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

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