.analytics-consent {
  position: fixed;
  z-index: 1200;
  right: clamp(12px, 3vw, 36px);
  bottom: clamp(12px, 3vw, 30px);
  left: clamp(12px, 3vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  max-width: 980px;
  margin-inline: auto;
  padding: 18px 20px;
  color: #27201a;
  background: rgba(255, 253, 249, 0.98);
  border: 1px solid #b89a77;
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(45, 31, 19, 0.22);
  backdrop-filter: blur(8px);
}

.analytics-consent__copy h2 {
  margin: 0 0 6px;
  color: #5f351d;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.3;
}

.analytics-consent__copy p {
  max-width: 680px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.analytics-consent__copy a {
  display: inline-block;
  margin-top: 6px;
  color: #7b4728;
  font-size: 0.85rem;
  font-weight: 700;
  text-underline-offset: 3px;
}

.analytics-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.analytics-consent__actions button,
.analytics-consent-settings__actions button {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid #815334;
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 750;
  cursor: pointer;
}

.analytics-consent__necessary {
  color: #603b25;
  background: #fff;
}

.analytics-consent__accept {
  color: #fff;
  background: #754526;
}

.analytics-consent__actions button:hover,
.analytics-consent__actions button:focus-visible,
.analytics-consent-settings__actions button:hover,
.analytics-consent-settings__actions button:focus-visible {
  border-color: #4f2c18;
  outline: 3px solid rgba(129, 83, 52, 0.2);
  outline-offset: 2px;
}

.analytics-consent__actions[aria-busy="true"] button {
  cursor: wait;
  opacity: 0.65;
}

.analytics-consent-settings-page {
  min-height: 100vh;
  margin: 0;
  padding: clamp(24px, 7vw, 80px) 18px;
  box-sizing: border-box;
  color: #27201a;
  background: #f5f0e8;
  font-family: Arial, sans-serif;
}

.analytics-consent-settings {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 46px);
  background: #fffdf9;
  border: 1px solid #b89a77;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(45, 31, 19, 0.14);
}

.analytics-consent-settings__kicker {
  margin: 0 0 8px;
  color: #845638;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analytics-consent-settings h1 {
  margin: 0 0 16px;
  color: #5f351d;
  font-size: clamp(1.55rem, 4vw, 2.3rem);
}

.analytics-consent-settings p {
  line-height: 1.65;
}

.analytics-consent-settings__current {
  padding: 12px 14px;
  background: #f6eee4;
  border-radius: 10px;
}

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

.analytics-consent-settings__back {
  display: inline-block;
  margin-top: 22px;
  color: #6f4127;
  font-weight: 700;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .analytics-consent {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

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

@media (max-width: 430px) {
  .analytics-consent__actions {
    grid-template-columns: 1fr;
  }
}

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

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