/* Cookie Consent Styles */
.cookie-consent {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  display: none; /* Initially hidden, will be shown via JS */
  animation: fadeInScale 0.5s ease;
}

.cookie-content {
  padding: var(--spacing-lg);
  text-align: center;
}

.cookie-content h3 {
  color: var(--black);
  margin-bottom: var(--spacing-md);
}

.cookie-content p {
  color: var(--gray);
  margin-bottom: var(--spacing-lg);
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

/* Cookie Consent Animation */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Cookie Consent Overlay */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 28, 28, 0.8);
  z-index: 1000;
  display: none; /* Initially hidden, will be shown via JS */
}

/* Responsive Styles */
@media (max-width: 576px) {
  .cookie-consent {
    width: 95%;
  }
  
  .cookie-content {
    padding: var(--spacing-md);
  }
  
  .cookie-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}