/* ============ COOKIE BANNER ============ */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #efe6d6;
  border-top: 1px solid #d9cdb8;
  box-shadow: 0 -8px 24px rgba(42, 38, 34, 0.06);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner.is-closing {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}

.cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
  color: #4a4239;
  margin: 0;
}
.cookie-text a {
  color: #7a3d2c;
  border-bottom: 1px solid #d9cdb8;
  padding-bottom: 1px;
  transition: border-color .2s;
}
.cookie-text a:hover { border-bottom-color: #a8553d; }

.cookie-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid #2a2622;
  border-radius: 999px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  color: #2a2622;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.cookie-btn:hover { background: #2a2622; color: #f4ede2; }
.cookie-btn:focus-visible {
  outline: 2px solid #a8553d;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 22px 16px;
  }
  .cookie-text { font-size: 13.5px; }
  .cookie-btn { width: 100%; padding: 12px 22px; }
}
