.analytics-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px;
  border: 4px solid #111;
  background: #fff5e9;
  color: #111;
  box-shadow: 8px 8px 0 #111;
  font-family: Inter, Arial, sans-serif;
}

.analytics-consent[hidden] { display: none; }
.analytics-consent strong { display: block; margin-bottom: 6px; font-size: 18px; }
.analytics-consent p { margin: 0; line-height: 1.5; }
.analytics-consent a { color: inherit; font-weight: 850; text-underline-offset: 3px; }

.analytics-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.analytics-consent button,
.analytics-settings-button {
  min-height: 42px;
  border: 3px solid #111;
  padding: 9px 14px;
  background: #fff;
  color: #111;
  font: 900 13px/1.1 Inter, Arial, sans-serif;
  cursor: pointer;
}

.analytics-consent [data-analytics-accept] { background: #f58220; }
.analytics-consent [data-analytics-reject] { background: #65d9ff; }
.analytics-settings-button { margin-left: 10px; }

@media (max-width: 620px) {
  .analytics-consent { left: 8px; right: 8px; bottom: 8px; width: calc(100% - 16px); padding: 14px; box-shadow: 5px 5px 0 #111; }
  .analytics-consent__actions { display: grid; grid-template-columns: 1fr; }
  .analytics-consent button { width: 100%; }
  .analytics-settings-button { margin: 8px 0 0; }
}

/* Mobile recovery: keep consent visible without covering half the page. */
@media (max-width: 620px) {
  .analytics-consent {
    padding: 11px 12px;
    border-width: 3px;
    box-shadow: 4px 4px 0 #111;
  }

  .analytics-consent strong {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .analytics-consent p {
    font-size: 13px;
    line-height: 1.35;
  }

  .analytics-consent__actions {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 10px;
  }

  .analytics-consent button {
    min-height: 40px;
    padding: 7px 8px;
    font-size: 12px;
  }
}
