.fc-consent {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(720px, calc(100% - 24px));
  color: #16132C;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  pointer-events: none;
}
.fc-consent-card {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 18px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(252, 242, 232, 0.96);
  border: 1px solid #e0d5c9;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(22, 19, 44, 0.16);
  backdrop-filter: blur(16px);
}
.fc-consent-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #16132C;
  color: #FCF2E8;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.fc-consent-copy h2 {
  margin: 0 0 4px;
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.fc-consent-copy p {
  margin: 0;
  color: #6b6153;
  font-size: 0.88rem;
  line-height: 1.45;
}
.fc-consent-copy a {
  color: #16132C;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fc-consent-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.fc-consent-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 10px 16px;
  min-height: 42px;
}
.fc-consent-btn.ghost {
  background: transparent;
  color: #16132C;
  border: 1px solid #e0d5c9;
}
.fc-consent-btn.ghost:hover {
  background: #fff;
}
.fc-consent-btn.primary {
  background: #0f0d1f;
  color: #FCF2E8;
}
.fc-consent-btn.primary:hover {
  background: #16132C;
}

html.fc-has-sticky-cta .fc-consent {
  bottom: calc(84px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 640px) {
  .fc-consent {
    width: calc(100% - 16px);
    bottom: max(10px, env(safe-area-inset-bottom));
  }
  .fc-consent-card {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 12px;
  }
  .fc-consent-mark { display: none; }
  .fc-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .fc-consent-btn { width: 100%; }
  html.fc-has-sticky-cta .fc-consent {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }
}
