/* =================================================================
   css-global.css — Day Experience B2B v2
   Chargé via inc_header.cfm sur TOUTES les pages
   Contient : variables, reset, utilitaires, container,
              section-header, jQuery UI reset,
              CTA banner, footer, search panel (#de-dd)
   ================================================================= */

/* ══ VARIABLES ══ */
:root {
  --red:    #D01F3C;
  --red-bg: #fff0f2;
  --ink:    #1a1a2e;
  --muted:  #74748a;
  --border: #eaeaf2;
  --white:  #ffffff;
  --off:    #f6f6fa;
  --gold:   #f5a623;
}

/* ══ RESET MINIMAL ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 10px; -webkit-tap-highlight-color: rgba(0,0,0,0); }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a2e;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.42857143;
}
img { border: 0; max-width: 100%; height: auto; vertical-align: middle; display: block; }
a { color: #D01F3C; text-decoration: none; transition: all .2s ease; outline: none; }
a:hover, a:focus { text-decoration: none; outline: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: bold; line-height: 1.1; color: #1a1a2e; margin: 0; }
p { margin: 0 0 10px; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ══ UTILITAIRES ══ */
.hide        { display: none !important; }
.show        { display: revert !important; } /* revert = reprend le display naturel (block/flex/inline...) */
.text-center { text-align: center !important; }
.text-right  { text-align: right !important; }
.text-left   { text-align: left !important; }
.pull-right  { float: right !important; }
.pull-left   { float: left !important; }
.clearfix::after { content: ''; display: table; clear: both; }
.mrg-t30 { margin-top: 30px; margin-bottom: 0; }
.mrg-t40 { margin-top: 40px; }
.mrg-b10 { margin-bottom: 10px; }
.add_bottom_30 { margin-bottom: 30px; }
.clr-l { clear: left; }

/* ══ CONTAINER ══ */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  box-sizing: border-box;
}

/* ══ SECTIONS (base commune) ══ */
section { padding: 72px 0; background: #fff; }
section[style*="padding-top:0"] { padding-top: 0 !important; }

/* ══ SECTION HEADER (réutilisé sur toutes les pages) ══ */
.section-header { margin-bottom: 36px; }
.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
  font-weight: bold;
}
.section-header p {
  font-size: 14px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}
a.see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: gap .2s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
a.see-all:hover { gap: 10px; color: var(--red); }

/* ══ RESET jQuery UI autocomplete ══ */
.ui-autocomplete,
.ui-autocomplete.ui-widget,
.ui-autocomplete.ui-widget-content,
.ui-autocomplete .ui-menu-item,
.ui-autocomplete .ui-menu-item-wrapper,
.ui-autocomplete .ui-menu-item-wrapper.ui-state-active,
.ui-autocomplete .ui-menu-item-wrapper.ui-state-focus {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
}

/* ══════════════════════════════════════════════════════════════
   SEARCH PANEL #de-dd
   Injecté par csearchindex-new.js — commun à toutes les pages
   qui ont une barre de recherche (header nav + homepage)
══════════════════════════════════════════════════════════════ */
#de-dd {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  right: 0;
  background: #ffffff !important;
  border: 2px solid #D01F3C;
  border-top: none;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  overflow-y: auto;
  max-height: 440px;
  z-index: 999999;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
  font-family: 'Inter', sans-serif;
  color: #1a1a2e !important;
  text-align: left !important;
  font-size: 14px !important;
}
#de-dd::-webkit-scrollbar { width: 4px; }
#de-dd::-webkit-scrollbar-track { background: transparent; }
#de-dd::-webkit-scrollbar-thumb { background: #e0e0e8; border-radius: 2px; }

#de-dd .de-sec {
  display: flex;
  align-items: center;
  padding: 10px 16px 0;
  pointer-events: none;
  background: #ffffff !important;
}
#de-dd .de-sec-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #c8c8d8 !important;
  white-space: nowrap;
  padding-right: 10px;
  font-family: 'Inter', sans-serif;
}
#de-dd .de-sec-line {
  flex: 1;
  height: 1px;
  background: #f0f0f8 !important;
  display: block;
}
#de-dd .de-item {
  display: flex !important;
  align-items: center !important;
  gap: 13px !important;
  padding: 9px 16px !important;
  cursor: pointer !important;
  background: #ffffff !important;
  transition: background .1s;
  width: 100%;
  border: none !important;
  box-shadow: none !important;
}
#de-dd .de-item:hover,
#de-dd .de-item.de-hover { background: #fff0f2 !important; }
#de-dd .de-item.de-last  { margin-bottom: 4px; }
#de-dd .de-icon {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 9px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
#de-dd .de-icon svg { display: block !important; overflow: visible !important; }
#de-dd .de-body { flex: 1 !important; min-width: 0 !important; background: transparent !important; }
#de-dd .de-name {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #1a1a2e !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.35 !important;
  font-family: 'Inter', sans-serif !important;
  background: transparent !important;
}
#de-dd .de-name mark {
  background: none !important;
  color: #D01F3C !important;
  font-weight: 700 !important;
}
#de-dd .de-sub {
  font-size: 11px !important;
  color: #74748a !important;
  margin-top: 1px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-family: 'Inter', sans-serif !important;
  background: transparent !important;
}
#de-dd .de-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 16px !important;
  border-top: 1.5px solid #eaeaf2 !important;
  background: #fafafa !important;
  pointer-events: none !important;
}
#de-dd .de-hint {
  font-size: 11px !important;
  color: #ccc !important;
  display: flex !important;
  gap: 3px !important;
  align-items: center !important;
  font-family: 'Inter', sans-serif !important;
}
#de-dd .de-hint kbd {
  background: #eee !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  padding: 1px 5px !important;
  font-size: 10px !important;
  color: #888 !important;
}
#de-dd .de-all {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #D01F3C !important;
  pointer-events: all !important;
  cursor: pointer !important;
}
#de-dd .de-count {
  font-size: 11px !important;
  color: #b0b0c0 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  margin-left: auto !important;
  padding-left: 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
}
/* Loader recherche */
.de-loading {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #74748a;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}
.de-loading::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid #eaeaf2;
  border-top-color: #D01F3C;
  border-radius: 50%;
  animation: de-spin .6s linear infinite;
  flex-shrink: 0;
}
@keyframes de-spin { to { transform: rotate(360deg); } }


/* ══════════════════════════════════════════════════════════════
   CTA BANNER
   Affiché en bas de toutes les pages avant le footer
══════════════════════════════════════════════════════════════ */
.cta-banner { background: var(--ink); padding: 64px 0; text-align: center; }
.cta-banner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px; color: #fff; margin-bottom: 12px;
  line-height: 1.1; font-weight: 700; text-transform: none;
}
.cta-banner p {
  font-size: 15px; color: rgba(255,255,255,.55);
  margin-bottom: 32px; font-family: 'Inter', sans-serif;
}
.cta-banner-btns {
  display: inline-flex; align-items: center;
  gap: 8px; flex-wrap: wrap; justify-content: center;
}
.cta-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff !important; border: none;
  padding: 15px 36px; border-radius: 100px;
  font-size: 14.5px; font-family: 'Inter', sans-serif; font-weight: 600;
  cursor: pointer; transition: all .22s; text-decoration: none !important; white-space: nowrap;
}
.cta-btn-primary:hover { background: #b01830; transform: scale(1.03); color: #fff !important; }
.cta-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.7) !important;
  border: 1.5px solid rgba(255,255,255,.25);
  padding: 15px 36px; border-radius: 100px;
  font-size: 14.5px; font-family: 'Inter', sans-serif; font-weight: 500;
  cursor: pointer; transition: all .22s; margin-left: 12px;
  text-decoration: none !important; white-space: nowrap;
}
.cta-btn-secondary:hover { border-color: #fff; color: #fff !important; }


/* ══════════════════════════════════════════════════════════════
   FOOTER
   Commun à toutes les pages via inc_footer.cfm
══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--ink); padding: 56px 48px 32px; font-family: 'Inter', sans-serif; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 52px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08); align-items: start;
}
.f-logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'DM Serif Display', serif; font-size: 20px; color: #fff;
  margin-bottom: 10px; text-decoration: none !important;
}
.f-logo-mark {
  width: 30px; height: 30px; background: var(--red);
  border-radius: 50% 50% 50% 0;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.f-logo-mark svg { display: block; }
.f-logo-text { font-family: 'DM Serif Display', serif; font-size: 20px; color: #fff; line-height: 1; font-weight: 400; }
.f-logo-text em, .f-logo em { color: var(--red); font-style: normal; }
.f-desc { font-size: 12.5px !important; color: rgba(255,255,255,.35) !important; line-height: 1.75; margin-bottom: 20px; font-family: 'Inter', sans-serif; }
.f-contact-block { font-size: 12.5px; color: rgba(255,255,255,.45); line-height: 2; display: flex; flex-direction: column; }
.f-contact-block a { font-size: 12.5px !important; color: rgba(255,255,255,.6) !important; text-decoration: none !important; transition: color .18s; }
.f-contact-block a:hover { color: #fff !important; }
.f-contact-hours { font-size: 12.5px !important; color: rgba(255,255,255,.45) !important; line-height: 2; }
.f-newsletter-label { font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,.28); margin: 20px 0 8px; font-family: 'Inter', sans-serif; line-height: 1; }
.f-newsletter-desc { font-size: 12.5px; color: rgba(255,255,255,.35); margin-bottom: 10px; line-height: 1.5; font-family: 'Inter', sans-serif; }
.f-newsletter-form { display: flex; max-width: 280px; }
.f-newsletter-input {
  flex: 1; min-width: 0; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12); border-right: none;
  border-radius: 6px 0 0 6px; padding: 9px 12px;
  font-size: 12.5px; color: #fff; font-family: 'Inter', sans-serif; outline: none;
  box-shadow: none !important; -webkit-appearance: none; height: auto;
}
.f-newsletter-input::placeholder { color: rgba(255,255,255,.25); }
.f-newsletter-input:focus { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.10); }
.f-newsletter-btn {
  background: var(--red); border: 1px solid var(--red);
  border-radius: 0 6px 6px 0; padding: 9px 14px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; flex-shrink: 0;
}
.f-newsletter-btn:hover { background: #b01830; }
.f-newsletter-btn i { color: #fff; font-size: 13px; display: block; line-height: 1; }
.f-newsletter-loader { width: 16px; height: 16px; display: inline-block; vertical-align: middle; }
.f-newsletter-feedback { margin-top: 8px; font-size: 12px; line-height: 1.5; font-family: 'Inter', sans-serif; }
.f-newsletter-error   { color: #ff7070; }
.f-newsletter-success { color: rgba(255,255,255,.45); }
.f-col-heading, .f-heading {
  font-size: 10px !important; font-weight: 700 !important; letter-spacing: 1.8px !important;
  text-transform: uppercase !important; color: rgba(255,255,255,.28) !important;
  margin: 0 0 14px 0 !important; padding: 0 !important;
  font-family: 'Inter', sans-serif !important; line-height: 1 !important;
}
.f-col-links, .f-links { display: flex; flex-direction: column; gap: 9px; margin: 0; padding: 0; }
.f-col-links a, .f-links a {
  font-size: 13px !important; color: rgba(255,255,255,.5) !important;
  text-decoration: none !important; transition: color .18s;
  font-family: 'Inter', sans-serif !important; font-weight: 400 !important; line-height: 1.4;
}
.f-col-links a:hover, .f-links a:hover { color: #fff !important; }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom {
  padding-top: 24px; padding-bottom: 0;
  display: flex; flex-wrap: nowrap; justify-content: space-between;
  align-items: center; gap: 16px;
  font-size: 11px; color: rgba(255,255,255,.25); font-family: 'Inter', sans-serif;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,.25); font-family: 'Inter', sans-serif; white-space: nowrap; }
.footer-bottom-right {
  display: flex; flex-direction: row; flex-wrap: nowrap;
  align-items: center; gap: 6px; white-space: nowrap;
}
.footer-bottom-right a {
  font-size: 11px !important; color: rgba(255,255,255,.25) !important;
  text-decoration: none !important; transition: color .18s;
  font-family: 'Inter', sans-serif !important; white-space: nowrap;
}
.footer-bottom-right a:hover { color: rgba(255,255,255,.6) !important; }
.footer-bottom-right a + a::before {
  content: '·'; color: rgba(255,255,255,.2); margin-right: 6px; display: inline-block;
}
/* Live chat */
.o_livechat_button { z-index: 9999 !important; position: fixed !important; }
.o_livechat_window { z-index: 99999 !important; }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE GLOBAL
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container     { padding: 0 24px; }
  section        { padding: 52px 0; }
  .cta-banner    { padding: 52px 0; }
  .cta-banner h2 { font-size: 34px; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-header h2 { font-size: 32px; }
}

@media (max-width: 768px) {
  .container     { padding: 0 16px; }
  section        { padding: 40px 0; }
  .section-header h2 { font-size: 26px; }
  /* Search panel mobile */
  #de-dd         { border-radius: 0 0 14px 14px; max-height: 360px; }
  .de-item       { padding: 9px 14px !important; gap: 11px !important; }
  .de-icon       { width: 32px !important; height: 32px !important; border-radius: 8px !important; }
  .de-name       { font-size: 13px !important; }
  .de-hint       { display: none !important; }
  /* CTA */
  .cta-banner    { padding: 48px 0; }
  .cta-banner h2 { font-size: 28px; }
  .cta-banner p  { font-size: 13px; padding: 0 16px; }
  .cta-banner-btns { flex-direction: column; align-items: center; gap: 10px; }
  .cta-btn-secondary { margin-left: 0; }
  /* Footer */
  .site-footer   { padding: 40px 0 24px; }
  .footer-top    { grid-template-columns: 1fr; gap: 28px; }
  .f-newsletter-form { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; align-items: center; }
  .footer-bottom-right { justify-content: center; }
}

@media (max-width: 480px) {
  .cta-banner h2 { font-size: 24px; }
  #de-dd         { border-radius: 0 0 12px 12px; max-height: 300px; }
  .de-item       { padding: 8px 12px !important; gap: 10px !important; }
  .de-icon       { width: 30px !important; height: 30px !important; }
  .de-icon svg   { width: 13px !important; height: 13px !important; }
  .de-name       { font-size: 12.5px !important; }
  .de-sub        { font-size: 10.5px !important; }
}/* =================================================================
   HEADER V2 RESPONSIVE — Day Experience B2B
   ================================================================= */

:root {
  --de-red:    #D01F3C;
  --de-ink:    #1a1a2e;
  --de-muted:  #74748a;
  --de-border: #eaeaf2;
  --de-off:    #f6f6fa;
}

/* ══ TOPBAR DESKTOP ══ */
.de-topbar {
  background: #1a1a2e !important;
  color: rgba(255,255,255,.45) !important;
  font-size: 11.5px !important;
  padding: 6px 48px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-family: 'Inter', sans-serif !important;
  box-sizing: border-box !important;
  width: 100% !important;
  line-height: normal !important;
  margin: 0 !important;
}
.de-topbar a              { color: inherit !important; text-decoration: none !important; transition: color .15s !important; }
.de-topbar a:hover        { color: #fff !important; }
.de-topbar strong         { color: rgba(255,255,255,.85) !important; }
.de-topbar-left,
.de-topbar-right          { display: flex !important; align-items: center !important; gap: 22px !important; }
.de-topbar-logout         { color: rgba(255,255,255,.65) !important; font-weight: 500 !important; }

/* ══ TOPBAR MOBILE — caché par défaut ══ */
.de-topbar-mobile {
  display: none !important;
  background: #1a1a2e !important;
  padding: 8px 16px !important;
  flex-direction: column !important;
  gap: 4px !important;
  margin: 0 !important;
}
.de-topbar-mobile-line1 {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-size: 12px !important;
  color: rgba(255,255,255,.85) !important;
  font-family: 'Inter', sans-serif !important;
}
.de-topbar-mobile-line1 strong { color: #fff !important; }
.de-topbar-mobile-line2 {
  display: flex !important;
  gap: 12px !important;
  font-size: 11px !important;
  color: rgba(255,255,255,.45) !important;
  font-family: 'Inter', sans-serif !important;
}
.de-topbar-mobile-line2 a,
.de-topbar-mobile-line1 a { color: inherit !important; text-decoration: none !important; }

/* ══ NAV PRINCIPALE ══
   PAS de all:unset — reset propriété par propriété uniquement
   ================================================================= */
header.de-nav,
header.de-nav.bg_home {
  /* Layout */
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  gap: 28px !important;
  /* Dimensions */
  height: 64px !important;
  padding: 0 48px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  /* Visuel */
  background: #ffffff !important;
  background-image: none !important;
  border-bottom: 1px solid #eaeaf2 !important;
  box-shadow: none !important;
  /* Position sticky */
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 300 !important;
  /* Typo */
  font-family: 'Inter', sans-serif !important;
  /* Reset Bootstrap spécifique */
  margin: 0 !important;
  min-height: unset !important;
  border-radius: 0 !important;
  float: none !important;
}

/* Cacher container Bootstrap si injecté */
header.de-nav > .container,
header.de-nav > .container-fluid {
  display: none !important;
}

/* ── Logo ── */
.de-logo {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.de-logo-icon {
  height: 42px !important;
  width: auto !important;
  display: block !important;
  max-width: none !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
  /* reset Bootstrap img */
  vertical-align: middle !important;
  border: 0 !important;
}
.de-logo-mark {
  width: 32px !important;
  height: 32px !important;
  background: #D01F3C !important;
  border-radius: 50% 50% 50% 0 !important;
  display: grid !important;
  place-items: center !important;
  color: #fff !important;
  font-size: 14px !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}
.de-logo-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1 !important;
}
.de-logo-name {
  font-family: 'Inter', sans-serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  line-height: 1.15 !important;
}
.de-logo-name em { color: #D01F3C !important; font-style: normal !important; }
.de-logo-sub {
  font-size: 9px !important;
  font-family: 'Inter', sans-serif !important;
  color: #74748a !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
  margin-top: 3px !important;
  font-weight: 400 !important;
}

/* ── Barre de recherche ── */
.de-nav-search-wrap {
  flex: 1 !important;
  max-width: 380px !important;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
}
form.de-nav-search {
  width: 100% !important;
  position: relative !important;
  background: #f6f6fa !important;
  border: 1.5px solid #eaeaf2 !important;
  border-radius: 10px !important;
  padding: 0 40px 0 14px !important;
  height: 40px !important;
  margin: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  transition: border-color .2s !important;
  box-sizing: border-box !important;
}
form.de-nav-search:focus-within {
  border-color: #D01F3C !important;
  background: #fff !important;
}
form.de-nav-search input[type="text"],
form.de-nav-search input.ui-autocomplete-input {
  /* reset Bootstrap form-control */
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  flex: 1 !important;
  border: none !important;
  background: transparent !important;
  font-size: 13px !important;
  font-family: 'Inter', sans-serif !important;
  color: #1a1a2e !important;
  outline: none !important;
  height: 100% !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  display: block !important;
  line-height: normal !important;
}
form.de-nav-search input::placeholder { color: #74748a !important; opacity: 1 !important; }
.ui-autocomplete-input { box-shadow: none !important; border: none !important; background: transparent !important; }

.de-nav-search-btn {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 40px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  color: #74748a !important;
  font-size: 15px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: color .18s !important;
}
.de-nav-search-btn:hover { color: #D01F3C !important; }

/* ── Nav droite ── */
nav.de-nav-right {
  display: flex !important;
  align-items: center !important;
  float: none !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
  gap: 4px !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  position: static !important;
}

/* ── ul#top_tools ── */
ul#top_tools.de-nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  position: static !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  min-width: unset !important;
  width: auto !important;
  /* reset Bootstrap navbar-nav */
  flex-direction: row !important;
}
ul#top_tools.de-nav-links > li {
  float: none !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-bottom: none !important;
  background: none !important;
  position: static !important;
}
ul#top_tools.de-nav-links > li > a,
ul#top_tools.de-nav-links > li > a.dropdown-toggle {
  color: #74748a !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  padding: 7px 10px !important;
  border-radius: 8px !important;
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  background: none !important;
  border: none !important;
  line-height: normal !important;
  height: auto !important;
  font-family: 'Inter', sans-serif !important;
  transition: color .18s, background .18s !important;
  outline: none !important;
  margin: 0 !important;
}
/* Supprimer caret Bootstrap sur dropdown-toggle */
ul#top_tools.de-nav-links > li > a.dropdown-toggle::after,
ul#top_tools.de-nav-links > li > a.dropdown-toggle::before {
  display: none !important;
}
ul#top_tools.de-nav-links > li > a:hover,
ul#top_tools.de-nav-links > li > a.active-link {
  color: #1a1a2e !important;
  background: #f6f6fa !important;
}

/* ── Bouton Panier rouge ── */
ul#top_tools.de-nav-links a.de-cart-btn,
ul#top_tools.de-nav-links a.de-cart-btn.dropdown-toggle {
  background: #D01F3C !important;
  color: #fff !important;
  padding: 8px 15px !important;
  border-radius: 9px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}
ul#top_tools.de-nav-links a.de-cart-btn:hover { background: #b01830 !important; color: #fff !important; }

/* ── Dropdown panier ── */
ul#top_tools .dropdown-menu.drop-mn-head {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  z-index: 400 !important;
  min-width: 280px !important;
}

/* ══ HAMBURGER ══ */
.de-hamburger {
  display: none !important; /* caché desktop, affiché mobile via media query */
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  width: 40px !important;
  height: 40px !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 4px !important;
  border-radius: 8px !important;
  flex-shrink: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.de-hamburger span {
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  background: #1a1a2e !important;
  border-radius: 2px !important;
  transition: transform .3s, opacity .3s !important;
  transform-origin: center !important;
}
.de-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
.de-hamburger.open span:nth-child(2) { opacity: 0 !important; }
.de-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

/* ══ DRAWER MOBILE ══ */
.de-mobile-drawer {
  position: fixed !important;
  top: 0 !important;
  right: -100% !important;
  width: 80% !important;
  max-width: 320px !important;
  height: 100% !important;
  background: #fff !important;
  z-index: 500 !important;
  transition: right .3s cubic-bezier(.4,0,.2,1) !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: -4px 0 32px rgba(0,0,0,.15) !important;
  /* CRITIQUE: cacher par défaut même si Bootstrap force display:block */
  visibility: visible !important;
}
.de-mobile-drawer-inner {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  padding-top: 80px !important;
  overflow-y: auto !important;
}
.de-mobile-nav-links {
  list-style: none !important;
  padding: 0 0 16px !important;
  border-bottom: 1px solid #eaeaf2 !important;
  margin: 0 0 16px !important;
}
.de-mobile-nav-links li a {
  display: block !important;
  padding: 14px 24px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #1a1a2e !important;
  text-decoration: none !important;
  transition: background .15s, color .15s !important;
  font-family: 'Inter', sans-serif !important;
}
.de-mobile-nav-links li a:hover { background: #f6f6fa !important; color: #D01F3C !important; }
.de-mobile-cart { color: #D01F3C !important; font-weight: 600 !important; }
.de-mobile-drawer-footer {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 24px 32px !important;
  gap: 10px !important;
}
.de-mobile-drawer-footer a {
  font-size: 13px !important;
  color: #74748a !important;
  text-decoration: none !important;
  font-family: 'Inter', sans-serif !important;
}
.de-mobile-logout { color: #D01F3C !important; font-weight: 600 !important; margin-top: 8px !important; }

/* ── Overlay ── */
.de-mobile-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,.45) !important;
  z-index: 499 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity .3s !important;
}
.de-mobile-overlay.open { opacity: 1 !important; pointer-events: auto !important; }

/* ══ RESPONSIVE TABLETTE ══ */
@media (max-width: 1024px) {
  .de-topbar { padding: 6px 24px !important; }
  header.de-nav { padding: 0 24px !important; gap: 16px !important; }
  ul#top_tools.de-nav-links > li > a { padding: 7px 8px !important; font-size: 12px !important; }
}

/* ══ RESPONSIVE MOBILE ══ */
@media (max-width: 768px) {
  .de-topbar { display: none !important; }
  .de-topbar-mobile { display: flex !important; }
  header.de-nav { padding: 0 16px !important; height: 56px !important; }
  .de-logo-sub { display: none !important; }
  ul#top_tools.de-nav-links { display: none !important; }
  .de-hamburger { display: flex !important; }
  .de-nav-search-wrap { display: none !important; }
}
/* ══════════════════════════════════════
   PANIER POPUP — pixel perfect maquette
   ══════════════════════════════════════ */

/* Bouton panier dans nav */
button.de-cart-btn {
  background: #D01F3C !important;
  color: #fff !important;
  padding: 8px 15px !important;
  border-radius: 9px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  font-family: 'Inter', sans-serif !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
  transition: background .18s !important;
  position: relative !important;
}
button.de-cart-btn:hover,
button.de-cart-btn.open { background: #b01830 !important; }

/* Position du li parent */
li.de-cart-dropdown { position: relative !important; }

/* Popup — caché par défaut, animation */
.de-cart-popup {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  width: 340px !important;
  background: #fff !important;
  border: 1px solid #eaeaf2 !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(26,26,46,.13) !important;
  z-index: 600 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transform: translateY(-6px) !important;
  pointer-events: none !important;
  transition: opacity .2s ease, transform .2s ease !important;
  font-family: 'Inter', sans-serif !important;
}
.de-cart-popup.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

/* Header popup */
.de-popup-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid #eaeaf2 !important;
}
.de-popup-title {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1a1a2e !important;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
}
.de-popup-close {
  background: none !important; border: none !important; cursor: pointer !important;
  color: #74748a !important; font-size: 18px !important; line-height: 1 !important;
  width: 28px !important; height: 28px !important; border-radius: 7px !important;
  display: grid !important; place-items: center !important;
  transition: background .15s, color .15s !important; padding: 0 !important;
}
.de-popup-close:hover { background: #f6f6fa !important; color: #1a1a2e !important; }

/* Liste articles */
.de-popup-items {
  max-height: 260px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}
.de-popup-items::-webkit-scrollbar { width: 4px; }
.de-popup-items::-webkit-scrollbar-thumb { background: #eaeaf2; border-radius: 4px; }

/* Article individuel */
.de-popup-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 20px !important;
  border-bottom: 1px solid #eaeaf2 !important;
  transition: background .15s !important;
  background: #fff !important;
}
.de-popup-item:hover { background: #f6f6fa !important; }
.de-popup-item:last-child { border-bottom: none !important; }

/* Image produit */
.de-popup-item-img {
  width: 56px !important;
  height: 46px !important;
  border-radius: 8px !important;
  background-size: cover !important;
  background-position: center !important;
  background-color: #eaeaf2 !important;
  flex-shrink: 0 !important;
  display: block !important;
  text-decoration: none !important;
}

/* Info produit — min-width:0 OBLIGATOIRE pour que ellipsis bloque avant le prix */
.de-popup-item-info {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}
.de-popup-item-name {
  display: block !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: #1a1a2e !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  line-height: 1.35 !important;
  margin-bottom: 2px !important;
}
.de-popup-item-name:hover { color: #D01F3C !important; }

/* Prix — ne rétrécit jamais, toujours visible */
.de-popup-item-price {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  flex-shrink: 0 !important;
  margin-right: 4px !important;
}

/* Bouton corbeille — maquette : icône discrète grise */
.de-popup-item-del {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  color: #c0c0cc !important;
  font-size: 15px !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 6px !important;
  display: grid !important;
  place-items: center !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  transition: color .15s, background .15s !important;
}
.de-popup-item-del:hover { color: #D01F3C !important; background: #fff0f2 !important; }

/* Footer */
.de-popup-footer {
  padding: 16px 20px !important;
  border-top: 1px solid #eaeaf2 !important;
  background: #fff !important;
}

/* Prix net + commission */
.de-popup-price-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-size: 12.5px !important;
  color: #74748a !important;
  margin-bottom: 4px !important;
}
.de-popup-price-row span { font-weight: 500 !important; color: #1a1a2e !important; }
.de-popup-price-row span.commission { color: #D01F3C !important; }
.de-popup-divider { height: 1px !important; background: #eaeaf2 !important; margin: 10px 0 !important; }

/* Total */
.de-popup-total {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  margin-bottom: 14px !important;
}
.de-popup-total-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1a1a2e !important;
}
/* Total — style italic DM Serif + underline SVG manuscrit comme maquette */
.de-popup-total-amount {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  line-height: 1 !important;
}
.de-popup-total-number {
  font-family: 'DM Serif Display', serif !important;
  font-style: italic !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  color: #D01F3C !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}
.de-popup-total-number label {
  font: inherit !important;
  color: inherit !important;
  cursor: default !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Bouton Continuer */
.de-popup-btn-outline {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  background: #fff !important;
  color: #1a1a2e !important;
  border: 1.5px solid #eaeaf2 !important;
  border-radius: 9px !important;
  padding: 11px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  text-decoration: none !important;
  margin-bottom: 8px !important;
  box-sizing: border-box !important;
  transition: border-color .2s, background .2s !important;
  cursor: pointer !important;
}
.de-popup-btn-outline:hover { border-color: #1a1a2e !important; background: #f6f6fa !important; color: #1a1a2e !important; }

/* Bouton Réserver */
.de-popup-btn-red {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  background: #D01F3C !important;
  color: #fff !important;
  border: none !important;
  border-radius: 9px !important;
  padding: 13px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  font-family: 'Inter', sans-serif !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  transition: background .2s !important;
  letter-spacing: .2px !important;
  cursor: pointer !important;
}
.de-popup-btn-red:hover { background: #b01830 !important; color: #fff !important; }

/* Panier vide */
.de-popup-empty {
  padding: 40px 20px !important;
  text-align: center !important;
}
.de-popup-empty-icon {
  font-size: 42px !important;
  opacity: .18 !important;
  margin-bottom: 14px !important;
  display: block !important;
}
.de-popup-empty-title {
  font-family: 'DM Serif Display', 'Inter', serif !important;
  font-size: 20px !important;
  color: #1a1a2e !important;
  margin-bottom: 6px !important;
}
.de-popup-empty-sub {
  font-size: 13px !important;
  color: #74748a !important;
  line-height: 1.5 !important;
}

/* Mobile */
@media (max-width: 768px) {
  .de-cart-popup {
    position: fixed !important;
    top: 56px !important;
    right: 0 !important; left: 0 !important;
    width: 100% !important;
    border-radius: 0 0 16px 16px !important;
    border-left: none !important; border-right: none !important;
    max-height: 88vh !important; overflow-y: auto !important;
  }
}
/* ══ BOUTON PANIER — style maquette exact ══ */

/* Bouton : gris par défaut, rouge quand ouvert */
button.de-cart-btn {
  position: relative !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #74748a !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  font-family: 'Inter', sans-serif !important;
  padding: 7px 12px !important;
  border-radius: 9px !important;
  transition: color .18s, background .18s !important;
  white-space: nowrap !important;
}
button.de-cart-btn:hover {
  color: #1a1a2e !important;
  background: #f6f6fa !important;
}
button.de-cart-btn.open {
  background: #D01F3C !important;
  color: #fff !important;
}
button.de-cart-btn.open .de-cart-badge {
  background: #fff !important;
  color: #D01F3C !important;
}

/* Icône panier */
.de-cart-icon {
  font-size: 16px !important;
  line-height: 1 !important;
}

/* Badge rond rouge */
.de-cart-badge {
  background: #D01F3C !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  min-width: 18px !important;
  height: 18px !important;
  border-radius: 9px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 4px !important;
  transition: background .18s, color .18s !important;
  font-family: 'Inter', sans-serif !important;
}

/* Espacement nav links */
ul#top_tools.de-nav-links {
  gap: 4px !important;
}
ul#top_tools.de-nav-links > li > a {
  padding: 7px 11px !important;
}

/* Position popup */
li.de-cart-dropdown { position: relative !important; }
ul#top_tools.de-nav-links,
nav.de-nav-right,
header.de-nav { overflow: visible !important; }

.de-cart-popup {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  left: auto !important;
  width: 340px !important;
  max-width: calc(100vw - 16px) !important;
  background: #fff !important;
  border: 1px solid #eaeaf2 !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(26,26,46,.13) !important;
  z-index: 9999 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  pointer-events: none !important;
  transition: opacity .2s ease, transform .2s ease !important;
  font-family: 'Inter', sans-serif !important;
}
.de-cart-popup.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
/* ══ PANIER POPUP — position fixed + style maquette ══ */
header.de-nav,
nav.de-nav-right,
ul#top_tools.de-nav-links { overflow: visible !important; }

.de-cart-popup {
  position: fixed !important;
  width: 340px !important;
  max-width: calc(100vw - 16px) !important;
  background: #fff !important;
  border: 1px solid #eaeaf2 !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(26,26,46,.13) !important;
  z-index: 9999 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  pointer-events: none !important;
  transition: opacity .2s ease, transform .2s ease !important;
  font-family: 'Inter', sans-serif !important;
}
.de-cart-popup.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
.de-popup-header {
  display: flex !important; align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important; border-bottom: 1px solid #eaeaf2 !important;
}
.de-popup-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important; font-weight: 600 !important; color: #1a1a2e !important;
}
.de-popup-close {
  background: none !important; border: none !important; cursor: pointer !important;
  color: #74748a !important; font-size: 18px !important;
  width: 28px !important; height: 28px !important; border-radius: 7px !important;
  display: grid !important; place-items: center !important; padding: 0 !important;
  transition: background .15s, color .15s !important;
}
.de-popup-close:hover { background: #f6f6fa !important; color: #1a1a2e !important; }

.de-popup-items { max-height: 280px !important; overflow-y: auto !important; }
.de-popup-items::-webkit-scrollbar { width: 4px; }
.de-popup-items::-webkit-scrollbar-thumb { background: #eaeaf2; border-radius: 4px; }

.de-popup-item {
  display: flex !important; align-items: center !important; gap: 12px !important;
  padding: 12px 20px !important; border-bottom: 1px solid #eaeaf2 !important;
  transition: background .15s !important;
}
.de-popup-item:hover { background: #f6f6fa !important; }
.de-popup-item:last-child { border-bottom: none !important; }

.de-popup-item-img {
  width: 54px !important; height: 44px !important; border-radius: 8px !important;
  background-size: cover !important; background-position: center !important;
  background-color: #eaeaf2 !important; flex-shrink: 0 !important;
  display: block !important; text-decoration: none !important;
}
.de-popup-item-info { flex: 1 !important; min-width: 0 !important; }
.de-popup-item-name {
  display: block !important; font-family: 'Inter', sans-serif !important;
  font-size: 12.5px !important; font-weight: 600 !important; color: #1a1a2e !important;
  text-decoration: none !important; white-space: nowrap !important;
  overflow: hidden !important; text-overflow: ellipsis !important;
  line-height: 1.35 !important; margin-bottom: 2px !important;
}
.de-popup-item-name:hover { color: #D01F3C !important; }
.de-popup-item-qty {
  font-family: 'Inter', sans-serif !important;
  font-size: 11.5px !important; font-weight: 400 !important; color: #74748a !important;
}
.de-popup-item-price {
  font-family: 'Inter', sans-serif !important;
  font-size: 12.5px !important; font-weight: 700 !important; color: #1a1a2e !important;
  white-space: nowrap !important; flex-shrink: 0 !important; margin-right: 6px !important;
}
a.de-popup-item-del, button.de-popup-item-del {
  display: flex !important; align-items: center !important; justify-content: center !important;
  width: 26px !important; height: 26px !important; border-radius: 6px !important;
  color: #c0c0cc !important; font-size: 14px !important; flex-shrink: 0 !important;
  cursor: pointer !important; text-decoration: none !important;
  background: none !important; border: none !important;
  transition: color .15s, background .15s !important;
}
a.de-popup-item-del:hover, button.de-popup-item-del:hover {
  color: #D01F3C !important; background: #fff0f2 !important;
}
a.de-popup-item-del i, button.de-popup-item-del i { color: inherit !important; }

.de-popup-footer { padding: 16px 20px !important; border-top: 1px solid #eaeaf2 !important; }
.de-price-row {
  display: flex !important; justify-content: space-between !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12.5px !important; color: #74748a !important; margin-bottom: 4px !important;
}
.de-price-row span:last-child { font-weight: 500 !important; color: #1a1a2e !important; }
.de-price-divider { height: 1px !important; background: #eaeaf2 !important; margin: 10px 0 !important; }
.de-total-client {
  display: flex !important; justify-content: space-between !important;
  align-items: baseline !important; margin-bottom: 14px !important;
}
.de-total-client-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important; font-weight: 600 !important; color: #1a1a2e !important;
}
.de-total-client-amount {
  font-family: 'DM Serif Display', serif !important;
  font-size: 26px !important; font-weight: 400 !important;
  color: #D01F3C !important; line-height: 1 !important;
}
.de-total-client-amount em {
  font-family: 'DM Serif Display', serif !important;
  font-size: 16px !important; font-style: normal !important; color: #D01F3C !important;
}
.de-popup-btn-outline {
  display: block !important; width: 100% !important; text-align: center !important;
  background: transparent !important; color: #1a1a2e !important;
  border: 1.5px solid #eaeaf2 !important; border-radius: 9px !important;
  padding: 11px !important; font-size: 13px !important; font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important; text-decoration: none !important;
  margin-bottom: 8px !important; box-sizing: border-box !important;
  transition: border-color .2s, background .2s !important;
}
.de-popup-btn-outline:hover { border-color: #1a1a2e !important; background: #f6f6fa !important; color: #1a1a2e !important; }
.de-popup-btn-red {
  display: block !important; width: 100% !important; text-align: center !important;
  background: #D01F3C !important; color: #fff !important; border: none !important;
  border-radius: 9px !important; padding: 13px !important;
  font-size: 13.5px !important; font-weight: 700 !important;
  font-family: 'Inter', sans-serif !important; text-decoration: none !important;
  box-sizing: border-box !important; transition: background .2s !important;
}
.de-popup-btn-red:hover { background: #b01830 !important; color: #fff !important; }
.de-popup-empty { padding: 40px 20px !important; text-align: center !important; }
.de-popup-empty-icon { font-size: 40px !important; opacity: .2 !important; margin-bottom: 14px !important; display: block !important; }
.de-popup-empty-title {
  font-family: 'DM Serif Display', serif !important;
  font-size: 20px !important; color: #1a1a2e !important; margin-bottom: 6px !important;
}
.de-popup-empty-sub {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important; color: #74748a !important; line-height: 1.5 !important;
}
button.de-cart-btn {
  position: relative !important; background: none !important; border: none !important;
  cursor: pointer !important; display: flex !important; align-items: center !important;
  gap: 6px !important; color: #74748a !important; font-size: 13px !important;
  font-weight: 500 !important; font-family: 'Inter', sans-serif !important;
  padding: 7px 12px !important; border-radius: 9px !important;
  transition: color .18s, background .18s !important; white-space: nowrap !important;
}
button.de-cart-btn:hover { color: #1a1a2e !important; background: #f6f6fa !important; }
button.de-cart-btn.open { background: #D01F3C !important; color: #fff !important; }
button.de-cart-btn.open .de-cart-badge { background: #fff !important; color: #D01F3C !important; }
.de-cart-icon { font-size: 16px !important; line-height: 1 !important; }
.de-cart-badge {
  background: #D01F3C !important; color: #fff !important;
  font-size: 10px !important; font-weight: 700 !important;
  min-width: 18px !important; height: 18px !important; border-radius: 9px !important;
  display: grid !important; place-items: center !important; padding: 0 4px !important;
  transition: background .18s, color .18s !important;
}
@media (max-width: 768px) {
  .de-cart-popup {
    position: fixed !important; top: 56px !important;
    left: 8px !important; right: 8px !important; width: auto !important;
    border-radius: 12px !important; max-height: 88vh !important; overflow-y: auto !important;
  }
}
/* ══ PANIER POPUP — position absolute simple ══ */
li.de-cart-dropdown {
  position: relative !important;
}
header.de-nav,
nav.de-nav-right,
ul#top_tools.de-nav-links {
  overflow: visible !important;
}
.de-cart-popup {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  left: auto !important;
  width: 340px !important;
  background: #fff !important;
  border: 1px solid #eaeaf2 !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(26,26,46,.13) !important;
  z-index: 9999 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  pointer-events: none !important;
  transition: opacity .2s ease, transform .2s ease !important;
  font-family: 'Inter', sans-serif !important;
}
.de-cart-popup.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

/* Force overflow visible sur toute la chaîne parente */
header.de-nav,
header.de-nav *:not(.de-cart-popup):not(.de-popup-items) {
  overflow: visible !important;
}
.de-popup-items {
  overflow-y: auto !important;
}
/* ══ POPUP PANIER — positionnement correct ══ */

/* Chaîne parente : overflow visible obligatoire */
header.de-nav,
nav.de-nav-right,
ul#top_tools.de-nav-links,
ul#top_tools.de-nav-links > li.de-cart-dropdown {
  overflow: visible !important;
}

/* Le li parent est l'ancre de positionnement */
ul#top_tools.de-nav-links > li.de-cart-dropdown {
  position: relative !important;
}

/* Popup */
.de-cart-popup {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  left: auto !important;
  width: 340px !important;
  max-width: calc(100vw - 16px) !important;
  background: #fff !important;
  border: 1px solid #eaeaf2 !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(26,26,46,.13) !important;
  z-index: 9999 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  pointer-events: none !important;
  transition: opacity .2s ease, transform .2s ease !important;
  font-family: 'Inter', sans-serif !important;
}
.de-cart-popup.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

/* ── Header popup ── */
.de-popup-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid #eaeaf2 !important;
}
.de-popup-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1a1a2e !important;
}
.de-popup-close {
  background: none !important; border: none !important; cursor: pointer !important;
  color: #74748a !important; font-size: 18px !important;
  width: 28px !important; height: 28px !important; border-radius: 7px !important;
  display: grid !important; place-items: center !important; padding: 0 !important;
  transition: background .15s, color .15s !important;
}
.de-popup-close:hover { background: #f6f6fa !important; color: #1a1a2e !important; }

/* ── Items ── */
.de-popup-items {
  max-height: 280px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}
.de-popup-items::-webkit-scrollbar { width: 4px; }
.de-popup-items::-webkit-scrollbar-thumb { background: #eaeaf2; border-radius: 4px; }

.de-popup-item {
  display: flex !important; align-items: center !important; gap: 12px !important;
  padding: 12px 20px !important; border-bottom: 1px solid #eaeaf2 !important;
  transition: background .15s !important;
}
.de-popup-item:hover { background: #f6f6fa !important; }
.de-popup-item:last-child { border-bottom: none !important; }

.de-popup-item-img {
  width: 54px !important; height: 44px !important; border-radius: 8px !important;
  background-size: cover !important; background-position: center !important;
  background-color: #eaeaf2 !important; flex-shrink: 0 !important;
  display: block !important; text-decoration: none !important;
}
.de-popup-item-info { flex: 1 !important; min-width: 0 !important; }
.de-popup-item-name {
  display: block !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12.5px !important; font-weight: 600 !important; color: #1a1a2e !important;
  text-decoration: none !important; white-space: nowrap !important;
  overflow: hidden !important; text-overflow: ellipsis !important;
  line-height: 1.35 !important; margin-bottom: 2px !important;
}
.de-popup-item-name:hover { color: #D01F3C !important; }
.de-popup-item-qty {
  font-family: 'Inter', sans-serif !important;
  font-size: 11.5px !important; font-weight: 400 !important; color: #74748a !important;
}
.de-popup-item-price {
  font-family: 'Inter', sans-serif !important;
  font-size: 12.5px !important; font-weight: 700 !important; color: #1a1a2e !important;
  white-space: nowrap !important; flex-shrink: 0 !important; margin-right: 6px !important;
}
a.de-popup-item-del, button.de-popup-item-del {
  display: flex !important; align-items: center !important; justify-content: center !important;
  width: 26px !important; height: 26px !important; border-radius: 6px !important;
  color: #c0c0cc !important; font-size: 14px !important; flex-shrink: 0 !important;
  cursor: pointer !important; text-decoration: none !important;
  background: none !important; border: none !important;
  transition: color .15s, background .15s !important;
}
a.de-popup-item-del:hover, button.de-popup-item-del:hover {
  color: #D01F3C !important; background: #fff0f2 !important;
}
a.de-popup-item-del i, button.de-popup-item-del i { color: inherit !important; }

/* ── Footer ── */
.de-popup-footer {
  padding: 16px 20px !important;
  border-top: 1px solid #eaeaf2 !important;
}
.de-price-row {
  display: flex !important; justify-content: space-between !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12.5px !important; color: #74748a !important; margin-bottom: 4px !important;
}
.de-price-row span:last-child { font-weight: 500 !important; color: #1a1a2e !important; }
.de-price-divider { height: 1px !important; background: #eaeaf2 !important; margin: 10px 0 !important; }

.de-total-client {
  display: flex !important; justify-content: space-between !important;
  align-items: baseline !important; margin-bottom: 14px !important;
}
.de-total-client-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important; font-weight: 600 !important; color: #1a1a2e !important;
}
.de-total-client-amount {
  font-family: 'DM Serif Display', serif !important;
  font-size: 26px !important; color: #D01F3C !important; line-height: 1 !important;
}
.de-total-client-amount em {
  font-size: 16px !important; font-style: normal !important; color: #D01F3C !important;
}

.de-popup-btn-outline {
  display: block !important; width: 100% !important; text-align: center !important;
  background: transparent !important; color: #1a1a2e !important;
  border: 1.5px solid #eaeaf2 !important; border-radius: 9px !important;
  padding: 11px !important; font-size: 13px !important; font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important; text-decoration: none !important;
  margin-bottom: 8px !important; box-sizing: border-box !important;
  transition: border-color .2s, background .2s !important;
}
.de-popup-btn-outline:hover {
  border-color: #1a1a2e !important; background: #f6f6fa !important; color: #1a1a2e !important;
}
.de-popup-btn-red {
  display: block !important; width: 100% !important; text-align: center !important;
  background: #D01F3C !important; color: #fff !important; border: none !important;
  border-radius: 9px !important; padding: 13px !important;
  font-size: 13.5px !important; font-weight: 700 !important;
  font-family: 'Inter', sans-serif !important; text-decoration: none !important;
  box-sizing: border-box !important; transition: background .2s !important;
  letter-spacing: .2px !important;
}
.de-popup-btn-red:hover { background: #b01830 !important; color: #fff !important; }

/* ── Panier vide ── */
.de-popup-empty { padding: 40px 20px !important; text-align: center !important; }
.de-popup-empty-icon {
  font-size: 40px !important; opacity: .2 !important;
  margin-bottom: 14px !important; display: block !important;
}
.de-popup-empty-title {
  font-family: 'DM Serif Display', serif !important;
  font-size: 20px !important; color: #1a1a2e !important; margin-bottom: 6px !important;
}
.de-popup-empty-sub {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important; color: #74748a !important; line-height: 1.5 !important;
}

/* ── Bouton panier nav ── */
button.de-cart-btn {
  position: relative !important; background: none !important; border: none !important;
  cursor: pointer !important; display: flex !important; align-items: center !important;
  gap: 6px !important; color: #74748a !important; font-size: 13px !important;
  font-weight: 500 !important; font-family: 'Inter', sans-serif !important;
  padding: 7px 12px !important; border-radius: 9px !important;
  transition: color .18s, background .18s !important; white-space: nowrap !important;
}
button.de-cart-btn:hover { color: #1a1a2e !important; background: #f6f6fa !important; }
button.de-cart-btn.open { background: #D01F3C !important; color: #fff !important; }
button.de-cart-btn.open .de-cart-badge { background: #fff !important; color: #D01F3C !important; }
.de-cart-icon { font-size: 16px !important; line-height: 1 !important; }
.de-cart-badge {
  background: #D01F3C !important; color: #fff !important;
  font-size: 10px !important; font-weight: 700 !important;
  min-width: 18px !important; height: 18px !important; border-radius: 9px !important;
  display: grid !important; place-items: center !important; padding: 0 4px !important;
  transition: background .18s, color .18s !important;
}

/* Mobile */
@media (max-width: 768px) {
  .de-cart-popup {
    position: fixed !important; top: 56px !important;
    left: 8px !important; right: 8px !important; width: auto !important;
    border-radius: 12px !important;
  }
}
/* ══════════════════════════════════════════════════
   DROPDOWN RECHERCHE HEADER — #de-dd-hdr
   position: fixed — positionné via JS pour éviter
   tout clipping par overflow du header
   Style pixel-perfect maquette search-bar-final
   ══════════════════════════════════════════════════ */

/* Panel principal — fixed pour échapper au header */
#de-dd-hdr {
  position: fixed !important;
  /* top / left / width positionnés dynamiquement par JS */
  background: #fff;
  border: 2px solid #D01F3C;
  border-top: 1px solid #f0f0f4;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 16px 40px rgba(26,26,46,.18);
  z-index: 99999;
  display: none;
  font-family: 'Inter', sans-serif;
  /* Pas de overflow:hidden ici — le scroll est sur .dd-scroll */
}

/* Form ouverte : coins carrés en bas + border bottom light */
form#frm-moteur.de-open {
  border-radius: 10px 10px 0 0 !important;
  border-color: #D01F3C !important;
  border-bottom-color: #f0f0f4 !important;
  background: #fff !important;
}

/* Zone scrollable — hauteur limitée, scroll interne */
#de-dd-hdr .dd-scroll {
  max-height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
}
#de-dd-hdr .dd-scroll::-webkit-scrollbar { width: 4px; }
#de-dd-hdr .dd-scroll::-webkit-scrollbar-thumb { background: #eaeaf2; border-radius: 4px; }

/* ── Séparateur de section ── */
#de-dd-hdr .de-sec {
  display: flex;
  align-items: center;
  padding: 10px 16px 0;
}
#de-dd-hdr .de-sec-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #c8c8d8;
  white-space: nowrap;
  padding-right: 10px;
}
#de-dd-hdr .de-sec-line {
  flex: 1;
  height: 1px;
  background: #f0f0f8;
}

/* ── Item ── */
#de-dd-hdr .de-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background .1s;
}
#de-dd-hdr .de-item:hover  { background: #fafafa; }
#de-dd-hdr .de-item.de-last { margin-bottom: 4px; }

/* ── Icône ── */
#de-dd-hdr .de-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Corps texte ── */
#de-dd-hdr .de-body { flex: 1; min-width: 0; }
#de-dd-hdr .de-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#de-dd-hdr .de-name mark {
  background: none !important;
  color: #D01F3C !important;
  font-weight: 700;
}
#de-dd-hdr .de-sub {
  font-size: 11px;
  color: #74748a;
  margin-top: 1px;
}

/* ── Footer sticky sous le scroll ── */
#de-dd-hdr .dd-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1.5px solid #eaeaf2;
  background: #fafafa;
  border-radius: 0 0 14px 14px;
}
#de-dd-hdr .dd-hint {
  font-size: 11px;
  color: #ccc;
  display: flex;
  gap: 3px;
  align-items: center;
}
#de-dd-hdr .dd-hint kbd {
  background: #eee;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 10px;
  font-family: inherit;
  color: #888;
}
#de-dd-hdr .dd-all {
  font-size: 12px;
  font-weight: 700;
  color: #D01F3C;
  cursor: pointer;
  white-space: nowrap;
}

/* ── Responsive mobile ── */
@media (max-width: 768px) {
  #de-dd-hdr .dd-scroll { max-height: 260px; }
  #de-dd-hdr .de-item   { padding: 9px 14px; gap: 11px; }
  #de-dd-hdr .de-icon   { width: 30px; height: 30px; }
  #de-dd-hdr .de-name   { font-size: 13px; }
  #de-dd-hdr .dd-hint   { display: none; }
  #de-dd-hdr .dd-all    { font-size: 12px; width: 100%; text-align: center; }
}
@media (max-width: 430px) {
  #de-dd-hdr .de-item { padding: 8px 12px; gap: 10px; }
  #de-dd-hdr .de-icon { width: 28px; height: 28px; }
  #de-dd-hdr .de-name { font-size: 12.5px; }
  #de-dd-hdr .de-sub  { font-size: 10.5px; }
}/* ================================================================
   STYLE PAGE LISTE — nouvelle maquette responsive
   Day Experience B2B v2
   ================================================================ */

:root {
  --red: #D01F3C;
  --red-bg: #fff0f2;
  --ink: #1a1a2e;
  --muted: #74748a;
  --border: #eaeaf2;
  --white: #fff;
  --off: #f6f6fa;
  --gold: #f5a623;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--ink); -webkit-font-smoothing: antialiased; }

/* ── HERO ── */
.hero { position: relative; height: 240px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,30,.80) 0%, rgba(15,15,30,.2) 60%, transparent 100%), url('/img/liste/hero-bg.jpg') center 40%/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; padding: 0 56px 28px; }
.hero-breadcrumb { font-size: 11px; color: rgba(255,255,255,.45); margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.hero-breadcrumb span { color: rgba(255,255,255,.22); }
.hero-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; }
.hero-breadcrumb a:hover { color: #fff; }
.hero-title { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 48px; color: #fff; line-height: 1; letter-spacing: -1.5px; margin-bottom: 10px; }
.hero-title em { font-style: italic; color: #ffc5cf; }
.hero-title a#retourALaVille { font-size: 14px; font-weight: 600; color: #fff; text-decoration: underline; display: none; margin-left: 10px; vertical-align: middle; }
.hero-stats { display: flex; gap: 20px; }
.hero-stat { font-size: 12.5px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 5px; }
.hero-stat strong { color: #fff; font-weight: 600; }

/* ── TABS ── */
.tabs-row {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 0 56px; display: flex; align-items: center;
  position: sticky; top: 0; z-index: 250;
}
.tab-btn {
  padding: 14px 22px; font-size: 13.5px; font-weight: 500;
  color: var(--muted); cursor: pointer; border: none; background: none;
  font-family: 'Inter', sans-serif; border-bottom: 2.5px solid transparent;
  transition: color .18s, border-color .18s; white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.tab-btn.active { color: var(--red); border-bottom-color: var(--red); font-weight: 600; }
.tab-btn:hover:not(.active) { color: var(--ink); }
.tab-count { font-size: 11px; color: var(--muted); font-weight: 400; }

/* ── PAGE LAYOUT ── */
.page {
  display: grid;
  grid-template-columns: 252px 1fr;
  max-width: 1480px; margin: 0 auto;
  padding: 0 40px 100px;
  gap: 44px;
}

/* ── SIDEBAR ── */
.sidebar {
  padding: 20px 0 28px;
  position: sticky; top: 55px;
  height: fit-content;
  max-height: calc(100vh - 55px);
  overflow-y: auto; scrollbar-width: none;
  padding-bottom: 40px;
}
.sidebar::-webkit-scrollbar { display: none; }

.sb-search { display: flex; gap: 6px; margin-bottom: 12px; }
.sb-search input {
  flex: 1; padding: 9px 13px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 13px; font-family: 'Inter', sans-serif;
  color: var(--ink); background: var(--off); outline: none;
  transition: border-color .18s;
}
.sb-search input:focus { border-color: var(--red); background: #fff; }
.sb-search button {
  padding: 9px 13px; background: var(--red); color: #fff;
  border: none; border-radius: 10px; cursor: pointer; font-size: 13px;
  transition: background .18s;
}
.sb-search button:hover { background: #b01830; }

.sb-section { margin-bottom: 0; }
.sb-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0 10px; border-top: 1px solid var(--border);
  cursor: pointer; user-select: none;
}
.sb-head h3 { font-size: 11px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; color: var(--ink); }
.sb-arrow { font-size: 9px; color: var(--muted); transition: transform .2s; }
.sb-head.collapsed .sb-arrow { transform: rotate(-90deg); }
.sb-body { overflow: hidden; }
.sb-body.collapsed { display: none; }

.fi {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 10px; border-radius: 8px;
  cursor: pointer; transition: background .15s; gap: 8px;
}
.fi:hover { background: var(--off); }
.fi.active { background: var(--off); }
.fi.active .fi-label { color: var(--ink); font-weight: 600; }
.fi.active .fi-count { color: var(--muted); }
.fi-label { font-size: 13.5px; color: #3a3a4a; flex: 1; }
.fi-count { font-size: 11px; color: #bbbbd0; font-weight: 500; }
.fi-expand { font-size: 9px; color: #bbbbd0; transition: transform .2s; }
.fi.open .fi-expand { transform: rotate(90deg); }
.fi.open { background: var(--off); }
.fi.open .fi-label {font-weight: 600; }
/* Lieux visités : pas de fond gris sur fi.open */
#flt-lieu .fi.open { background: none; }
.fi-check { width: 16px; height: 16px; border: 1.5px solid var(--border); border-radius: 4px; flex-shrink: 0; transition: all .15s; }
.fi.active .fi-check { background: var(--red); border-color: var(--red); }
.fi-flag { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }
.fi input[type="checkbox"], .price-pill input[type="checkbox"] { display: none; }

/* ── Lieux visités : sous-listes localités ── */
.sub-list { display: none; }
.sub-list.open { display: block; }
.sub-fi {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px 7px 24px; border-radius: 8px;
  cursor: pointer; transition: background .15s; gap: 8px;
}
.sub-fi:hover { background: var(--off); }
.sub-fi.active { background: var(--off); }
.sub-fi.active .fi-label { color: var(--ink); font-weight: 600; }
.sub-fi .fi-label { font-size: 13px; color: #55556a; }
.sub-fi .fi-count { font-size: 10.5px; color: #cccce0; }

.price-pills { display: flex; flex-direction: column; gap: 2px; }
.price-pill {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 10px; border-radius: 8px; cursor: pointer; transition: background .15s;
}
.price-pill:hover { background: var(--off); }
.price-pill.active { background: var(--off); }
.price-pill.active .pp-label { color: var(--ink); font-weight: 600; }
.pp-label { font-size: 13.5px; color: #3a3a4a; flex: 1; }
.pp-check { width: 16px; height: 16px; border: 1.5px solid var(--border); border-radius: 4px; flex-shrink: 0; transition: all .15s; }
.price-pill.active .pp-check { background: var(--red); border-color: var(--red); }

.support-card {
  background: var(--ink); border-radius: 14px;
  padding: 20px 18px; color: #fff; margin-top: 20px;
}
.support-card .s-ico { font-size: 20px; margin-bottom: 10px; }
.support-card h4 { font-weight: 600; font-size: 13px; margin-bottom: 6px; }
.support-card p { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.75; }
.support-card a { color: #ff6680; text-decoration: none; font-weight: 500; }

/* ── MAIN ── */
.main { padding-top: 28px; }

.results-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 16px; row-gap: 6px;
  margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
/* Bloc 1 : titre — col 1, row 1 */
.results-bar .results-title {
  grid-column: 1; grid-row: 1;
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 32px; color: var(--ink); letter-spacing: -.3px; line-height: 1;
  white-space: nowrap; align-self: center;
}
/* Bloc 2 : chips — col 2, rows 1-2 (s'étend pour ne pas pousser le compteur) */
.results-chips-wrap {
  grid-column: 2; grid-row: 1 / 3;
  display: flex; align-items: flex-start; flex-wrap: wrap; 
  align-self: start; min-width: 0;
}
/* Bloc 3 : actions — col 3, rows 1-2 */
.filters-right {
  grid-column: 3; grid-row: 1 / 3;
  display: flex; align-items: flex-start; gap: 10px; flex-shrink: 0;
  white-space: nowrap; align-self: start; padding-top: 2px;
}
/* Compteur — col 1 row 2 uniquement, toujours sous le titre */
.results-count-txt {
  grid-column: 1; grid-row: 2;
  font-size: 12.5px; color: var(--muted); font-weight: 400;
}
/* Supprimer les anciennes classes devenues inutiles */
.results-info { display: contents; }
.results-title-chips { display: contents; }
.email-btn {
  display: flex; align-items: center; gap: 6px; padding: 8px 16px;
  border: 1.5px solid var(--border); border-radius: 9px;
  font-size: 12.5px; font-family: 'Inter', sans-serif; font-weight: 500;
  cursor: pointer; color: var(--ink); background: #fff; transition: all .18s;
}
.email-btn:hover { border-color: var(--red); color: var(--red); }

.price-toggle {
  display: flex; background: var(--off); border: 1.5px solid var(--border);
  border-radius: 100px; overflow: hidden;
}
.price-toggle button {
  padding: 7px 16px; font-size: 12px; font-family: 'Inter', sans-serif;
  font-weight: 500; border: none; background: none; cursor: pointer;
  color: var(--muted); transition: all .15s; white-space: nowrap;
}
.price-toggle button.active { background: var(--red); color: #fff; border-radius: 100px; }

#resultSearchListe { min-height: 200px; }

/* ── HAMBURGER + DRAWER MOBILE ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer; border-radius: 8px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-filter-drawer {
  position: fixed; top: 0; left: -100%;
  width: 85%; max-width: 320px; height: 100%;
  background: #fff; z-index: 600;
  transition: left .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 4px 0 32px rgba(0,0,0,.15);
  overflow-y: auto; padding: 24px 20px 40px;
}
.mobile-filter-drawer.open { left: 0; }
.mobile-filter-drawer .drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.mobile-filter-drawer .drawer-header h3 { font-size: 16px; font-weight: 700; }
.drawer-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--muted); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 599; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* ── POPUP ENVOI EMAIL ── */
#mid-mail-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(18,18,28,.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  z-index: 9999; padding: 24px;
}
#mid-mail-overlay.open { display: flex; animation: fadeOverlay .3s ease both; }
@keyframes fadeOverlay { from { opacity:0; } to { opacity:1; } }
.mid-mail-modal {
  background: #fff; border-radius: 20px; width: 100%; max-width: 440px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.14), 0 0 0 1px rgba(0,0,0,.05);
  animation: midSlideUp .35s cubic-bezier(.34,1.28,.64,1) both;
}
@keyframes midSlideUp { from { opacity:0; transform:translateY(20px) scale(.97); } to { opacity:1; transform:translateY(0) scale(1); } }
/* ── Bouton fermer ── */
.mid-mail-close-btn {
  float: right; margin: -4px -4px 0 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: #f6f6fa; border: 1.5px solid var(--border);
  cursor: pointer; color: var(--muted); font-size: 14px;
  display: grid; place-items: center;
  transition: background .15s, color .15s, border-color .15s;
}
.mid-mail-close-btn:hover { background: #fff0f2; border-color: var(--red); color: var(--red); }
/* ── Body ── */
.mid-mail-body { padding: 32px 32px 8px; }
.mid-mail-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; color: var(--ink); line-height: 1.15;
  margin-bottom: 6px; clear: both;
}
.mid-mail-title em { font-style: italic; color: var(--red); }
.mid-mail-subtitle { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.6; margin-bottom: 22px; }
.mid-mail-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; }
.mid-mail-group label { font-size: 11px; font-weight: 700; color: var(--ink); letter-spacing: .4px; text-transform: uppercase; }
.mid-mail-group label .req { color: var(--red); margin-left: 2px; }
.mid-mail-input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 13.5px; font-family: 'Inter', sans-serif; color: var(--ink); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.mid-mail-input::placeholder { color: #c0c0d4; }
.mid-mail-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(208,31,60,.08); }
.mid-mail-input.error { border-color: var(--red); }
/* Masquer les messages d'erreur jQuery Validate dans la popup */
#mid-mail-overlay label.error { display: none !important; }
#mid-mail-msg { display: none; font-size: 13px; padding: 8px 12px; border-radius: 8px; margin-bottom: 10px; }
#mid-mail-msg.msg-success { background: #e8fff0; color: #2d7a4f; border: 1px solid #4caf82; display: block; }
#mid-mail-msg.msg-error   { background: #fff0f2; color: var(--red); border: 1px solid var(--red); display: block; }
.mid-mail-field-error {
  background: #fff0f2; border: 1px solid #f5c0c8;
  color: #D01F3C; font-size: 13px; font-weight: 600;
  padding: 10px 14px; border-radius: 10px;
  margin-top: 8px; text-align: center;
}
/* ── Footer ── */
.mid-mail-footer { padding: 16px 32px 28px; display: flex; flex-direction: column; gap: 10px; }
.mid-mail-btn-primary {
  width: 100%; padding: 14px; background: var(--red); color: #fff; border: none;
  border-radius: 12px; font-size: 14px; font-family: 'Inter', sans-serif;
  font-weight: 700; cursor: pointer; letter-spacing: .2px;
  transition: background .18s, transform .15s, box-shadow .15s;
}
.mid-mail-btn-primary:hover { background: #b01830; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(208,31,60,.28); }
.mid-mail-btn-secondary {
  width: 100%; padding: 11px; background: transparent; color: var(--muted);
  border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 13px; font-family: 'Inter', sans-serif;
  font-weight: 500; cursor: pointer; transition: all .18s;
}
.mid-mail-btn-secondary:hover { border-color: var(--ink); color: var(--ink); background: #f6f6fa; }
/* ── État succès ── */
.mid-mail-success {
  padding: 40px 32px 36px;
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
}
.mid-mail-success-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #e8fff0, #c8f5da);
  border: 2px solid #4caf82;
  display: grid; place-items: center; font-size: 30px;
}
.mid-mail-success-title {
  font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--ink);
}
.mid-mail-success-title em { font-style: italic; color: var(--red); }
.mid-mail-success-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; max-width: 280px; }
.mid-mail-success-close {
  margin-top: 4px; padding: 11px 32px;
  background: #f6f6fa; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 13.5px; font-family: 'Inter', sans-serif;
  font-weight: 600; color: var(--ink); cursor: pointer; transition: all .18s;
}
.mid-mail-success-close:hover { background: #fff0f2; border-color: var(--red); color: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .hero-content { padding: 0 24px 24px; }
  .tabs-row { padding: 0 24px; }
  .page { padding: 0 24px 80px; gap: 28px; grid-template-columns: 220px 1fr; }
}
@media (max-width: 900px) {
  .tabs-row { padding: 0 16px; top: 0; }
  .hero { height: 200px; }
  .hero-content { padding: 0 16px 20px; }
  .hero-title { font-size: 34px; }
  .page { grid-template-columns: 1fr; padding: 0 16px 60px; gap: 0; }
  .sidebar { display: none; }
  .hamburger { display: flex; }
  .main { padding-top: 16px; }
  .results-bar .results-title { font-size: 24px; }
  .filters-right { gap: 8px; }
  .email-btn { font-size: 12px; padding: 7px 12px; }
  .price-toggle button { padding: 6px 10px; font-size: 11px; }
}

/* ── MOBILE ≤ 640px : empiler en colonne ── */
@media (max-width: 640px) {
  .hero { height: 160px; }
  .hero-title { font-size: 24px; }
  .mid-mail-body { padding: 20px 18px 24px; }

  .results-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }
  .results-bar .results-title {
    font-size: 22px;
    white-space: normal;
    grid-column: unset; grid-row: unset;
    align-self: auto;
  }
  .results-chips-wrap {
    grid-column: unset; grid-row: unset;
    align-self: auto;
    width: 100%;
  }
  .filters-right {
    grid-column: unset; grid-row: unset;
    align-self: auto; padding-top: 0;
    flex-wrap: wrap; gap: 8px; width: 100%;
    white-space: normal;
  }
  .results-count-txt {
    grid-column: unset; grid-row: unset;
  }
  .filter-chip { font-size: 12px; padding: 4px 10px; }
  .price-toggle button { padding: 6px 10px; font-size: 11px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 20px; }
  #mid-mail-overlay { padding: 0; align-items: flex-end; }
  .mid-mail-modal { border-radius: 18px 18px 0 0; max-width: 100%; }
  .results-bar .results-title { font-size: 20px; }
  .filter-chip { font-size: 11.5px; padding: 3px 9px; }
}

.ui-autocomplete { max-height:250px; overflow-y:scroll; overflow-x:hidden; padding-right:15px; }
.hide { display: none !important; }
  body { background: #fff !important; }
/* ── CARDS — grille 4 colonnes ── */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* ── CARD ── */
.card {
  background: #fff; border-radius: 16px;
  border: 1px solid var(--border); overflow: hidden;
  cursor: pointer; transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
}
.card:hover { box-shadow: 0 14px 44px rgba(0,0,0,.10); transform: translateY(-5px); }

/* Photo */
.card-photo { position: relative; height: 210px; overflow: hidden; flex-shrink: 0; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.card:hover .card-photo img { transform: scale(1.08); }
.card-photo-inner { width: 100%; height: 100%; display: grid; place-items: center; font-size: 52px; opacity: .3; }

/* Badge */
.top-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.95); color: var(--ink);
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,.1);
}
.top-badge.red { background: var(--red); color: #fff; }

/* Corps */
.card-body { padding: 14px 16px 12px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-title {
  font-weight: 700; font-size: 14px; color: var(--ink);
  line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-meta-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.card-duration { font-size: 12.5px; color: var(--muted); }
.meta-sep { color: var(--border); font-size: 11px; }
.card-langs { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.lang-tag {
  font-size: 10.5px; font-weight: 600; color: var(--muted);
  background: var(--off); border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 20px;
}
.lang-tag--audio { background: #f0f4ff; border-color: #c0d0f0; color: #3a5abf; }
.lang-tag--ecrit  { background: #f5fff0; border-color: #b0d0a0; color: #3a6a20; }

/* ── Badges langue — même style que page produit ── */
.lang-badge {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; background: none;
  cursor: default; user-select: none;
}
.lang-badge img { width: 22px; height: 22px; display: block; object-fit: cover; border-radius: 4px; box-shadow: none; }
.lang-badge-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 4px;
  border: none; background: none; cursor: default;
}
.lang-badge-icon img { width: 22px; height: 22px; display: block; }

/* Prix */
.card-price-section {
  display: flex; align-items: baseline; gap: 6px;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.card-price-label { font-size: 11px; color: var(--muted); font-weight: 400; white-space: nowrap; }
.card-price-value { display: flex; align-items: baseline; gap: 2px; }
.card-price-num { font-family: 'DM Serif Display', serif; font-size: 22px; font-weight: 400; color: var(--red); line-height: 1; }
.card-price-sym { font-family: 'DM Serif Display', serif; font-size: 14px; color: var(--red); }

/* Gradients fallback (si pas de photo) */
.g1 { background: linear-gradient(140deg,#6a2810,#b85020); }
.g2 { background: linear-gradient(140deg,#0e2e52,#1a5c80); }
.g3 { background: linear-gradient(140deg,#281050,#581888); }
.g4 { background: linear-gradient(140deg,#123410,#2a6020); }
.g5 { background: linear-gradient(140deg,#381010,#682018); }
.g6 { background: linear-gradient(140deg,#0a2828,#105050); }
.g7 { background: linear-gradient(140deg,#242410,#484818); }
.g8 { background: linear-gradient(140deg,#200e40,#481870); }

/* Animations */
@keyframes fadeUp { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }
.card { animation: fadeUp .38s ease both; }
.card:nth-child(1){ animation-delay:.04s; }
.card:nth-child(2){ animation-delay:.08s; }
.card:nth-child(3){ animation-delay:.12s; }
.card:nth-child(4){ animation-delay:.16s; }

/* Responsive cards */
@media (max-width: 1200px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (max-width: 1024px) { .cards { grid-template-columns: repeat(2, 1fr); gap: 14px; } .card-photo { height: 190px; } }
@media (max-width: 640px)  { .cards { grid-template-columns: repeat(2, 1fr); gap: 12px; } .card-photo { height: 160px; } .card-title { font-size: 13px; } .card-price-num { font-size: 20px; } }
@media (max-width: 360px)  { .cards { grid-template-columns: 1fr; } .card-photo { height: 180px; } }

/* ── Prix sur la photo — identique à l'original mais stylé nouvelle maquette ── */
.card-photo-price {
  position: absolute; bottom: 0; right: 0; left: 0;
  background: linear-gradient(to top, rgba(15,15,30,.75) 0%, transparent 100%);
  padding: 18px 14px 10px;
  text-align: right;
}
.card-photo-price span { color: #fff; font-family: 'Inter', sans-serif; }
.card-photo-price small { font-size: 11px; opacity: .85; margin-right: 2px; }
.card-photo-price strong { font-family: 'DM Serif Display', serif; font-size: 22px; font-weight: 400; }
.card-prix-barre {
  font-size: 14px; text-decoration: line-through;
  opacity: .7; margin-left: 6px;
}

/* ── Pictos carte (drapeaux, durée, icônes) ── */
.card-pictos {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 6px; margin-top: 8px;
}
.card-picto {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 12px; color: var(--muted);
  background: var(--off); border: 1px solid var(--border);
  padding: 3px 7px; border-radius: 20px;
  white-space: nowrap;
}
.card-picto img { display: block; border-radius: 2px; }
.card-picto i { font-size: 13px; }
.card-picto--duree { font-weight: 500; color: var(--ink); }

/* ── Prix barré (mode agence) ── */
.card-price-barre {
  font-size: 13px; text-decoration: line-through;
  color: var(--muted); margin-left: 6px; font-family: 'Inter', sans-serif;
}
/* ── Unité prix ── */
.card-price-unite {
  font-size: 11px; color: var(--muted);
  font-family: 'Inter', sans-serif; font-weight: 400;
  margin-left: 1px;
}

/* ── Lang tag avec drapeau image ── */
.lang-tag--flag {
  padding: 2px 4px;
  background: transparent;
  border: none;
}
.lang-tag--flag img { display: block; border-radius: 2px; }

/* ── Support card h4 blanc ── */
.support-card h4 { color: #fff; }

/* ── LOAD MORE ── */
.load-more-wrap { text-align: center; margin-top: 52px; padding-bottom: 20px; }
.load-more-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 2px solid var(--ink); color: var(--ink);
  font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 14px;
  padding: 15px 40px; border-radius: 100px; cursor: pointer;
  transition: all .22s;
}
.load-more-btn:hover { background: var(--ink); color: #fff; }
.load-more-btn:disabled { opacity: .6; cursor: not-allowed; }
.lm-pill {
  background: var(--red); color: #fff;
  font-size: 10.5px; font-weight: 700; font-family: 'Inter', sans-serif;
  padding: 3px 9px; border-radius: 20px;
}
.load-more-hint { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ── Code langue dans filtre (FR, GB) ── */
.fi-label-code {
  font-size: 9px; font-weight: 600;
  color: var(--muted); letter-spacing: .3px;
  margin-right: 1px; flex-shrink: 0;
  vertical-align: middle;
}
/* ── Chips filtres actifs (résultats) ── */
.filter-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px;
  background: var(--off); border: 1.5px solid var(--ink);
  color: var(--ink); font-size: 13px; font-weight: 500;
  white-space: nowrap;margin-right: 2px;margin-bottom: 2px;
}
.chip-remove {
  color: var(--red); text-decoration: none;
  font-size: 14px; font-weight: 700; opacity: .7;
  transition: opacity .15s; line-height: 1;
}
.chip-remove:hover { opacity: 1; }

/* ── chip-remove bouton dans filter-chip sidebar ── */
.filter-chip .chip-remove {
  background: none; border: none; cursor: pointer;
  color: var(--red); font-size: 13px; font-weight: 700;
  opacity: .7; transition: opacity .15s; line-height: 1;
  padding: 0; font-family: inherit;
}
.filter-chip .chip-remove:hover { opacity: 1; } 