.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 90;
  width: min(calc(100% - 2rem), 42rem);
  transform: translate(-50%, calc(100% + 2rem));
  opacity: 0;
  pointer-events: none;
  transition: transform .32s ease, opacity .32s ease;
}
.cookie-consent.active {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent__panel {
  border-radius: 1.6rem;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(253,253,249,.94);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 28px 90px rgba(69,75,48,.18);
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  padding: 1.05rem;
}
.cookie-consent__content {
  display: grid;
  gap: .95rem;
}
.cookie-consent__label {
  margin: 0 0 .35rem;
  color: #6f9829;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cookie-consent__title {
  margin: 0;
  color: #1a1c16;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.035em;
}
.cookie-consent__text {
  margin: .45rem 0 0;
  color: #74786e;
  font-size: .92rem;
  line-height: 1.55;
}
.cookie-consent__text a {
  color: #3f5f14;
  font-weight: 700;
  text-decoration: none;
}
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.cookie-consent__button {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: .82rem 1rem;
  font: inherit;
  font-size: .88rem;
  font-weight: 700;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.cookie-consent__button:hover { transform: translateY(-1px); }
.cookie-consent__button:active { transform: scale(.98); }
.cookie-consent__button--primary {
  background: #1a1c16;
  color: #fff;
}
.cookie-consent__button--secondary {
  border: 1px solid rgba(26,28,22,.12);
  background: rgba(255,255,255,.62);
  color: #1a1c16;
}
.cookie-settings {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: inherit;
}
.cookie-settings:hover { color: #6f9829; }
@media (min-width: 720px) {
  .cookie-consent__content {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .cookie-consent__actions {
    justify-content: flex-end;
    min-width: 17rem;
  }
}
