/* HOZE — bandeau consentement (Consent Mode v2) */
#hoze-consent, #hoze-consent * { box-sizing: border-box; }
#hoze-consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  background: #FFFFFF; border-top: 1px solid #0F0F0F;
  font-family: 'Manrope', system-ui, sans-serif; color: #0F0F0F;
  padding: 24px; display: none;
}
#hoze-consent.is-visible { display: block; }
.hoze-consent__inner { max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px; }
.hoze-consent__text { flex: 1 1 340px; font-size: 14px; line-height: 1.6; margin: 0; }
.hoze-consent__text a { color: #0F0F0F; text-decoration: underline; }
.hoze-consent__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hoze-btn { font-family: inherit; font-size: 14px; font-weight: 600; padding: 12px 22px; border-radius: 0; border: 1px solid #0F0F0F; cursor: pointer; line-height: 1; }
.hoze-btn--solid { background: #0F0F0F; color: #FFFFFF; }
.hoze-btn--outline { background: #FFFFFF; color: #0F0F0F; }
.hoze-btn--link { background: none; border: none; padding: 12px 4px; text-decoration: underline; color: #0F0F0F; }
.hoze-consent__panel { display: none; width: 100%; margin-top: 20px; border-top: 1px solid #E5E5E5; padding-top: 20px; }
#hoze-consent.is-open .hoze-consent__panel { display: block; }
.hoze-cat { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid #F0F0F0; }
.hoze-cat__title { font-size: 14px; font-weight: 600; margin: 0 0 4px; }
.hoze-cat__desc { font-size: 13px; line-height: 1.5; color: #555; margin: 0; }
.hoze-cat__control { flex: 0 0 auto; align-self: center; }
.hoze-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.hoze-switch input { opacity: 0; width: 0; height: 0; }
.hoze-switch__slider { position: absolute; inset: 0; background: #CCCCCC; transition: .2s; }
.hoze-switch__slider::before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px; background: #FFFFFF; transition: .2s; }
.hoze-switch input:checked + .hoze-switch__slider { background: #0F0F0F; }
.hoze-switch input:checked + .hoze-switch__slider::before { transform: translateX(20px); }
.hoze-consent__panel-actions { margin-top: 20px; display: flex; gap: 12px; }
.hoze-cookie-link { background: none; border: none; padding: 0; font: inherit; color: inherit; cursor: pointer; text-decoration: underline; }
@media (max-width: 640px) {
  .hoze-consent__actions { width: 100%; }
  .hoze-btn { flex: 1 1 auto; text-align: center; }
}
