/* ============================================================
   Cookie Banner – cookie.css
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #2a3a08;
  color: rgba(255,255,255,.88);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
  transform: translateY(100%);
  transition: transform .35s ease;
}

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

.cookie-banner-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  flex: 1;
  min-width: 220px;
}

.cookie-banner-text a {
  color: #d4ee82;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-text a:hover {
  color: #fff;
}

.cookie-banner-btn {
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  padding: 10px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}

.cookie-banner-btn:hover {
  background: var(--green-dark);
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .cookie-banner-btn {
    width: 100%;
    text-align: center;
  }
}
