.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  
  width: 90%;
  max-width: 600px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 20px;
  z-index: 99999; 
  display: block; 
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(0); 
  border: 1px solid #e0aaff;
}

.cookie-banner.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(40px) !important;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  
  gap: 15px;
}

.cookie-content p {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.cookie-content a {
  color: #7b2cbf;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-content a:hover {
  color: #5a189a;
}

.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-btn {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.cookie-btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: #7b2cbf;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #5a189a;
}

.btn-secondary {
  background-color: #f3f4f6;
  color: #4b5563;
}

.btn-secondary:hover {
  background-color: #e5e7eb;
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 10px;
    width: 95%;
    padding: 15px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}