/* =========================================================================
   autofarm — cookie.css
   Bottom informational bar. z-index 60.
   ========================================================================= */

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--card);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, .35);
  padding: 14px 0;
}

.cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
  max-width: 72ch;
}
.cookie__text a { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 640px) {
  .cookie__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie__inner .btn-cta { width: 100%; }
}
