/* Google Analytics hozzájárulási sáv */
.analytics-consent {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 9999;
  width: min(430px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: rgba(8, 18, 34, .94);
  color: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
}

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

.analytics-consent-title {
  display: block;
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.analytics-consent-text {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.5;
}

.analytics-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.analytics-consent-actions .btn {
  min-height: 42px;
}

.analytics-consent-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.analytics-consent-link:hover {
  color: #fff;
}

@media (max-width: 760px) {
  .analytics-consent {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: calc(14px + env(safe-area-inset-bottom));
    border-radius: 18px;
  }

  .has-mobile-cta .analytics-consent {
    bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .analytics-consent-actions {
    flex-direction: column;
  }

  .analytics-consent-actions .btn,
  .analytics-consent-link {
    justify-content: center;
    width: 100%;
  }
}
