/* Szlakowid — cookie consent bar (budowany przez scripts/analytics.js) */
.sz-cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  max-width: 520px;
  margin: 0 auto;
  background: #161d19;
  color: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 1.25rem 1.35rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 300;
  font-size: .9rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.sz-cookie strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: .25rem;
}
.sz-cookie__actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.sz-cookie__btn {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: .85rem;
  font-weight: 500;
  padding: .6rem 1.1rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.sz-cookie__btn--accept {
  background: #cfdf58;
  color: #161d19;
}
.sz-cookie__btn--accept:hover {
  background: #b2c526;
}
.sz-cookie__btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, .7);
  border-color: rgba(255, 255, 255, .28);
}
.sz-cookie__btn--reject:hover {
  color: #fff;
  border-color: #fff;
}
