

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0f0f0f;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.6);
  padding: 1.5rem 2rem;
  display: none;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner.active {
  display: block;
}

.cookie-banner__container {
  max-width: 1280px;
  margin: 0 auto;
}

.cookie-banner__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.cookie-banner__text h3 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f0f0f0;
  margin-bottom: 0.5rem;
}

.cookie-banner__text p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #999999;
  margin-bottom: 0.5rem;
}

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

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

.cookie-banner__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-banner__btn--primary {
  background: #00e5ff;
  color: #0a0a0a;
}

.cookie-banner__btn--primary:hover {
  background: #00d0e8;
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-banner__btn--customize {
  background: transparent;
  color: #00e5ff;
  border: 1px solid #00e5ff;
}

.cookie-banner__btn--customize:hover {
  background: rgba(0, 229, 255, 0.08);
}

.cookie-banner__customize {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
  display: none;
}

.cookie-banner__customize.active {
  display: block;
}

.cookie-banner__customize-title {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f0f0f0;
  margin-bottom: 1rem;
}

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

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

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #00e5ff;
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-option label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
  flex: 1;
}

.cookie-option__name {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f0f0f0;
}

.cookie-option__desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  color: #888888;
  line-height: 1.4;
}

.cookie-option input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-option input[type="checkbox"]:disabled ~ label {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-banner__customize-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .cookie-banner__content {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .cookie-banner__buttons {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 1.25rem 1rem;
  }

  .cookie-banner__container {
    padding: 0;
  }

  .cookie-banner__content {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .cookie-banner__text h3 {
    font-size: 1rem;
  }

  .cookie-banner__text p {
    font-size: 0.9rem;
  }

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

  .cookie-banner__btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner__customize {
    padding: 1rem;
  }

  .cookie-banner__options {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .cookie-banner__customize-buttons {
    flex-direction: column;
  }

  .cookie-banner__customize-buttons .cookie-banner__btn {
    width: 100%;
  }
}
