/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  font-family: "Inter", sans-serif;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

.cookie-banner h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.cookie-banner p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 1.25rem;
}

.cookie-settings {
  border: 1px solid #eee;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  max-height: 200px;
  overflow-y: auto;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option input[type="checkbox"] {
  margin-top: 0.25rem;
  margin-right: 0.75rem;
  cursor: pointer;
}

.cookie-option label {
  flex: 1;
  cursor: pointer;
}

.cookie-option label strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #333;
}

.cookie-option label span {
  display: block;
  font-size: 0.8rem;
  color: #666;
}

.cookie-banner-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-link {
  color: #666;
  text-decoration: underline;
  font-size: 0.85rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  border-radius: 0.25rem;
  cursor: pointer;
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  color: #333;
  transition: all 0.2s ease;
}

.btn-cookie:hover {
  background-color: #eee;
}

.btn-reject {
  background-color: white;
}

.btn-accept {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-accept:hover {
  background-color: var(--primary-hover);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .cookie-banner-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .btn-cookie {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-cookie {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
