.pr-btn{display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:0 22px;
  border-radius:10px;
  border:1px solid transparent;
  text-decoration:none!important;
  font-weight:600;
  transition:transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.pr-btn:hover{transform:translateY(-1px)}
.pr-btn--primary{background:linear-gradient(180deg,#ff1528,#dd0b1b);color:#fff!important;}
.pr-btn--primary:hover{}
.pr-btn--ghost{background:#fff;color:var(--pr-navy)!important;border-color:#cfd8e3;}
.pr-btn--ghost:hover{border-color:#aebbc9;color:var(--pr-red)!important}
.pr-card{background:#fff;border:1px solid var(--pr-line);border-radius:var(--pr-radius);}
.pr-section-title{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-bottom:18px}
.pr-section-title h2 {
    margin: 0;
    color: var(--bs-black);
    font-size: 21px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.01em;
}
.pr-section-title a {
    color: var(--bs-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.pr-chip{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;background:#f0f3f8;color:#445267;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.02em}

.pr-toast-zone{position:fixed;top:96px;right:22px;z-index:2147483000;display:grid;gap:12px;width:min(410px,calc(100vw - 28px));pointer-events:none}
.pr-toast{pointer-events:auto;display:grid;grid-template-columns:38px 1fr 34px;gap:12px;align-items:center;padding:13px;border-radius:16px;background:#fff;color:var(--bs-black);border:1px solid var(--pr-line);opacity:1;transition:opacity .2s ease,transform .2s ease;touch-action:pan-y;will-change:transform,opacity}
.pr-toast.is-hiding{opacity:0;transform:translateX(18px)}
.pr-toast__icon{width:38px;height:38px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:#eef4ff;color:#2463eb}
.pr-toast--success .pr-toast__icon{background:#ecfdf3;color:#16a34a}.pr-toast--danger .pr-toast__icon,.pr-toast--error .pr-toast__icon{background:#fff1f2;color:var(--pr-red)}.pr-toast--warning .pr-toast__icon{background:#fff7ed;color:#f97316}
.pr-toast__title{font-size:12px;text-transform:uppercase;font-weight:950;color:var(--pr-muted)}
.pr-toast__message{font-weight:750;line-height:1.35}.pr-toast__close{border:0;background:#f4f6fa;border-radius:10px;width:34px;height:34px;color:var(--pr-muted)}

/* Consentement cookies */
.pr-consent-banner{
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:2147482900;
  width:min(520px,calc(100vw - 36px));
  background:#fff;
  border:1px solid var(--pr-line);
  border-radius:18px;
  padding:18px;
}

.pr-consent-title{
  font-size:16px;
  line-height:1.25;
  font-weight:950;
  margin:0 0 6px;
  color:var(--bs-black);
}

.pr-consent-text{
  color:var(--pr-muted);
  font-size:14px;
  line-height:1.45;
  font-weight:600;
}

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

.pr-btn-consent{
  border:1px solid var(--pr-line);
  border-radius:10px;
  min-height:40px;
  padding:0 14px;
  font-weight:850;
  background:#fff;
  color:var(--bs-black);
}

.pr-btn-consent--primary{
  background:var(--pr-red);
  color:#fff;
  border-color:var(--pr-red);
}

.pr-btn-consent--ghost:hover{
  border-color:#aebbc9;
}

.pr-consent-backdrop{
  position:fixed;
  inset:0;
  background:rgba(7,20,38,.42);
  z-index:2147482910;
}

.pr-consent-modal{
  position:fixed;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  z-index:2147482920;
  width:min(680px,calc(100vw - 30px));
  max-height:min(720px,calc(100vh - 30px));
  overflow:auto;
  background:#fff;
  border-radius:22px;
  border:1px solid var(--pr-line);
}

.pr-consent-modal__header,
.pr-consent-modal__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:18px;
  border-bottom:1px solid var(--pr-line);
}

.pr-consent-modal__footer{
  border-top:1px solid var(--pr-line);
  border-bottom:0;
  justify-content:flex-end;
}

.pr-consent-modal__title{
  font-size:20px;
  margin:0;
  font-weight:950;
}

.pr-consent-close{
  border:0;
  background:#f4f6fa;
  border-radius:12px;
  width:38px;
  height:38px;
  font-size:24px;
}

.pr-consent-modal__body{
  padding:18px;
}

.pr-consent-intro{
  color:var(--pr-muted);
  font-weight:600;
  line-height:1.55;
}

.pr-consent-category{
  border:1px solid var(--pr-line);
  border-radius:14px;
  padding:14px;
  margin-top:12px;
}

.pr-consent-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.pr-consent-name{
  font-size:16px;
  margin:0;
  font-weight:900;
}

.pr-consent-desc{
  margin:6px 0 0;
  color:var(--pr-muted);
  font-size:14px;
}

.pr-consent-always{
  font-size:12px;
  font-weight:900;
  color:#16a34a;
}

.pr-switch input{
  display:none;
}

.pr-switch__slider{
  display:block;
  width:48px;
  height:28px;
  border-radius:999px;
  background:radial-gradient(circle at 14px 50%,#fff 0 11px,transparent 12px),#d7dee8;
  position:relative;
  cursor:pointer;
  transition:background .2s ease;
}

.pr-switch input:checked + .pr-switch__slider{
  background:radial-gradient(circle at 34px 50%,#fff 0 11px,transparent 12px),var(--pr-red);
}

@media(max-width:560px){
  .pr-toast-zone{
    top:82px;
    left:12px;
    right:12px;
    width:auto;
  }

  .pr-consent-banner{
    left:12px;
    right:12px;
    bottom:max(12px, env(safe-area-inset-bottom));
    width:auto;
    max-width:none;
    padding:16px;
    border-radius:18px;
  }

  .pr-consent-title{
    font-size:15px;
    line-height:1.22;
    margin-bottom:6px;
  }

  .pr-consent-text{
    font-size:13px;
    line-height:1.42;
  }

  .pr-consent-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
    margin-top:12px;
  }

  .pr-btn-consent{
    width:100%;
    min-width:0;
    min-height:42px;
    padding:0 10px;
    border-radius:11px;
    font-size:13px;
    line-height:1.1;
    white-space:nowrap;
  }

  .pr-btn-consent--primary{
    grid-column:1 / -1;
    min-height:44px;
    font-size:14px;
  }

  .pr-consent-modal{
    width:calc(100vw - 24px);
    max-height:calc(100vh - 24px);
    border-radius:18px;
  }

  .pr-consent-modal__header,
  .pr-consent-modal__footer,
  .pr-consent-modal__body{
    padding:16px;
  }

  .pr-consent-modal__footer{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
  }

  .pr-consent-modal__footer .pr-btn-consent{
    width:100%;
  }

  .pr-consent-modal__footer .pr-btn-consent--primary{
    grid-column:1 / -1;
  }
}

@media(max-width:360px){
  .pr-consent-banner{
    left:10px;
    right:10px;
    padding:14px;
  }

  .pr-consent-actions{
    gap:8px;
  }

  .pr-btn-consent{
    font-size:12px;
    padding:0 8px;
  }
}

