/* Cookie Consent Styles */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1000px;
  margin: 0 auto;
}

.cookie-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: hsl(var(--secondary-color));
}

.cookie-content p {
  margin-bottom: 20px;
  font-size: 14px;
}

.cookie-options {
  margin-bottom: 20px;
}

.cookie-option {
  margin-bottom: 10px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.btn-cookie {
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cookie {
  background-color: hsl(var(--primary-color));
  color: #fff;
}

.btn-cookie:hover {
  background-color: hsl(var(--secondary-color));
}

.btn-outline {
  background-color: transparent;
  border: 1px solid hsl(var(--primary-color));
  color: hsl(var(--primary-color));
}

.btn-outline:hover {
  background-color: hsla(var(--primary-color), 0.1);
}

.cookie-more-info {
  font-size: 12px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .cookie-content h3 {
    font-size: 18px;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .btn-cookie {
    width: 100%;
  }
}
