/* Cookie Consent Banner */
.cookie-consent-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 16px;
  animation: cookieSlideUp 0.4s ease-out;
}

@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-card {
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 0.5rem 1.5rem -0.1rem rgba(0, 0, 0, 0.12);
}

.cookie-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--bs-primary, #14715b);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-pref-label {
  cursor: pointer;
  align-items: flex-start;
}

@media (max-width: 576px) {
  .cookie-consent-overlay {
    padding: 10px;
  }

  .cookie-consent-card .hstack.gap-2.flex-wrap {
    flex-direction: column;
  }

  .cookie-consent-card .hstack.gap-2.flex-wrap .btn {
    width: 100%;
    text-align: center;
  }
}
