.analytics-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.analytics-consent__content {
  width: min(920px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 50px rgba(13, 17, 23, 0.2);
  color: #111827;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  pointer-events: auto;
}

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

.analytics-consent__text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.35;
}

.analytics-consent__text p {
  margin: 0 0 5px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.45;
}

.analytics-consent__text a {
  color: #d94f1c;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.analytics-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.analytics-consent__button {
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.analytics-consent__button:hover {
  transform: translateY(-1px);
}

.analytics-consent__button--primary {
  border: 1px solid #ff6b35;
  background: #ff6b35;
  color: #fff;
}

.analytics-consent__button--primary:hover {
  background: #e85a24;
  border-color: #e85a24;
}

.analytics-consent__button--secondary {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
}

.analytics-consent__button--secondary:hover {
  border-color: #9ca3af;
  background: #f9fafb;
}

@media (max-width: 720px) {
  .analytics-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .analytics-consent__content {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .analytics-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .analytics-consent__button {
    width: 100%;
  }
}
