.ls-cookieconsent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: #111111;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
}

.ls-cookieconsent.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.ls-cookieconsent__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .ls-cookieconsent__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.ls-cookieconsent__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.ls-cookieconsent__link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.25rem;
}

.ls-cookieconsent__link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.ls-cookieconsent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ls-cookieconsent__btn {
  border: 0;
  border-radius: 9999px;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.ls-cookieconsent__btn--primary {
  background: #A94442;
  color: #ffffff;
}

.ls-cookieconsent__btn--primary:hover {
  background: #8B3735;
}

.ls-cookieconsent__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ls-cookieconsent__btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.65);
}
