/* Cookie Consent Banner Styles */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 1));
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--brand-500);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-consent-text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-consent-text h4 {
  color: var(--brand-700);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cookie-consent-text p {
  margin-bottom: 0.75rem;
}

.cookie-consent-text strong {
  color: var(--brand-600);
}

.cookie-consent-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cookie-btn {
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--brand-500);
  color: white;
}

.cookie-btn-accept:hover {
  background: var(--brand-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 128, 242, 0.3);
}

.cookie-btn-necessary {
  background: #6c757d;
  color: white;
}

.cookie-btn-necessary:hover {
  background: #5a6268;
  transform: translateY(-1px);
}

.cookie-btn-reject {
  background: transparent;
  color: #6c757d;
  border: 1px solid #dee2e6;
}

.cookie-btn-reject:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cookie-consent-banner {
    padding: 1rem;
  }
  
  .cookie-consent-text {
    font-size: 0.85rem;
  }
  
  .cookie-consent-text h4 {
    font-size: 1rem;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

/* Animation for banner appearance */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-banner.show {
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
