/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(244, 114, 182, 0.2);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 24px 20px;
  z-index: 9999;
  display: none;
  animation: slideUp 0.4s ease-out;
}

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

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b1e3a;
  margin: 0 0 8px 0;
}

.cookie-banner-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 8px 0;
}

.cookie-banner-text a {
  color: #f472b6;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-text a:hover {
  color: #ec4899;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-banner-buttons .btn-accept-all {
  background: linear-gradient(135deg, #f472b6, #ec4899);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
}

.cookie-banner-buttons .btn-accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 114, 182, 0.4);
}

.cookie-banner-buttons .btn-essential {
  background: transparent;
  color: #6b7280;
  border: 1px solid #d1d5db;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.cookie-banner-buttons .btn-essential:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #374151;
}

@media (min-width: 768px) {
  .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  
  .cookie-banner-text {
    flex: 1;
  }
  
  .cookie-banner-buttons {
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .cookie-banner {
    padding: 20px 16px;
  }
  
  .cookie-banner-text h3 {
    font-size: 16px;
  }
  
  .cookie-banner-text p {
    font-size: 13px;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: row-reverse;
  }
  
  .cookie-banner-buttons button {
    flex: 1;
    min-width: 0;
  }
}
