.analytics-consent[hidden] {
  display: none;
}

.analytics-consent {
  position: fixed;
  z-index: 1000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  width: min(760px, calc(100% - 32px));
  margin-inline: auto;
  padding: 14px;
  color: #f4f5f2;
  background: #111315;
  border: 1px solid #35393d;
  border-radius: 6px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  font-family: "Manrope Variable", "Manrope", Arial, sans-serif;
  line-height: 1.4;
}

.analytics-consent__copy {
  min-width: 0;
}

.analytics-consent p {
  margin: 0;
  letter-spacing: 0;
}

.analytics-consent strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}

.analytics-consent p {
  color: #c4c9cb;
  font-size: 13px;
}

.analytics-consent a {
  margin-left: 5px;
  color: #fff;
  font-size: 13px;
  text-decoration: underline;
  text-decoration-color: #73797c;
  text-underline-offset: 4px;
}

.analytics-consent__actions {
  display: flex;
  gap: 8px;
}

.analytics-consent button {
  min-width: 116px;
  min-height: 40px;
  padding: 0 14px;
  color: #111315;
  background: #f4f5f2;
  border: 1px solid #f4f5f2;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.analytics-consent button[data-analytics-choice="granted"] {
  color: #111315;
  background: #d7ff43;
  border-color: #d7ff43;
}

.analytics-consent button:focus-visible,
[data-analytics-settings]:focus-visible {
  outline: 3px solid #ff735a;
  outline-offset: 3px;
}

[data-analytics-settings] {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}

.analytics-legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 16px clamp(20px, 4vw, 48px);
  color: #c4c9cb;
  background: #111315;
  border-top: 1px solid #35393d;
  gap: 22px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
}

.analytics-legal-footer__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.analytics-legal-footer a {
  color: #fff;
  text-underline-offset: 4px;
}

@media (max-width: 680px) {
  .analytics-consent {
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: calc(100% - 16px);
    padding: 14px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .analytics-consent__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analytics-consent button {
    min-width: 0;
  }

  .analytics-legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .analytics-legal-footer__links {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .analytics-consent {
    animation: analytics-consent-enter 220ms ease-out both;
  }
}

@keyframes analytics-consent-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
