/* ===== Cookie Banner ===== */
.cc-banner[hidden] { display: none !important; }

.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  animation: cc-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cc-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cc-banner-text {
  flex: 1;
}

.cc-banner-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.375rem;
}

.cc-banner-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 0.375rem;
}

.cc-banner-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cc-banner-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.cc-banner-actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
}

/* ===== Buttons ===== */
.cc-btn {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.cc-btn--accept {
  background: #8DC245;
  color: #fff;
}

.cc-btn--accept:hover {
  background: #7ab03a;
}

.cc-btn--reject {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cc-btn--reject:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ===== Animations ===== */
@keyframes cc-slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .cc-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cc-banner-actions {
    flex-direction: column;
  }
}
