/* ============================================
   NOVA ERA DIGITAL — cookies.css
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.9);
  padding: 20px 24px;
  z-index: 9999;
  border-top: 1px solid rgba(108,99,255,0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 240px; }

.cookie-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.cookie-text p a {
  color: #a78bfa;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.cookie-btn.accept {
  background: var(--primary);
  color: #fff;
}

.cookie-btn.accept:hover { background: var(--primary-dark); }

.cookie-btn.reject {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn.reject:hover { background: rgba(255,255,255,0.15); }

.cookie-btn.settings {
  background: transparent;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  padding: 10px 12px;
}

@media (max-width: 600px) {
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}