/* Sīkdatņu piekrišanas josla (GDPR). */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #4a5a28;
  color: #fff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.25);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-consent__text {
  margin: 0;
  flex: 1 1 320px;
  font-size: 13px;
  line-height: 1.5;
}
.cookie-consent__text a {
  color: #d7e59a;
  text-decoration: underline;
}
.cookie-consent__accept {
  flex: 0 0 auto;
  background: #92aa4f;
  color: #fff;
  border: 0;
  padding: 9px 24px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
}
.cookie-consent__accept:hover { background: #a8c25f; }

@media (max-width: 640px) {
  .cookie-consent__inner { padding: 12px 14px; gap: 10px; }
  .cookie-consent__accept { width: 100%; }
}
