/* BizPlanMagic — Bandeau de consentement cookies (P6). Style sobre & sympa. */

.bpm-consent {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 380px;
  max-width: calc(100vw - 40px);
}
.bpm-consent[hidden] { display: none; }

.bpm-consent-card {
  background: var(--color-white, #fff);
  border: 1px solid var(--color-border, #e8e8e8);
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.16);
  padding: 20px 22px 18px;
  position: relative;
}

.bpm-consent-mascot {
  position: absolute;
  top: -34px;
  right: 16px;
  width: 80px;
  height: auto;
  pointer-events: none;
}

.bpm-consent-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-black, #111);
  margin: 0 0 8px;
  padding-right: 56px;
}

.bpm-consent-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-grey, #666);
  margin: 0 0 14px;
}
.bpm-consent-text a { color: var(--color-orange-dark, #e0750a); text-decoration: underline; }

.bpm-consent-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 14px;
  padding: 12px;
  background: var(--color-light-grey, #f6f6f6);
  border-radius: var(--radius, 10px);
}
.bpm-consent-choices[hidden] { display: none; }

.bpm-consent-toggle {
  display: flex;
  gap: 9px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--color-dark, #2b2b2b);
  cursor: pointer;
}
.bpm-consent-toggle input { margin-top: 2px; flex-shrink: 0; }

.bpm-consent-save { width: 100%; margin-top: 2px; }

.bpm-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bpm-consent-actions .btn {
  flex: 1 1 auto;
  font-size: 0.85rem;
  padding: 10px 12px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .bpm-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    max-width: none;
  }
  .bpm-consent-card { padding: 18px 16px 16px; }
  .bpm-consent-mascot { width: 64px; top: -26px; }
  .bpm-consent-actions .btn { flex: 1 1 100%; }
}
