/* ── Cookie Consent Banner ─────────────────────────────────── */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #004B42;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  flex-wrap: wrap;
}

#cookie-banner.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: #A3E0B4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  color: #ffffff;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-btn--accept {
  background: #A3E0B4;
  color: #004B42;
  border-color: #A3E0B4;
}

.cookie-btn--essential {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
  }
}
