/**
 * Cookie Consent Banner - Nefs Berliner
 * Design moderne et discret
 */

#nefs-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(to top, rgba(21, 21, 21, 0.98) 0%, rgba(21, 21, 21, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 2px solid #e30613;
}

#nefs-cookie-banner.nefs-cookie-visible {
  transform: translateY(0);
}

#nefs-cookie-banner.nefs-cookie-closing {
  transform: translateY(100%);
  opacity: 0;
}

.nefs-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.nefs-cookie-text {
  flex: 1;
}

.nefs-cookie-text p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nefs-cookie-text a {
  color: #e30613;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nefs-cookie-text a:hover {
  color: #ff1d25;
}

.nefs-cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.nefs-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Clash Display', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nefs-btn-accept {
  background: #e30613;
  color: white;
}

.nefs-btn-accept:hover {
  background: #c5050f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.nefs-btn-reject {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.nefs-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .nefs-cookie-content {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  
  .nefs-cookie-text p {
    font-size: 14px;
    text-align: center;
  }
  
  .nefs-cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .nefs-btn {
    width: 100%;
    padding: 14px 20px;
  }
}

/* Animation subtile */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

