/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1C1E21;
  color: #fff;
  padding: 20px 24px;
  animation: cookieSlideUp 0.4s ease-out;
}

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

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

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-banner-inner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
}

.cookie-banner-inner p a {
  color: #ff8000;
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner .cookie-accept {
  background: linear-gradient(135deg, #ff8000, #ff8000);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  min-height: 44px;
}

.cookie-banner .cookie-accept:hover {
  opacity: 0.9;
}

.cookie-banner .cookie-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
  min-height: 44px;
}

.cookie-banner .cookie-decline:hover {
  border-color: #fff;
  color: #fff;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    gap: 16px;
  }

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

  .cookie-banner .cookie-accept,
  .cookie-banner .cookie-decline {
    width: 100%;
    text-align: center;
  }
}
