
* { margin:0; padding:0; box-sizing:border-box; }
#configurateur-pf button:not(.btn-cta):not(.wiz-btn-next):not(.wiz-btn-prev):not(.active):not(.upload-btn):not(.upload-remove) { color: var(--brun) !important; }
#configurateur-pf button.active { color: white !important; }
[data-id="33404ed"] { display: none !important; }
@media (max-width: 860px) {
  div#configurateur-pf { margin-bottom: 33px !important; }
}

:root {
  --vert:    #76845E;
  --vert-dk: #5f6d4d;
  --brun:    #2D2711;
  --sable:   #5a5541;
  --creme:   #FAFAF8;
  --border:  #E5E3D7;
  --bg-card: #F8F7F3;
  --rouge:   #A75B4A;
}

/* body styles handled by PS theme */

/* ── HEADER ─────────────────────────── */
header {
  background: white;
  padding: 18px 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { font-size: 22px; font-weight: 700; letter-spacing: 1.5px; }

/* ── PAGE WRAPPER ───────────────────── */
.page {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 40px 40px 100px !important;
  box-sizing: border-box !important;
}

.breadcrumb {
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--sable); text-decoration: none; }
.breadcrumb a:hover { color: var(--vert); }

/* ── TITRE ──────────────────────────── */
.page-title { font-size: 34px; font-weight: 700; margin-bottom: 6px; }
.page-subtitle { font-size: 16px; color: var(--sable); margin-bottom: 40px; }

/* ── LAYOUT 2 COL ───────────────────── */
.layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* ── ÉTAPES ─────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 28px; }

.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.step-header {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  background: white;
  cursor: default;
}
.step-learn-more {
  margin-left: auto; font-size: 13px; color: var(--vert-dk);
  text-decoration: underline; white-space: nowrap;
}
.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--vert); color: white;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-title { font-size: 16px; font-weight: 700; }
.step-summary {
  margin-left: auto;
  font-size: 13px; color: var(--vert); font-weight: 600;
}

.step-/* body styles handled by PS theme */
.step-sep { height: 1px; background: var(--border); margin: 0 24px 20px; }

/* ── GRILLE FORMATS ─────────────────── */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.format-btn {
  border: 2px solid var(--border);
  background: white;
  border-radius: 8px;
  padding: 14px 10px;
  cursor: pointer;
  text-align: center;
  transition: all .25s;
  font-family: 'Raleway', sans-serif;
  color: var(--brun);
}
.format-btn:hover { border-color: var(--vert); }
.format-btn.active { border-color: var(--vert); background: var(--vert); color: white; }
.format-name { font-size: 14px; font-weight: 700; display: block; }
.format-dim { font-size: 11px; opacity: .7; display: block; margin-top: 2px; }
.format-btn.active .format-dim { opacity: .85; }

/* ── OPTIONS 2 colonnes ─────────────── */
.options-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.option-btn {
  border: 2px solid var(--border);
  background: white;
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  transition: all .25s;
  font-family: 'Raleway', sans-serif;
}
.option-btn:hover { border-color: var(--vert); }
.option-btn.active { border-color: var(--vert); background: var(--vert); color: white; }
.opt-label { font-size: 14px; font-weight: 700; display: block; }
.opt-desc { font-size: 12px; opacity: .7; display: block; margin-top: 3px; }
.option-btn.active .opt-desc { opacity: .85; }

/* ── QUANTITÉ ───────────────────────── */
.qty-section { display: flex; flex-direction: column; gap: 14px; }

.qty-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.qty-btn {
  border: 2px solid var(--border);
  background: white;
  border-radius: 6px;
  padding: 11px 6px;
  cursor: pointer;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 14px; font-weight: 600;
  transition: all .25s;
  color: var(--brun);
}
.qty-btn:hover { border-color: var(--vert); color: var(--vert); }
.qty-btn.active { border-color: var(--vert); background: var(--vert); color: white; }

.qty-custom-wrap { display: flex; align-items: center; gap: 10px; }
.qty-custom-label { font-size: 13px; color: var(--sable); flex-shrink: 0; }
.qty-custom-input {
  width: 110px;
  padding: 10px 12px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--brun);
  transition: border-color .25s;
}
.qty-custom-input:focus { outline: none; border-color: var(--vert); }
.qty-devis-banner {
  display: none;
  background: #FEF3CD;
  border: 1px solid #F0C74A;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13px;
  color: #7A5A00;
}
.qty-devis-banner a { color: var(--vert); font-weight: 700; }
.qty-devis-banner.show { display: block; }

/* ── ENVELOPPES ─────────────────────── */
.env-section { display: flex; flex-direction: column; gap: 10px; }
.env-unavailable {
  font-size: 13px; color: var(--sable);
  padding: 12px 0; font-style: italic;
}

/* ── GRAINES ─────────────────────────── */
.graines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ── RÉCAP STICKY ───────────────────── */
.recap-col { position: sticky; top: 130px; }

.recap-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.recap-header {
  background: var(--vert);
  color: white;
  padding: 20px 24px;
}
.recap-header h3 { font-size: 17px; font-weight: 700; }

.recap-/* body styles handled by PS theme */

.recap-line {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-size: 14px !important;
  color: var(--sable) !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid var(--border) !important;
  margin: 0 !important;
  gap: 12px !important;
}
.recap-line span { flex-shrink: 0; min-width: 80px; }
.recap-line strong { text-align: right; }
.recap-line:last-of-type { border-bottom: none; }
.recap-line strong { color: var(--brun); }

.recap-price-block {
  margin: 20px 0;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 8px;
}
.recap-total-row {
  display: flex; align-items: baseline; gap: 8px;
}
.recap-total-label { font-size: 14px; font-weight: 600; color: var(--brun); white-space: nowrap; }
.recap-total-price { font-size: 26px; font-weight: 700; color: var(--brun); }
.recap-total-price small { font-size: 15px; }
.recap-separator { border: none; height: 1px; background: var(--border); margin: 12px 0; }
.recap-unit-row {
  display: flex; align-items: baseline; gap: 8px;
}
.recap-unit { font-size: 14px; color: var(--sable); white-space: nowrap; }
.recap-unit-price { font-size: 16px; font-weight: 700; color: var(--brun); }
.recap-unit-price small { font-size: 12px; }


.btn-cta {
  width: 100%;
  padding: 17px;
  background: var(--vert);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  margin-bottom: 10px;
}
.btn-cta:hover { background: var(--vert-dk); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(118,132,94,.3); }

.btn-devis {
  width: 100%;
  padding: 14px;
  background: white;
  color: var(--brun);
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  text-align: center;
  display: block;
  text-decoration: none;
}
.btn-devis:hover { border-color: var(--vert); color: var(--vert); }

.recap-note {
  font-size: 12px; color: var(--sable); text-align: center;
  margin-top: 14px; line-height: 1.5;
}

/* ── TOOLTIP ─────────────────────────── */
.tip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; background: var(--border);
  color: var(--brun); border-radius: 50%;
  cursor: help; overflow: visible;
  position: relative; margin-left: 6px; vertical-align: middle; flex-shrink: 0;
}
.tip svg { display: block; width: 11px; height: 11px; fill: none !important; stroke: currentColor !important; }
.tip:hover { background: var(--vert); color: white; }
.tip-text {
  display: none; position: absolute;
  left: 22px; top: 50%; transform: translateY(-50%);
  background: var(--brun); color: white;
  padding: 8px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 400; white-space: normal;
  width: 220px; line-height: 1.5;
  z-index: 50; pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.tip-text::before {
  content:''; position: absolute; right:100%; top:50%; transform:translateY(-50%);
  border: 5px solid transparent; border-right-color: var(--brun);
}
.tip:hover .tip-text { display: block; }

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; }
  .recap-col { position: static; }
  .formats-grid { grid-template-columns: repeat(3, 1fr); }
  .qty-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 600px) {
  .page { padding: 20px 16px 80px; }
  header { padding: 16px 20px; }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .options-2 { grid-template-columns: 1fr; }
  .graines-grid { grid-template-columns: 1fr; }
  .qty-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── OVERRIDES THÈME PS ─────────────────── */
#configurateur-pf .recap-line {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  font-size: 14px !important;
  color: #5a5541 !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid #E5E3D7 !important;
  margin: 0 !important;
  gap: 16px !important;
}
#configurateur-pf .recap-line span {
  flex-shrink: 0;
  font-size: 14px !important;
  color: #5a5541 !important;
}
#configurateur-pf .recap-line strong {
  color: #2D2711 !important;
  font-weight: 600 !important;
  text-align: right;
}
#configurateur-pf .recap-/* body styles handled by PS theme */
#configurateur-pf .recap-card {
  background: white !important;
  border: 1px solid #E5E3D7 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}
#configurateur-pf .recap-header {
  background: #76845E !important;
  color: white !important;
  padding: 18px 20px !important;
}
#configurateur-pf .recap-header h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: white !important;
  margin: 0 !important;
}
#configurateur-pf .recap-price-block {
  margin: 16px 0 !important;
  padding: 16px !important;
  background: #F8F7F3 !important;
  border-radius: 8px !important;
}
#configurateur-pf .recap-total-row {
  display: flex !important; align-items: baseline !important; gap: 8px !important;
}
#configurateur-pf .recap-total-label {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #2D2711 !important;
}
#configurateur-pf .recap-total-price {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #2D2711 !important;
}
#configurateur-pf .recap-separator {
  border: none !important;
  height: 1px !important;
  background: #E5E3D7 !important;
  margin: 12px 0 !important;
}
#configurateur-pf .recap-unit-row {
  display: flex !important; align-items: baseline !important; gap: 8px !important;
}
#configurateur-pf .recap-unit {
  font-size: 14px !important;
  color: #5a5541 !important;
}
#configurateur-pf .recap-unit-price {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #2D2711 !important;
}
#configurateur-pf .btn-cta {
  display: block !important;
  width: 100% !important;
  padding: 16px !important;
  background: #76845E !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  text-align: center !important;
  margin-bottom: 10px !important;
}
#configurateur-pf .btn-devis {
  display: block !important;
  width: 100% !important;
  padding: 13px !important;
  background: white !important;
  color: #2D2711 !important;
  border: 2px solid #E5E3D7 !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-align: center !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}
#configurateur-pf .step {
  background: white !important;
  border: 1px solid #E5E3D7 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  margin: 0 !important;
}
#configurateur-pf .step-header {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 18px 22px !important;
  background: white !important;
}
#configurateur-pf .step-title {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #2D2711 !important;
  margin: 0 !important;
}
#configurateur-pf .step-summary {
  margin-left: auto !important;
  font-size: 13px !important;
  color: #76845E !important;
  font-weight: 600 !important;
}
#configurateur-pf .step-num {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #76845E !important;
  color: white !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
#configurateur-pf .format-btn,
#configurateur-pf .option-btn,
#configurateur-pf .qty-btn {
  font-family: 'Raleway', sans-serif !important;
  box-sizing: border-box !important;
}
#configurateur-pf .format-btn.active,
#configurateur-pf .option-btn.active,
#configurateur-pf .qty-btn.active {
  background: #76845E !important;
  color: white !important;
  border-color: #76845E !important;
}
#configurateur-pf .recap-note {
  font-size: 12px !important;
  color: #5a5541 !important;
  text-align: center !important;
  margin-top: 14px !important;
  line-height: 1.5 !important;
}


/* ══════════════════════════════════════════════════════
   WIZARD MOBILE — @media max-width: 768px
   Desktop layout inchangé
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Masquer layout desktop ── */
  .page { padding: 20px 28px 0px !important; }
  .breadcrumb { display: none; }
  .page-title, .page-subtitle { display: none; }
  .layout { display: block !important; }
  .recap-col { display: none !important; }

  /* ── Masquer toutes les étapes par défaut ── */
  .steps { gap: 0 !important; }
  .step { display: none !important; border-radius: 0 !important; border: none !important; }
  .step.wiz-active { display: block !important; }

  /* ── Header wizard ── */
  .wiz-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    padding: 14px 20px 15px;
    margin-bottom: 7px;
    border: 1px solid #E5E3D7 !important;
    border-radius: 10px !important;
  }
  .wiz-title {
    font-size: 13px;
    font-weight: 600;
    color: #5a5541;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-align: center;
  }
  .wiz-progress-bar {
    height: 4px;
    background: #E5E3D7;
    border-radius: 2px;
    overflow: hidden;
  }
  .wiz-progress-fill {
    height: 100%;
    background: #76845E;
    border-radius: 2px;
    transition: width 0.3s ease;
  }

  /* ── Step body mobile ── */
  #configurateur-pf .step-header { margin-bottom: 20px; }
  .step.wiz-active .step-header {
    padding: 20px 20px 16px !important;
    border-bottom: 1px solid #E5E3D7;
  }
  .step.wiz-active .step-sep { display: none !important; }
  .step.wiz-active .step-/* body styles handled by PS theme */

  /* ── Grille formats : 2 colonnes sur mobile ── */
  .formats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .format-btn { padding: 12px 8px !important; }
  .format-name { font-size: 14px !important; }
  .format-dim { font-size: 11px !important; }

  /* ── Options 2 col ── */
  .options-2 { grid-template-columns: 1fr !important; gap: 10px !important; }
  .option-btn { padding: 14px 16px !important; }

  /* ── Quantité mobile ── */
  .qty-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 8px !important; }
  .qty-btn { padding: 10px 6px !important; font-size: 13px !important; }

  /* ── Navigation bas de page ── */
  .wiz-footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: white;
    border-top: 1px solid #E5E3D7;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .wiz-recap-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }
  .wiz-recap-format {
    font-weight: 600;
    color: #2D2711;
    font-size: 13px;
  }
  .wiz-recap-price {
    font-size: 20px;
    font-weight: 700;
    color: #2D2711;
  }
  .wiz-recap-unit {
    font-size: 11px;
    color: #5a5541;
    display: block;
    text-align: right;
  }
  .wiz-nav {
    display: flex;
    gap: 10px;
  }
  .wiz-btn-prev {
    flex: 0 0 50px;
    padding: 14px;
    background: white;
    border: 2px solid #E5E3D7;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    color: #2D2711;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wiz-btn-prev:disabled { opacity: 0.3; }
  .wiz-btn-next {
    flex: 1;
    padding: 14px;
    background: #76845E;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
  }
  .wiz-btn-next.last {
    background: #76845E;
  }

  /* ── Étape fichier : mobile-first ── */
  .wiz-mobile-hint {
    background: #FFF8E7;
    border: 1px solid #F0D080;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    color: #5a5541;
    margin-bottom: 16px;
    display: none;
  }

  /* ── Résumé final avant panier ── */
  .wiz-summary {
    display: none;
  }
  .wiz-summary.visible {
    display: block;
    padding: 20px;
  }
  .wiz-summary-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2D2711;
  }
  .wiz-summary-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #E5E3D7;
    font-size: 14px;
  }
  .wiz-summary-line span { color: #5a5541; }
  .wiz-summary-line strong { color: #2D2711; }
  .wiz-summary-price {
    margin-top: 16px;
    text-align: center;
    padding: 16px;
    background: #F8F7F3;
    border-radius: 8px;
  }
  .wiz-summary-total {
    font-size: 36px;
    font-weight: 700;
    color: #2D2711;
    line-height: 40px;
  }
  .wiz-summary-unit {
    font-size: 13px;
    color: #5a5541;
  }
}

.step-body {
  padding: 0px 22px 24px;
}
.recap-body {
  padding: 22px;
}

/* ── COMMENT ÇA MARCHE ── */
.how-it-works { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 32px; margin-bottom: 40px; }
.how-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.how-item { position: relative; }
.how-item--last .how-icon { color: var(--rouge); }
.how-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; color: var(--vert); margin-bottom: 10px; flex-shrink: 0; }
#configurateur-pf .how-icon svg { width: 28px !important; height: 28px !important; display: block !important; fill: none !important; }
#configurateur-pf .how-icon svg path, #configurateur-pf .how-icon svg rect,
#configurateur-pf .how-icon svg circle, #configurateur-pf .how-icon svg line { fill: none !important; }
.how-num { position: absolute; top: 0; right: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--rouge); color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.how-num--alt { background: #76845E; }
.how-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--brun); }
.how-text { font-size: 12px; line-height: 1.6; color: var(--sable); }
.how-footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.how-delay { font-size: 13px; color: var(--sable); line-height: 1.6; }
.how-delay strong { color: var(--brun); }
.how-constraints-link { flex-shrink: 0; padding: 10px 20px; border: 1px solid var(--rouge); border-radius: 20px; color: var(--rouge); font-size: 13px; font-weight: 600; text-decoration: none; white-space: nowrap; transition: all .25s; }
.how-constraints-link:hover { background: var(--rouge); color: white; }
@media (max-width: 600px) { .how-it-works { display: none; } }

.how-mobile-intro { display: none; }
@media (max-width: 768px) {
  /* ── Intro mobile (étape 0) ── */
  .how-mobile-intro {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 168px 25px 31px;
    background: #fff;
  }
  .how-mobile-intro.pf-hidden { display: none !important; }
  #configurateur-pf { display: none; }
  #configurateur-pf.how-mobile-visible { display: block; }
  .how-mobile-logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--brun);
    margin-bottom: 28px;
  }
  .how-mobile-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--brun);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .how-mobile-sub {
    font-size: 15px;
    color: var(--sable);
    margin-bottom: 32px;
    line-height: 1.7;
  }
  .how-mobile-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    text-align: left;
  }
  .how-mobile-step-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--brun);
    line-height: 1.5;
  }
  .how-mobile-dot {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--vert);
    color: white;
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
  }
  .how-mobile-delay {
    font-size: 13px;
    color: var(--sable);
    margin-bottom: 32px;
    line-height: 1.6;
  }
  .how-mobile-delay strong { color: var(--brun); }
  .how-mobile-devis {
    font-size: 13px;
    color: var(--sable);
    margin-bottom: 28px;
    line-height: 1.6;
  }
  .how-mobile-devis a { color: var(--vert); font-weight: 600; }
  .how-mobile-cta {
    width: 100%;
    padding: 18px 24px;
    background: var(--vert);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 17px; font-weight: 700;
    cursor: pointer;
    transition: background .25s;
    -webkit-appearance: none;
    appearance: none;
  }
  .how-mobile-cta:hover { background: #5f6d4d; }
}

@media (max-width: 767px) {
  header#header {
    margin-bottom: 0 !important;
    z-index: 99999;
  }
}

/* ── UPLOAD SLOTS ── */
.upload-zone { margin-top: 14px; border: 2px dashed var(--border); border-radius: 8px; background: var(--creme); display: none; flex-direction: column; gap: 0; padding: 0; overflow: hidden; }
.upload-zone.active { display: flex; }
#upload-slots { padding: 16px 16px 12px; display: flex; flex-direction: column; gap: 8px; }
.upload-slot { width: 100%; display: flex; align-items: center; gap: 12px; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; background: white; }
.upload-slot--hidden { display: none; }
.upload-slot-label { font-size: 13px; font-weight: 700; color: var(--brun); white-space: nowrap; min-width: 60px; }
.upload-slot-file { flex: 1; font-size: 12px; color: var(--sable); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-slot-file.has-file { color: var(--brun); font-weight: 600; }
.upload-slot-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.upload-remove { background: none; border: none; color: var(--rouge); font-size: 18px; cursor: pointer; padding: 0; line-height: 1; }
.upload-btn { padding: 7px 16px; background: var(--vert); color: white; border: none; border-radius: 6px; font-size: 12px; font-weight: 700; cursor: pointer; }
.upload-formats { font-size: 11px; color: var(--sable); text-align: center; padding: 0 16px 12px; }
.upload-or { font-size: 12px; color: var(--sable); text-align: center; padding: 10px 16px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: white; }
.upload-later-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--brun); cursor: pointer; line-height: 1.5; padding: 14px 16px; }
.upload-later-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--vert); cursor: pointer; }

/* ── ÉTAPE DÉTAILS ── */
.step-intro { font-size: 13px; color: var(--sable); line-height: 1.7; margin-bottom: 14px; }
.details-textarea { width: 100%; min-height: 120px; padding: 14px 16px; border: 2px solid var(--border); border-radius: 8px; font-family: 'Raleway', sans-serif; font-size: 14px; color: var(--brun); line-height: 1.6; resize: vertical; transition: border-color .25s; background: white; }
.details-textarea:focus { outline: none; border-color: var(--vert); }
.details-count { font-size: 12px; color: var(--sable); text-align: right; margin-top: 6px; }

/* ── LOADER PANIER ── */
#pf-cart-loader { position: fixed; inset: 0; background: #F7F5EE; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
#pf-cart-loader.pf-loader-visible { opacity: 1; }
.pf-loader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.pf-loader-text { font-family: 'Raleway', sans-serif; font-size: 17px; font-weight: 600; color: #2D2711; }
.pf-loader-dots { display: flex; gap: 8px; }
.pf-loader-dots span { width: 7px; height: 7px; border-radius: 50%; background: #76845E; animation: pf-dot-bounce 1.2s infinite ease-in-out; }
.pf-loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.pf-loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes pf-dot-bounce { 0%, 80%, 100% { transform: translateY(0); opacity: 0.4; } 40% { transform: translateY(-8px); opacity: 1; } }

/* ── Breadcrumb : masquer la catégorie intermédiaire ─────────── */
.product-id-336 #wrapper .breadcrumb li:nth-child(2) { display: none !important; }

#configurateur-pf {
    max-width: 1466px !important;
    padding: 25px 40px 120px !important;
}

.product-id-336 #footer {
    padding-top: 0 !important;
    display: none;
}

