.analytics-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  width: min(440px, calc(100% - 2rem));
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  color: #10252a;
  background: rgba(255, 250, 240, 0.96);
  border: 1px solid rgba(16, 37, 42, 0.16);
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(8, 44, 47, 0.2);
}

.analytics-consent strong {
  display: block;
  margin-bottom: 0.2rem;
}

.analytics-consent p {
  margin: 0;
  color: #52666c;
  font-size: 0.95rem;
  line-height: 1.4;
}

.analytics-consent__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.analytics-consent button {
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(16, 37, 42, 0.16);
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.analytics-consent button:first-child {
  color: #fff;
  background: #082c2f;
}

.analytics-consent button:last-child {
  color: #082c2f;
  background: #fff;
}

@media (max-width: 560px) {
  .analytics-consent {
    display: block;
  }

  .analytics-consent__actions {
    flex-direction: row;
    margin-top: 0.85rem;
  }

  .analytics-consent button {
    flex: 1 1 0;
  }
}
