@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --wsh-primary: #4a2050;
  --wsh-primary-light: #7a4a7f;
  --wsh-accent: #b8654f;
  --wsh-bg-page: #fdfbfa;
  --wsh-bg-card: #ffffff;
  --wsh-bg-soft: #f7f1f5;
  --wsh-border: #ead9e6;
  --wsh-border-soft: #f0e6ee;
  --wsh-green: #2f7a4f;
  --wsh-green-bg: #e6f4ea;
  --wsh-red: #b03a3a;
  --wsh-red-bg: #fbebe9;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--wsh-bg-page);
  color: #2b1f2b;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#app-root { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 16px 24px; }

/* ============================================================
   LOGIN / INSCRIPTION / ATTENTE
   ============================================================ */
.wsh-login {
  max-width: 400px;
  margin: 24px auto;
  padding: 36px 32px;
  background: var(--wsh-bg-card);
  border: 1px solid var(--wsh-border);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 2px 24px rgba(74, 32, 80, 0.06);
}
.wsh-login h2 { font-size: 21px; color: var(--wsh-primary); font-weight: 600; margin: 0 0 6px; letter-spacing: -0.01em; }
.wsh-login p.sub { font-size: 13.5px; color: #8f7d8c; margin: 0 0 24px; }
.wsh-login input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--wsh-border);
  background: var(--wsh-bg-page);
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.wsh-login input:focus { border-color: var(--wsh-primary-light); background: #fff; }
.wsh-btn-primary {
  width: 100%;
  padding: 13px;
  background: var(--wsh-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, transform .1s ease;
}
.wsh-btn-primary:hover { background: var(--wsh-primary-light); }
.wsh-btn-primary:active { transform: scale(0.98); }
.wsh-btn-primary:disabled { opacity: .6; cursor: default; transform: none; }
.wsh-link-btn {
  background: none;
  border: none;
  color: var(--wsh-primary-light);
  font-size: 12.5px;
  text-decoration: underline;
  cursor: pointer;
  padding: 6px;
}
.wsh-btn-spinner {
  display: inline-block;
  width: 13px; height: 13px;
  margin-right: 8px;
  vertical-align: -2px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wsh-spin 0.7s linear infinite;
}
@keyframes wsh-spin { to { transform: rotate(360deg); } }

.wsh-msg { font-size: 13px; padding: 10px 14px; border-radius: 10px; margin-bottom: 14px; display: none; text-align: left; }
.wsh-msg.show { display: block; }
.wsh-msg.success { background: var(--wsh-green-bg); color: var(--wsh-green); }
.wsh-msg.fail { background: var(--wsh-red-bg); color: var(--wsh-red); }

.wsh-attente {
  max-width: 460px;
  margin: 40px auto;
  padding: 36px 32px;
  background: var(--wsh-bg-card);
  border: 1px solid var(--wsh-border);
  border-radius: 20px;
  text-align: center;
}
.wsh-attente h2 { color: var(--wsh-primary); font-size: 19px; margin: 0 0 12px; }
.wsh-attente p { color: #6b5f6b; font-size: 14px; line-height: 1.6; }

/* ============================================================
   TOPBAR VIOLETTE
   ============================================================ */
.wsh-topbar-outer {
  background: var(--wsh-primary);
  margin: 0 calc(-50vw + 50%);
  padding: 0 calc(50vw - 50%);
  position: sticky;
  top: 0;
  z-index: 41;
  border-bottom: 3px solid var(--wsh-accent);
}
.wsh-topbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
.wsh-topbar strong { font-weight: 600; color: #fff; }
.wsh-topbar-accent { color: var(--wsh-accent); font-weight: 600; }

/* ============================================================
   HEADER E-COMMERCE
   ============================================================ */
.wsh-header-outer {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  box-shadow: 0 2px 0 rgba(74,32,80,0.04), 0 8px 24px rgba(74,32,80,0.05);
  margin: 0 calc(-50vw + 50%);
  padding: 0 calc(50vw - 50%);
}
.wsh-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 16px 0;
}
.wsh-header-main {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 16px;
}
.wsh-header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.wsh-header-logo {
  height: 88px;
  width: auto;
  max-width: 245px;
  display: block;
}

.wsh-header-search {
  position: relative;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}
.wsh-header-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  color: #978b94;
  pointer-events: none;
  transition: color .15s ease;
}
.wsh-header-search:focus-within .wsh-header-search-icon { color: var(--wsh-primary); }
#search-input {
  width: 100%;
  height: 46px;
  padding: 0 18px 0 47px;
  border: 1.5px solid #dfd6dc;
  border-radius: 999px;
  background: #fff;
  color: #2b1f2b;
  font: inherit;
  font-size: 13.5px;
  font-weight: 400;
  outline: none;
  box-shadow: 0 1px 4px rgba(45,31,44,0.04);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
#search-input::placeholder { color: #9f959c; font-weight: 400; }
#search-input:focus {
  border-color: #bdaebb;
  box-shadow: 0 3px 14px rgba(74,32,80,0.08);
  background: #fff;
}
#search-input::-webkit-search-cancel-button { cursor: pointer; }

.wsh-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.wsh-header-account {
  position: relative;
  flex-shrink: 0;
}
.wsh-header-account-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px 7px 8px;
  background: #fff;
  border: 1px solid #dfd6dc;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.wsh-header-account-pill:hover {
  border-color: #bdaebb;
  background: #fdfbfc;
  box-shadow: 0 2px 10px rgba(74,32,80,0.06);
}
.wsh-header-account-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.4px solid #6a5769;
  border-radius: 50%;
  color: #5c4a5b;
  flex-shrink: 0;
}
.wsh-header-account-icon svg { width: 16px; height: 16px; }
.wsh-header-account-text {
  font-size: 12px;
  line-height: 1.28;
  color: var(--wsh-primary);
  text-align: left;
  white-space: nowrap;
  font-weight: 400;
}
.wsh-header-account-text strong { color: var(--wsh-red); font-weight: 600; }
.wsh-header-account-chevron {
  width: 13px;
  height: 13px;
  color: #a89ea5;
  flex-shrink: 0;
  transition: transform .15s ease;
}
.wsh-header-account-pill[aria-expanded="true"] .wsh-header-account-chevron { transform: rotate(180deg); }

.wsh-header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #dfd6dc;
  border-radius: 50%;
  background: #fff;
  color: #554a53;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease, transform .1s ease;
}
.wsh-header-cart:hover {
  border-color: #bdaebb;
  background: #fdfbfc;
  box-shadow: 0 2px 10px rgba(74,32,80,0.06);
}
.wsh-header-cart:active { transform: scale(.97); }
.wsh-header-cart svg { width: 22px; height: 22px; }
.wsh-header-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--wsh-accent);
  color: #fff;
  font-size: 10.5px;
  line-height: 1;
  font-weight: 600;
}

.wsh-header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  width: 100%;
  margin-top: 10px;
  padding: 8px 0 10px;
  border-top: 1px solid #f0eaee;
  overflow: visible;
}
.wsh-header-nav-item {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 8px 12px;
  margin: 0;
  font: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: #50474e;
  text-decoration: none !important;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}
.wsh-header-nav-item:hover {
  color: #2f2930;
  background: #f8f5f7;
  text-decoration: none !important;
}
.wsh-header-nav-item.active {
  color: #3f3b3e;
  background: #f1f1f1;
  font-weight: 500;
}
#nav-contact,
#nav-contact:visited { color: #585056; }
#nav-contact:hover {
  color: #383438;
  background: #f5f5f5;
}
#nav-contact.active {
  color: #3f3b3e;
  background: #f1f1f1;
}
.wsh-header-nav-item.disabled {
  color: #c8c0c5;
  cursor: default;
  font-weight: 400;
}
.wsh-header-nav-item.disabled:hover { color: #c8c0c5; background: none; }
.wsh-header-nav-item.disabled:hover .wsh-nav-tooltip { opacity: 1; transform: translate(-50%, 0); }
.wsh-nav-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, -4px);
  background: #3f3540;
  color: #fff;
  font-size: 10.5px;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 7px;
  white-space: nowrap;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}

.wsh-header-account-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid var(--wsh-border);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(74,32,80,0.16);
  min-width: 220px;
  z-index: 50;
  overflow: hidden;
}
.wsh-header-account-menu.show { display: block; }
.wsh-account-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  text-align: left;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: #2b1f2b;
  cursor: pointer;
  transition: background .12s ease;
}
.wsh-account-menu-item:hover { background: var(--wsh-bg-soft); }
.wsh-account-menu-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--wsh-primary-light); }
.wsh-account-menu-sep { height: 1px; background: var(--wsh-border-soft); margin: 0; }
.wsh-account-menu-logout { color: var(--wsh-red) !important; }
.wsh-account-menu-logout svg { color: var(--wsh-red) !important; }

.wsh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding-top: 13px;
  color: #8b8088;
  font-size: 12px;
  font-weight: 400;
}
.wsh-breadcrumb a,
.wsh-breadcrumb button {
  border: 0;
  padding: 0;
  background: none;
  color: #7b7178;
  font: inherit;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}
.wsh-breadcrumb a:hover,
.wsh-breadcrumb button:hover { color: #3e353c; text-decoration: none; }
.wsh-breadcrumb-sep { color: #bbb3b8; }
.wsh-breadcrumb-current { color: #4f454d; }

.wsh-context-bar {
  text-align: center;
  padding: 15px 0 8px;
}
.wsh-context-bar h1 { font-size: 24px; color: var(--wsh-primary); font-weight: 700; margin: 0; letter-spacing: -0.02em; }
.wsh-context-bar .wsh-semaine { font-size: 12.5px; color: #8f7d8c; display: block; margin-top: 4px; font-weight: 400; }
.wsh-context-bar .wsh-phrase { font-size: 13.5px; color: var(--wsh-accent); font-weight: 500; display: block; margin-top: 6px; }

@media (max-width: 900px) {
  .wsh-header { padding: 13px 16px 0; }
  .wsh-header-main {
    grid-template-columns: 1fr auto;
    gap: 12px 14px;
  }
  .wsh-header-brand { grid-column: 1; grid-row: 1; }
  .wsh-header-actions { grid-column: 2; grid-row: 1; }
  .wsh-header-search {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
  }
  .wsh-header-logo { height: 72px; max-width: 210px; }
  .wsh-header-nav {
    margin-top: 11px;
    padding-bottom: 9px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .wsh-header-nav::-webkit-scrollbar { display: none; }
  .wsh-nav-tooltip { display: none; }
}
@media (max-width: 560px) {
  .wsh-header { padding-left: 12px; padding-right: 12px; }
  .wsh-header-main { gap: 10px; }
  .wsh-header-logo { height: 60px; max-width: 165px; }
  .wsh-header-actions { gap: 7px; }
  .wsh-header-account-text, .wsh-header-account-chevron { display: none; }
  .wsh-header-account-pill { padding: 6px; }
  .wsh-header-account-icon { width: 32px; height: 32px; }
  .wsh-header-cart { width: 44px; height: 44px; }
  #search-input { height: 43px; font-size: 12.5px; }
  .wsh-header-nav-item { font-size: 12.5px; padding: 7px 9px; }
  .wsh-breadcrumb { padding-top: 10px; font-size: 11.5px; }
}

/* ============================================================
   BANNIERE TRANSPARENCE
   ============================================================ */
#wsh-transparence-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff9f0, #fdf3ec);
  border: 1px solid #f0dfc8;
  border-radius: 12px;
  padding: 8px 16px;
  margin: 16px 0 0;
  box-shadow: 0 2px 10px rgba(184,101,79,0.06);
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow .15s ease, border-color .15s ease;
}
#wsh-transparence-banner:hover { box-shadow: 0 3px 14px rgba(184,101,79,0.14); border-color: #e8c9a3; }
.wsh-transp-body { display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; }
.wsh-transp-text { font-size: 13px; line-height: 1.6; color: #6b5f4f; }
.wsh-transp-text strong { color: var(--wsh-primary); font-weight: 700; }
.wsh-transp-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--wsh-accent); font-weight: 600; font-size: 12.5px;
  border-bottom: 1.5px solid rgba(184,101,79,0.35);
  white-space: nowrap; margin-left: 4px;
}
#wsh-transparence-banner:hover .wsh-transp-link { color: #a0563f; border-color: #a0563f; }

/* ============================================================
   RECHERCHE / FILTRES
   ============================================================ */
#wsh-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; margin-bottom: 16px; }
.wsh-multiselect { position: relative; flex: 1; min-width: 140px; }
.wsh-multiselect-btn {
  width: 100%;
  padding: 9px 30px 9px 14px;
  border: 1.5px solid var(--wsh-border);
  border-radius: 999px;
  font-size: 13px;
  background: var(--wsh-bg-soft);
  color: var(--wsh-primary);
  outline: none;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  transition: border-color .15s ease, background .15s ease;
}
.wsh-multiselect-btn::after {
  content: ''; position: absolute; right: 14px; top: 50%;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--wsh-primary-light);
  border-bottom: 1.5px solid var(--wsh-primary-light);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.wsh-multiselect-btn:hover { background: #fff; }
.wsh-multiselect.wsh-active .wsh-multiselect-btn { border-color: var(--wsh-primary); background: var(--wsh-primary); color: #fff; font-weight: 600; }
.wsh-multiselect.wsh-active .wsh-multiselect-btn::after { border-color: #fff; }
.wsh-multiselect-panel {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 100%; max-height: 280px; overflow-y: auto;
  background: #fff; border: 1px solid var(--wsh-border); border-radius: 12px;
  box-shadow: 0 8px 24px rgba(74,32,80,0.16); z-index: 60; padding: 6px;
}
.wsh-multiselect.wsh-open .wsh-multiselect-panel { display: block; }
.wsh-multiselect-option { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; font-size: 13px; color: #2b1f2b; cursor: pointer; white-space: nowrap; }
.wsh-multiselect-option:hover { background: var(--wsh-bg-soft); }
.wsh-multiselect-option input[type="checkbox"] { cursor: pointer; accent-color: var(--wsh-primary); width: 14px; height: 14px; flex-shrink: 0; }

#wsh-reset-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; flex-wrap: wrap; gap: 8px; }
#wsh-reset-row-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
#wsh-reset-row button { background: none; border: none; color: var(--wsh-primary-light); font-size: 12px; text-decoration: underline; cursor: pointer; padding: 0; height: 16px; display: inline-flex; align-items: center; }
.wsh-filter-checkbox { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; user-select: none; font-size: 12px; color: var(--wsh-primary-light); height: 16px; }
.wsh-filter-checkbox input[type="checkbox"] { cursor: pointer; accent-color: var(--wsh-primary-light); width: 13px; height: 13px; margin: 0; padding: 0; }
.wsh-reset-sep { color: var(--wsh-border); font-size: 12px; line-height: 16px; }
.wsh-filters-clear-btn { color: var(--wsh-red) !important; }

/* ============================================================
   CATALOGUE - GROUPES
   ============================================================ */
.wsh-mega { margin-top: 32px; }
.wsh-mega-collapsed { margin-top: 2px; }
.wsh-mega:first-child { margin-top: 0; }
.wsh-mega-title {
  position: relative; font-size: 16px; font-weight: 600; color: #fff;
  padding: 12px 18px; background: var(--wsh-primary); border-radius: 12px;
  margin-bottom: 16px; letter-spacing: -0.01em; cursor: pointer; user-select: none; text-align: center;
}
.wsh-mega-chevron { font-size: 13px; opacity: 0.8; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); }
.wsh-mega-collapsed .wsh-mega-title { margin-bottom: 0; }
.wsh-mega-body.wsh-hidden { display: none; }
.wsh-sub-title { font-size: 12px; font-weight: 700; color: var(--wsh-accent); text-transform: uppercase; letter-spacing: .05em; padding: 6px 0 10px 12px; border-left: 3px solid var(--wsh-accent); margin-left: 2px; }

.wsh-grid { display: grid; gap: 8px; margin-bottom: 8px; }

/* ============================================================
   CARTE PRODUIT
   ============================================================ */
.wsh-card {
  background: var(--wsh-bg-card);
  border: 1px solid var(--wsh-border-soft);
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: stretch;
  transition: border-color .15s ease, box-shadow .15s ease;
  position: relative;
}
.wsh-card:hover { border-color: var(--wsh-border); box-shadow: 0 4px 14px rgba(74,32,80,0.07); }
.wsh-card.wsh-in-cart { border-color: var(--wsh-primary-light); background: #fbf6fa; box-shadow: 0 2px 12px rgba(122,74,127,0.1); }

.wsh-fly-plant { position: fixed; font-size: 20px; z-index: 1500; pointer-events: none; transition: transform .6s cubic-bezier(.35,0,.65,1), opacity .6s ease; }

.wsh-photo {
  width: 64px; height: auto; min-height: 100%; border-radius: 14px !important;
  background: var(--wsh-bg-soft); object-fit: cover; cursor: pointer;
  border: 1px solid var(--wsh-border-soft); flex-shrink: 0; align-self: stretch;
  transition: box-shadow .15s ease, transform .1s ease; overflow: hidden;
}
.wsh-photo:hover { box-shadow: 0 3px 10px rgba(74,32,80,0.15); }
.wsh-photo-placeholder {
  width: 64px; height: auto; min-height: 100%; border-radius: 14px !important;
  background: var(--wsh-bg-soft); flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: #cbb9c8; font-size: 9px; text-align: center; border: 1px dashed var(--wsh-border);
  align-self: stretch; line-height: 1.2; padding: 4px;
}

.wsh-card-main { min-width: 0; }
.wsh-designation-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.wsh-designation { font-weight: 600; color: #2b1f2b; font-size: 13px; line-height: 1.25; }
.wsh-sub-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 2px; flex-wrap: wrap; min-height: 23px; }
.wsh-sub-row-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.wsh-fiche-link {
  font-size: 11px; font-weight: 600; color: #c97a5f; background: #f7f1ee;
  border: 1px solid #ead9e6; padding: 4px 11px; border-radius: 999px;
  text-decoration: none; white-space: nowrap; letter-spacing: .01em;
  display: inline-flex; align-items: center; gap: 4px;
}
.wsh-fiche-link:hover { color: #c97a5f; text-decoration: none; background: #f0e6e2; }

.wsh-variante {
  font-size: 10.5px; font-weight: 600; color: var(--wsh-red); background: var(--wsh-red-bg);
  border: 1px solid #f0d5d2; padding: 2px 8px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 4px; letter-spacing: .01em; margin-left: 8px;
}
.wsh-variante-icon { font-size: 9px; line-height: 1; flex-shrink: 0; }

.wsh-prix-line {
  display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10.5px; color: #8f7d8c;
  white-space: nowrap; background: var(--wsh-bg-soft); padding: 8px 10px; border-radius: 10px;
}
.wsh-prix-line span { display: flex; flex-direction: column; align-items: center; gap: 2px; justify-content: center; text-align: center; }
.wsh-prix-line em { font-style: normal; font-size: 10px; color: #a898a5; }
.wsh-prix-line strong { color: var(--wsh-primary); font-size: 13.5px; font-weight: 700; }
.wsh-card.wsh-in-cart .wsh-prix-line { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.wsh-card.wsh-in-cart .wsh-prix-line em { color: rgba(255,255,255,0.6); }
.wsh-card.wsh-in-cart .wsh-prix-line strong { color: #fff; }

.wsh-meta-row { display: flex; flex-wrap: wrap; gap: 6px 10px; margin-top: 6px; align-items: center; padding-top: 4px; border-top: 1px dashed var(--wsh-border-soft); }
.wsh-meta-field { display: flex; flex-direction: column; gap: 4px; }
.wsh-meta-field label { font-size: 10px; color: #7a4a7f; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.wsh-mini-input {
  box-sizing: border-box; padding: 7px 10px; border: 1.5px solid var(--wsh-border-soft);
  border-radius: 9px; font-size: 12.5px; outline: none; background: var(--wsh-bg-soft);
  transition: border-color .15s ease, background .15s ease; font-weight: 500;
}
.wsh-mini-input:focus { border-color: var(--wsh-primary-light); background: #fff; }
.wsh-ean-input { width: 130px; }
.wsh-code-input { width: 80px; }
.wsh-pv-input { width: 80px; }

.wsh-card-side {
  display: flex; flex-direction: column; align-items: stretch; gap: 6px; justify-content: center;
  background: var(--wsh-bg-soft); padding: 8px 10px; border-radius: 12px;
}
.wsh-card.wsh-in-cart .wsh-card-side { background: var(--wsh-primary); }
.wsh-side-controls { display: flex; flex-direction: column; gap: 6px; }
.wsh-qtt-input {
  width: 70px; text-align: center; font-weight: 600; font-size: 12.5px;
  padding: 7px 4px 7px 10px; border: 1.5px solid var(--wsh-border); border-radius: 9px;
  outline: none; background: #fff; transition: border-color .15s ease, background .15s ease;
}
.wsh-qtt-input:focus { border-color: var(--wsh-primary-light); }
.wsh-qtt-input.wsh-active { border-color: var(--wsh-primary); color: var(--wsh-primary); }
.wsh-add-btn {
  background: var(--wsh-primary); color: #fff; border: none; border-radius: 9px;
  padding: 7px 12px; font-size: 11px; font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: background .15s ease, transform .1s ease;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.wsh-add-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
.wsh-add-btn:hover { background: var(--wsh-primary-light); }
.wsh-add-btn:active { transform: scale(0.96); }

@media (min-width: 641px) {
  .wsh-card { padding: 7px 12px; }
  .wsh-side-controls { flex-direction: row; align-items: stretch; }
  .wsh-side-controls .wsh-qtt-input { width: 84px; }
  .wsh-side-controls .wsh-add-btn { flex: 0 0 78px; padding: 7px 6px; }
  .wsh-prix-line { flex-direction: row; justify-content: center; gap: 14px; padding: 6px 12px; }
  .wsh-prix-line span { flex-direction: column; align-items: center; gap: 1px; }
}

/* ============================================================
   MODALE PHOTO
   ============================================================ */
.wsh-photo-modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(20, 10, 22, 0.75);
  z-index: 1100; align-items: center; justify-content: center; padding: 24px;
}
.wsh-photo-modal-overlay.show { display: flex; }
.wsh-photo-modal-overlay img { max-width: 90vw; max-height: 85vh; border-radius: 12px; }
.wsh-photo-modal-close-x {
  position: fixed; top: 20px; right: 20px; background: rgba(255,255,255,0.15);
  border: none; color: #fff; font-size: 26px; line-height: 1; width: 42px; height: 42px;
  border-radius: 50%; cursor: pointer; transition: background .12s ease; z-index: 1101;
}
.wsh-photo-modal-close-x:hover { background: rgba(255,255,255,0.28); }

/* ============================================================
   BARRES FLOTTANTES
   ============================================================ */
#wsh-franco-bar { cursor: pointer; }
#wsh-franco-bar {
  position: fixed; left: 50%; bottom: 76px; transform: translateX(-50%);
  width: min(560px, calc(100% - 32px)); display: none; background: #fff;
  border: 1.5px solid var(--wsh-border); padding: 10px 16px; border-radius: 14px;
  z-index: 998; box-shadow: 0 4px 14px rgba(74,32,80,0.1);
}
#wsh-franco-bar.show { display: block; }
#wsh-franco-label { font-size: 11.5px; color: #8f7d8c; margin-bottom: 6px; text-align: center; }
.wsh-franco-fade { color: #c7bdc3; font-weight: 400; }
#wsh-franco-label strong { color: var(--wsh-primary); }
#wsh-franco-rects { display: flex; gap: 3px; }
.wsh-franco-rect { flex: 1; height: 8px; border-radius: 3px; background: var(--wsh-border-soft); transition: background .2s ease; }
.wsh-franco-rect.filled-rouge { background: #d97706; }
.wsh-franco-rect.filled-orange { background: #7bb894; }
.wsh-franco-rect.filled-vert { background: var(--wsh-green); }

#wsh-cmd-bar {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  width: min(560px, calc(100% - 32px)); display: none; align-items: center;
  justify-content: space-between; gap: 14px; background: var(--wsh-primary);
  padding: 10px 10px 10px 18px; border-radius: 999px; font-size: 13px;
  flex-wrap: wrap; z-index: 999; box-shadow: 0 6px 20px rgba(74,32,80,0.25);
}
#wsh-cmd-bar.show { display: flex; }
.wsh-cmd-count-btn { background: none; border: none; color: #fff; font-size: 13px; font-weight: 500; cursor: pointer; padding: 4px 0; text-decoration: underline; text-underline-offset: 2px; }
#wsh-cmd-right { display: flex; align-items: center; gap: 14px; }
.wsh-franco-atteint-badge { display: none; background: var(--wsh-green-bg); color: var(--wsh-green); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
.wsh-franco-atteint-badge.show { display: inline-block; }
.wsh-franco-atteint-badge.wsh-franco-badge-red { background: #fdf0e2; color: #b06a1a; }
.wsh-franco-atteint-badge.wsh-franco-badge-orange { background: #e4f2ea; color: #2f7a4f; }
.wsh-franco-atteint-badge.wsh-franco-badge-green { background: var(--wsh-green); color: #fff; }
.wsh-panier-franco-badge.wsh-franco-badge-red { background: #fdf0e2; color: #b06a1a; }
.wsh-panier-franco-badge.wsh-franco-badge-orange { background: #e4f2ea; color: #2f7a4f; }
.wsh-panier-franco-badge.wsh-franco-badge-green { background: var(--wsh-green); color: #fff; }
#wsh-cmd-open { background: #fff; color: var(--wsh-primary); border: none; border-radius: 999px; padding: 9px 18px; font-size: 13px; font-weight: 500; cursor: pointer; transition: background .15s ease, transform .1s ease; }
#wsh-cmd-open:hover { background: var(--wsh-bg-soft); }
#wsh-cmd-open:active { transform: scale(0.97); }

/* ============================================================
   MODALES
   ============================================================ */
.wsh-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(43, 23, 48, 0.5); z-index: 1000; align-items: center; justify-content: center; padding: 20px; }
.wsh-modal-overlay.show { display: flex; }
.wsh-modal { background: #fff; border-radius: 20px; padding: 28px; max-width: 480px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; }
@media (min-width: 641px) { .wsh-modal.wsh-modal-wide { max-width: 900px; } }
.wsh-modal h3 { margin: 0; font-size: 18px; color: var(--wsh-primary); font-weight: 600; }
.wsh-modal .sub { font-size: 12.5px; color: #8f7d8c; margin: 4px 0 16px; }
.wsh-modal-title-row { display: flex; align-items: center; gap: 12px; margin: 0 32px 16px 0; }
.wsh-modal-title-row #modal-commande-title { margin: 0; }
.wsh-modal-clear-link { margin-left: auto; }
.wsh-panier-franco-badge { display: none; font-size: 11.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.wsh-panier-franco-badge.show { display: inline-flex; align-items: center; }
.wsh-modal-clear-link { background: none; border: none; color: var(--wsh-red); font-size: 12.5px; text-decoration: underline; cursor: pointer; padding: 0; white-space: nowrap; flex-shrink: 0; }
.wsh-modal-summary { text-align: right; margin: 0 0 16px; padding: 8px 4px; }
.wsh-modal-summary p { margin: 0 0 4px; font-size: 13px; color: #2b1f2b; }
.wsh-modal-summary strong { font-size: 15px; color: var(--wsh-primary); }

.wsh-modal-list { max-height: 320px; overflow-y: auto; border: 1px solid var(--wsh-border-soft); border-radius: 12px; padding: 6px 10px; margin-bottom: 16px; font-size: 13px; background: var(--wsh-bg-page); }
.wsh-panier-row { display: flex; align-items: center; gap: 10px; padding: 10px 6px; border-bottom: 1px solid var(--wsh-border-soft); flex-wrap: wrap; }
.wsh-panier-row:last-child { border-bottom: none; }
.wsh-panier-nom-bloc { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.wsh-panier-nom { color: #2b1f2b; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wsh-panier-prix-unit { color: #a898a5; font-size: 11.5px; font-weight: 500; }
.wsh-panier-qte-bloc { flex: 0 0 auto; }
.wsh-panier-qte-input { width: 56px; padding: 6px 8px; border: 1.5px solid var(--wsh-border); border-radius: 8px; font-size: 12.5px; text-align: center; }
.wsh-panier-remove { flex: 0 0 auto; background: var(--wsh-red-bg); color: var(--wsh-red); border: none; border-radius: 50%; width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.wsh-panier-remove svg { width: 13px; height: 13px; }
.wsh-panier-remove:hover { background: var(--wsh-red); color: #fff; }

/* Edition Code/EAN/PV directement dans le panier : reservee au desktop.
   Layout en grille avec colonnes de largeur fixe pour garantir un
   alignement strict entre toutes les lignes, quelle que soit la longueur
   du nom d'article ou de la quantite affichee. Ordre : Quantite, Nom +
   prix unitaire (aligne a gauche, regroupe en colonne), Code/EAN/PV
   (aligne a droite), Corbeille. */
.wsh-panier-edit-fields { display: none; }
@media (min-width: 901px) {
  .wsh-panier-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto 34px;
    align-items: center;
    gap: 14px;
  }
  .wsh-panier-qte-bloc { justify-self: start; }
  .wsh-panier-nom-bloc { min-width: 0; text-align: left; }
  .wsh-panier-edit-fields {
    display: flex; align-items: center; gap: 5px; justify-self: end;
    padding: 6px 10px; background: var(--wsh-bg-soft); border-radius: 9px; border: 1px solid var(--wsh-border-soft);
  }
  .wsh-panier-edit-fields .wsh-mini-input { width: 56px; padding: 6px 7px; font-size: 11.5px; }
  .wsh-panier-edit-fields .wsh-panier-code-input { width: 62px; }
  .wsh-panier-edit-fields .wsh-panier-ean-input { width: 112px; }
  .wsh-panier-edit-fields .wsh-panier-pv-input { width: 54px; }
  .wsh-panier-remove { justify-self: end; }
}

#modal-commande-count { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: 13px; color: #6b5f6b; margin-bottom: 4px; }
.wsh-panier-total-general { font-weight: 700; color: var(--wsh-primary); font-size: 14.5px; }

.wsh-modal-close-x { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 22px; line-height: 1; color: #a898a5; cursor: pointer; padding: 4px; border-radius: 50%; transition: background .12s ease, color .12s ease; }
.wsh-modal-close-x:hover { background: var(--wsh-bg-soft); color: var(--wsh-primary); }
.wsh-field-block { margin-bottom: 12px; text-align: left; }
.wsh-field-block label { display: block; font-size: 12.5px; color: #6b5f6b; margin-bottom: 5px; font-weight: 500; }
.wsh-field-block input, .wsh-field-block textarea, .wsh-field-block select {
  width: 100%; box-sizing: border-box; padding: 11px 14px; border: 1.5px solid var(--wsh-border);
  border-radius: 10px; font-size: 13.5px; outline: none; font-family: inherit;
}
.wsh-field-block input:focus, .wsh-field-block textarea:focus, .wsh-field-block select:focus { border-color: var(--wsh-primary-light); }
.wsh-field-narrow { max-width: 160px; }
.wsh-field-block select.wsh-select-compact { width: auto; min-width: 110px; max-width: 140px; padding: 8px 12px; font-size: 12.5px; }
.wsh-req { color: var(--wsh-red); }

.wsh-modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px; }
.wsh-btn-cancel { background: none; border: none; color: #8f7d8c; font-size: 13.5px; cursor: pointer; padding: 10px 16px; }
.wsh-btn-submit { background: var(--wsh-primary); color: #fff; border: none; border-radius: 999px; padding: 11px 22px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: background .15s ease; }
.wsh-btn-submit:hover { background: var(--wsh-primary-light); }
.wsh-btn-submit:disabled { opacity: .5; cursor: default; }

/* ============================================================
   LISTES (commandes, paniers)
   ============================================================ */
.wsh-list-row {
  background: var(--wsh-bg-card); border: 1px solid var(--wsh-border-soft); border-radius: 14px;
  padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; margin-bottom: 10px; transition: border-color .15s ease, box-shadow .15s ease;
}
.wsh-list-row:hover { border-color: var(--wsh-border); box-shadow: 0 3px 12px rgba(74,32,80,0.07); }
.wsh-etat-badge { font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; background: var(--wsh-bg-soft); color: #8f7d8c; }
.wsh-etat-livre { background: var(--wsh-green-bg); color: var(--wsh-green); }
.wsh-etat-expedie { background: #eaf1fb; color: #3a6bb0; }
.wsh-etat-prepa { background: #fff4e5; color: #b0763a; }

.wsh-status-empty { text-align: center; padding: 50px 20px; color: #a898a5; font-size: 13.5px; background: var(--wsh-bg-soft); border-radius: 14px; }
.wsh-status-empty.error { color: var(--wsh-red); background: var(--wsh-red-bg); }

.wsh-icon-btn {
  flex: 0 0 auto; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0; border: 1px solid var(--wsh-border-soft); border-radius: 9px; background: #fff; color: var(--wsh-primary-light);
  cursor: pointer; transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.wsh-icon-btn svg { width: 16px; height: 16px; }
.wsh-icon-btn:hover { color: var(--wsh-primary); border-color: var(--wsh-border); background: var(--wsh-bg-soft); }

/* Tableau detail commande/panier */
.wsh-detail-table-wrap { overflow-x: auto; border: 1px solid var(--wsh-border-soft); border-radius: 12px; margin-bottom: 16px; }
.wsh-detail-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.wsh-detail-table th { text-align: left; background: var(--wsh-bg-soft); color: var(--wsh-primary-light); font-weight: 600; padding: 9px 12px; font-size: 11px; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; }
.wsh-detail-table td { padding: 9px 12px; border-top: 1px solid var(--wsh-border-soft); color: #2b1f2b; }
.wsh-detail-table tbody tr:hover { background: var(--wsh-bg-page); }
.wsh-detail-meta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 10px 0 18px; font-size: 12.5px; color: #8f7d8c; }
.wsh-detail-total-row { display: flex; justify-content: flex-end; align-items: baseline; gap: 10px; padding: 0 4px 18px; font-size: 13px; color: #8f7d8c; }
.wsh-detail-total-row strong { font-size: 16px; font-weight: 700; color: var(--wsh-primary); }

/* ============================================================
   RESPONSIVE MOBILE
   ============================================================ */
@media (max-width: 640px) {
  #wsh-top { grid-template-columns: auto 1fr auto; grid-template-areas: "logo . right" "center center center" "phrase phrase phrase"; row-gap: 8px; }
  #wsh-phrase-dispo { margin-top: 0; white-space: normal; }
  .wsh-account-text { display: none; }
  .wsh-account-btn { padding: 8px; width: 34px; height: 34px; justify-content: center; }
  .wsh-photo, .wsh-photo-placeholder { width: 56px; height: auto; min-height: 100%; }
  .wsh-card-side { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; width: 100%; margin-top: 6px; }
  #wsh-cmd-bar { flex-direction: column; align-items: stretch; text-align: center; }
  .wsh-meta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .wsh-meta-field { width: 100%; gap: 2px; }
  .wsh-meta-field .wsh-mini-input { width: 100%; }
  .wsh-qtt-input { flex: 0 0 90px; min-width: 0; width: 90px; height: 40px; line-height: 40px; padding: 0 4px 0 10px; font-size: 12.5px; }
  .wsh-side-controls { flex-direction: row; gap: 8px; align-items: center; }
  .wsh-add-btn { flex-shrink: 0; width: 40px; height: 40px; padding: 0; border-radius: 9px; }
  .wsh-add-btn svg { width: 17px; height: 17px; }
  .wsh-add-btn-label { display: none; }
  #wsh-transparence-banner { padding: 12px 14px; }
  .wsh-transp-text { white-space: normal; }
  .wsh-fiche-link { font-size: 10.5px; padding: 4px 10px; }
  .wsh-variante { font-size: 10px; padding: 2px 7px; }
  .wsh-list-row { flex-direction: column; align-items: stretch; }
  #wsh-reset-row { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; scrollbar-width: none; }
  #wsh-reset-row::-webkit-scrollbar { display: none; }
  #wsh-reset-row-right { flex-wrap: nowrap; flex-shrink: 0; }
}

/* ============================================================
   ADMIN
   ============================================================ */
.admin-wrap { max-width: 1100px; margin: 0 auto; padding: 20px 16px 60px; }
.admin-header {
  background: var(--wsh-bg-soft); border: 1px solid var(--wsh-border-soft); border-radius: 16px;
  padding: 18px 24px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.admin-header h1 { font-size: 20px; color: var(--wsh-primary); font-weight: 700; margin: 0; }
.admin-header .sub { font-size: 12px; color: #8f7d8c; margin-top: 2px; }
.admin-header-actions { display: flex; align-items: center; gap: 10px; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 12.5px; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 12px rgba(74,32,80,0.06); }
.admin-table th { text-align: left; background: var(--wsh-bg-soft); color: var(--wsh-primary-light); font-weight: 600; padding: 10px 12px; font-size: 11px; text-transform: uppercase; white-space: nowrap; }
.admin-table td { padding: 10px 12px; border-top: 1px solid var(--wsh-border-soft); vertical-align: middle; }
.admin-table tbody tr:hover { background: var(--wsh-bg-page); }
.admin-badge { font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.admin-badge-attente { background: #fdece6; color: #d9613f; }
.admin-badge-ok { background: var(--wsh-green-bg); color: var(--wsh-green); }
.admin-badge-admin { background: #eaf1fb; color: #3a6bb0; }
.admin-badge-refuse { background: var(--wsh-red-bg); color: var(--wsh-red); }
.admin-edit-btn { background: var(--wsh-primary); color: #fff; border: none; border-radius: 999px; padding: 6px 14px; font-size: 11.5px; font-weight: 600; cursor: pointer; transition: background .15s ease; }
.admin-edit-btn:hover { background: var(--wsh-primary-light); }
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.admin-filter-row { display: flex; gap: 8px; }
.admin-filter-row button { background: var(--wsh-bg-soft); border: 1px solid var(--wsh-border-soft); color: var(--wsh-primary-light); font-size: 12px; font-weight: 600; padding: 8px 14px; border-radius: 999px; cursor: pointer; transition: background .15s ease, color .15s ease; }
.admin-filter-row button.active { background: var(--wsh-primary); color: #fff; border-color: var(--wsh-primary); }
.admin-search-input { padding: 9px 14px; border: 1.5px solid var(--wsh-border); border-radius: 999px; font-size: 13px; min-width: 220px; outline: none; background: var(--wsh-bg-soft); }
.admin-search-input:focus { border-color: var(--wsh-primary-light); background: #fff; }
.admin-empty-row td { text-align: center; padding: 30px; color: #a898a5; }

@media (max-width: 640px) {
  .admin-wrap { padding: 12px 12px 40px; }
  .admin-header { padding: 14px 16px; }
  .admin-table { font-size: 11.5px; }
  .admin-table th, .admin-table td { padding: 8px; }
}

.contact-page-wrap > .wsh-breadcrumb { margin-bottom: 12px; padding-top: 0; }

/* ============================================================
   HEADER / NAV V4
   ============================================================ */
.wsh-header {
  max-width: 1420px;
  padding-left: 18px;
  padding-right: 18px;
}
.wsh-topbar { max-width: 1420px; }
.wsh-header-main {
  grid-template-columns: auto minmax(320px, 1fr) auto;
  gap: 12px;
}
.wsh-header-nav-item.active,
#nav-contact.active {
  color: #85483d;
  background: #f8ddd5;
}
.wsh-header-nav-item.active:hover,
#nav-contact.active:hover {
  color: #754036;
  background: #f5d3ca;
}
.wsh-header-nav-spacer { flex: 1 1 auto; min-width: 16px; }
.wsh-franco-nav-badge { margin-left: auto; }
.wsh-franco-mobile-badge { display: none !important; margin: 0 auto 8px; width: max-content; }

.wsh-header-burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfd6dc;
  border-radius: 50%;
  background: #fff;
  color: #554a53;
  cursor: pointer;
  flex-shrink: 0;
}
.wsh-header-burger svg { width: 21px; height: 21px; }
.wsh-header-burger.active { background: #f8ddd5; border-color: #efc5ba; color: #85483d; }

/* Pages compte/contact : même gabarit que Le disponible. */
.wsh-page-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px 48px;
  animation: wsh-page-enter 0.35s ease-out;
}
@keyframes wsh-page-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .wsh-page-wrap { animation: none; }
}
body.wsh-page-leaving { animation: wsh-page-leave 0.14s ease-in forwards; }
@keyframes wsh-page-leave {
  from { opacity: 1; }
  to { opacity: 0; }
}
.wsh-page-wrap > .wsh-breadcrumb { margin-bottom: 14px; }
.wsh-page-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--wsh-border-soft);
  border-radius: 18px;
  padding: 28px 30px 32px;
  box-shadow: 0 2px 18px rgba(74,32,80,0.045);
}
.wsh-page-heading { margin-bottom: 24px; }
.wsh-page-heading h1 {
  margin: 0 0 5px;
  color: var(--wsh-primary);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.wsh-page-heading p { margin: 0; color: #8f7d8c; font-size: 13px; }
.wsh-page-heading-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.wsh-cde-maj-bloc { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.wsh-maj-btn { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--wsh-border); border-radius: 10px; padding: 9px 16px; font-weight: 600; }
.wsh-maj-btn svg { width: 15px; height: 15px; }
#commandes-maj-info { color: #a898a5; }

.wsh-cde-table-wrap { overflow-x: auto; border: 1px solid var(--wsh-border-soft); border-radius: 14px; }
.wsh-cde-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.wsh-cde-table thead th { text-align: left; padding: 12px 16px; background: var(--wsh-bg-soft); color: #6b5f6b; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; border-bottom: 1px solid var(--wsh-border-soft); }
.wsh-cde-table tbody td { padding: 13px 16px; border-bottom: 1px solid var(--wsh-border-soft); vertical-align: middle; }
.wsh-cde-table tbody tr:last-child td { border-bottom: none; }
.wsh-cde-table tbody tr:hover { background: var(--wsh-bg-soft); }
.wsh-cde-ref { color: #a898a5; font-size: 11.5px; }
.wsh-cde-total { font-weight: 700; color: var(--wsh-primary); }
.wsh-cde-actions-col { text-align: right; white-space: nowrap; }

.wsh-page-form { max-width: 760px; }
.wsh-page-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 18px; }
.wsh-page-actions { display: flex; justify-content: flex-start; margin-top: 18px; }

/* Il ne reste en bas que la jauge de franco. */
#wsh-franco-bar {
  bottom: 18px;
  width: min(560px, calc(100% - 32px));
}

@media (max-width: 900px) {
  .wsh-header {
    padding: 11px 12px 0;
  }
  .wsh-header-main {
    grid-template-columns: auto minmax(90px, 1fr) auto;
    gap: 8px;
  }
  .wsh-header-brand { grid-column: auto; grid-row: auto; }
  .wsh-header-search {
    grid-column: auto;
    grid-row: auto;
    min-width: 0;
  }
  .wsh-header-actions { grid-column: auto; grid-row: auto; gap: 6px; }
  .wsh-header-logo { height: 60px; max-width: 155px; }
  .wsh-header-account-text, .wsh-header-account-chevron { display: none; }
  .wsh-header-account-pill { padding: 5px; }
  .wsh-header-account-icon { width: 34px; height: 34px; }
  .wsh-header-cart, .wsh-header-burger { width: 44px; height: 44px; }
  .wsh-header-burger { display: inline-flex; }
  #search-input { height: 42px; padding-left: 39px; padding-right: 10px; font-size: 12px; }
  .wsh-header-search-icon { left: 13px; width: 17px; height: 17px; }

  .wsh-header-nav {
    display: none;
    margin-top: 9px;
    padding: 8px 0 10px;
    border-top: 1px solid #f0eaee;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
  }
  .wsh-header-nav.mobile-open { display: flex; }
  .wsh-header-nav-item {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
    font-size: 13px;
  }
  .wsh-header-nav-spacer,
  .wsh-franco-nav-badge { display: none !important; }
  .wsh-nav-tooltip { display: none; }

  .wsh-franco-mobile-badge.show { display: block !important; }
  #wsh-franco-bar { bottom: 14px; }
}

@media (max-width: 560px) {
  .wsh-header-main { gap: 5px; }
  .wsh-header-logo { height: 48px; max-width: 112px; }
  .wsh-header-actions { gap: 4px; }
  .wsh-header-account-pill { border: 0; padding: 3px; }
  .wsh-header-account-icon { width: 34px; height: 34px; }
  .wsh-header-cart, .wsh-header-burger { width: 40px; height: 40px; }
  .wsh-header-cart { border: 0; }
  .wsh-header-burger { border: 0; }
  #search-input {
    height: 38px;
    min-width: 0;
    padding: 0 8px 0 34px;
    font-size: 11px;
  }
  #search-input::placeholder { font-size: 0; }
  #search-input::placeholder { color: transparent; }
  .wsh-header-search::after {
    content: 'Rechercher';
    position: absolute;
    left: 34px;
    top: 50%;
    transform: translateY(-50%);
    color: #9f959c;
    font-size: 10.5px;
    pointer-events: none;
  }
  .wsh-header-search:focus-within::after,
  .wsh-header-search:has(input:not(:placeholder-shown))::after { display: none; }
  .wsh-header-search-icon { left: 11px; width: 15px; height: 15px; }
  .wsh-header-cart-count { top: -4px; right: -4px; }
  .wsh-page-wrap { padding: 0 12px 38px; }
  .wsh-page-card { padding: 22px 16px 24px; border-radius: 14px; }
  .wsh-page-form-grid { grid-template-columns: 1fr; gap: 0; }
  .wsh-page-heading h1 { font-size: 20px; }
}

@media (max-width: 400px) {
  .wsh-header-logo { height: 43px; max-width: 96px; }
  .wsh-header-main { gap: 3px; }
  .wsh-header-actions { gap: 2px; }
  .wsh-header-account-icon { width: 31px; height: 31px; }
  .wsh-header-cart, .wsh-header-burger { width: 36px; height: 36px; }
  #search-input { height: 36px; }
}

/* ============================================================
   AJUSTEMENTS V5 — centrage login, fil d'Ariane header,
   franco en haut desktop, onglet actif souligné
   ============================================================ */

/* La box de connexion est centrée dans la zone visible. */
#vue-login {
  min-height: calc(100vh - 24px);
  align-items: center;
  justify-content: center;
  width: 100%;
}
#vue-login .wsh-login {
  width: min(400px, 100%);
  margin: 0 auto;
}

/* Le fil d'Ariane déborde du gabarit 1200px pour s'aligner avec le header 1420px. */
.wsh-breadcrumb-wide {
  width: min(1420px, 100vw);
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
  padding-left: 18px;
  padding-right: 18px;
}

/* Onglet actif : plus de fond corail, uniquement un soulignement corail pastel. */
.wsh-header-nav-item {
  border-bottom: 3px solid transparent;
  border-radius: 0;
}
.wsh-header-nav-item.active,
#nav-contact.active {
  color: #9a5849;
  background: transparent !important;
  border-bottom-color: #e2a08e;
  font-weight: 500;
}
.wsh-header-nav-item.active:hover,
#nav-contact.active:hover {
  color: #85483d;
  background: transparent !important;
  border-bottom-color: #d88e7a;
}

/* La navigation et le franco partagent la ligne basse du header sur desktop. */
.wsh-header-lower {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin-top: 10px;
  border-top: 1px solid #f0eaee;
}
.wsh-header-lower .wsh-header-nav {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  margin-top: 0;
  border-top: 0;
}

/* Barre de progression franco replacée dans le header, avec son étiquette. */
#wsh-franco-bar {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  width: min(620px, 46vw);
  min-width: 400px;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 6px 0 8px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  z-index: auto;
}
#wsh-franco-bar.show { display: flex; }
.wsh-franco-progress-content { flex: 1 1 auto; min-width: 0; }
#wsh-franco-label {
  margin: 0 0 6px;
  text-align: left;
  font-size: 10.5px;
  line-height: 1.3;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
#wsh-franco-rects { width: 100%; }
.wsh-franco-rect { height: 7px; }
.wsh-franco-desktop-badge { margin-left: 2px; }
.wsh-franco-mobile-badge { display: none !important; }

/* Le burger ouvert reste neutre : l'état de page est porté par le soulignement des onglets. */
.wsh-header-burger.active {
  background: #f7f5f6;
  border-color: #d8cfd5;
  color: #554a53;
}

@media (max-width: 900px) {
  .wsh-breadcrumb-wide {
    width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }

  .wsh-header-lower {
    display: block;
    margin-top: 0;
    border-top: 0;
  }
  .wsh-header-lower .wsh-header-nav {
    width: 100%;
  }

  /* Sur mobile, la jauge reste en bas comme demandé précédemment. */
  #wsh-franco-bar {
    position: fixed;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: min(560px, calc(100% - 24px));
    min-width: 0;
    padding: 10px 14px;
    background: #fff;
    border: 1.5px solid var(--wsh-border);
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(74,32,80,0.1);
    z-index: 998;
  }
  #wsh-franco-bar.show { display: block; }
  #wsh-franco-label {
    text-align: center;
    margin-bottom: 6px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: 11px;
  }
  .wsh-franco-desktop-badge { display: none !important; }
  .wsh-franco-mobile-badge.show {
    display: block !important;
    margin: 0 auto 8px;
    width: max-content;
  }
}

@media (max-width: 560px) {
  #vue-login { min-height: calc(100vh - 16px); }
  #vue-login .wsh-login { width: 100%; }
}
/* Petits ajustements de finition V5. */
#vue-login { display: flex; }
@media (min-width: 901px) {
  /* Plus d'espace pour garder le libellé du franco sur une seule ligne. */
  #wsh-franco-bar {
    width: min(680px, 48vw);
    min-width: 560px;
    flex: 0 1 680px;
    gap: 14px;
  }
  .wsh-franco-progress-content { min-width: 0; }
  #wsh-franco-label {
    font-size: 12px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
  }
  .wsh-franco-desktop-badge.show {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    min-width: 118px;
    min-height: 38px;
    padding: 6px 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
    border-radius: 12px;
  }
}


/* ============================================================
   FINITIONS V6 — franco desktop + album
   ============================================================ */
@media (min-width: 901px) {
  /* La jauge est calée contre le bord droit utile du header. */
  #wsh-franco-bar {
    margin-left: auto;
    margin-right: 0;
  }

  /* Badge du franco sur une seule ligne. */
  .wsh-franco-desktop-badge.show {
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 6px 12px;
    white-space: nowrap;
    line-height: 1.2;
    border-radius: 999px;
  }
}

.wsh-album-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.wsh-album-item {
  overflow: hidden;
  border: 1px solid var(--wsh-border-soft);
  border-radius: 14px;
  background: #fff;
}
.wsh-album-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f6f3f5;
}
.wsh-album-caption {
  padding: 10px 12px 12px;
  color: #544b52;
  font-size: 12px;
  line-height: 1.35;
}
.wsh-album-caption strong {
  display: block;
  color: #382f36;
  font-weight: 600;
  margin-bottom: 2px;
}
.wsh-album-empty {
  padding: 28px 0;
  color: #8f7d8c;
  font-size: 13px;
}
@media (max-width: 900px) {
  .wsh-album-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}
@media (max-width: 520px) {
  .wsh-album-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   V8 — Informations, retour haut, administration, modales desktop
   ============================================================ */
.wsh-readonly-input,
.wsh-field-block input[readonly] {
  background: #f4f1f3 !important;
  color: #7e747b !important;
  border-color: #e6dde2 !important;
  cursor: not-allowed;
}
.wsh-field-help { display:block; margin-top:5px; color:#9a9097; font-size:11px; }

.wsh-scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid #e2d9de;
  border-radius: 50%;
  background: #fff;
  color: var(--wsh-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(74,32,80,.14);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease, background .16s ease;
  cursor: pointer;
}
.wsh-scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.wsh-scroll-top:hover { background: var(--wsh-bg-soft); }
.wsh-scroll-top svg { width: 21px; height: 21px; }

.wsh-installer-flottant {
  position: fixed;
  right: 78px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: var(--wsh-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(74,32,80,.22);
  z-index: 997;
  cursor: pointer;
  transition: background .16s ease, transform .16s ease;
}
.wsh-installer-flottant:hover { background: var(--wsh-primary-light); transform: translateY(-1px); }
.wsh-installer-flottant svg { width: 17px; height: 17px; flex-shrink: 0; }

@media (max-width: 640px) {
  .wsh-installer-flottant { right: 68px; bottom: 18px; padding: 10px 14px; font-size: 12px; }
  .wsh-installer-flottant span { display: none; }
  .wsh-installer-flottant { width: 43px; height: 43px; padding: 0; justify-content: center; border-radius: 50%; }
}

/* Administration dans le même langage visuel que le webshop. */
.admin-page-wrap { padding-bottom: 70px; }
.admin-hero-card {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:26px 28px;
  margin-bottom:16px;
  background:#fff;
  border:1px solid var(--wsh-border-soft);
  border-radius:18px;
  box-shadow:0 2px 18px rgba(74,32,80,.045);
}
.admin-hero-copy { max-width:760px; }
.admin-kicker { display:block; margin-bottom:5px; color:var(--wsh-accent); font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.06em; }
.admin-hero-card h1 { margin:0 0 5px; color:var(--wsh-primary); font-size:24px; font-weight:600; letter-spacing:-.015em; }
.admin-hero-card p { margin:0; color:#8f7d8c; font-size:13px; line-height:1.55; }
.admin-sync-btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; flex-shrink:0; white-space:nowrap; }
.admin-sync-btn svg { width:17px; height:17px; }
.admin-global-msg { max-width:none !important; }
.admin-stat-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin:0 0 16px; }
.admin-stat-card { background:#fff; border:1px solid var(--wsh-border-soft); border-radius:15px; padding:17px 18px; }
.admin-stat-card span { display:block; color:#8f7d8c; font-size:11.5px; margin-bottom:3px; }
.admin-stat-card strong { display:block; color:var(--wsh-primary); font-size:24px; line-height:1.1; font-weight:600; }
.admin-panel { background:#fff; border:1px solid var(--wsh-border-soft); border-radius:18px; box-shadow:0 2px 18px rgba(74,32,80,.04); overflow:hidden; margin-bottom:24px; }
.admin-panel:last-child { margin-bottom:0; }
.admin-section-title { font-size:15px; font-weight:700; color:var(--wsh-primary); margin:0; padding:18px 20px 0; }

.admin-section-header {
  width:100%; display:flex; align-items:center; gap:16px; padding:18px 20px;
  background:none; border:none; cursor:pointer; text-align:left; font:inherit;
}
.admin-section-header .admin-section-title { padding:0; flex-shrink:0; }
.admin-section-recap { display:flex; align-items:center; gap:8px; flex-wrap:wrap; flex:1; }
.admin-recap-pill {
  font-size:11.5px; color:#6b5f6b; background:var(--wsh-bg-soft); border-radius:999px;
  padding:4px 11px; white-space:nowrap;
}
.admin-recap-pill strong { color:var(--wsh-primary); font-weight:700; }
.admin-recap-pill.admin-recap-ok { background:var(--wsh-green-bg); }
.admin-recap-pill.admin-recap-ok strong { color:var(--wsh-green); }
.admin-recap-pill.admin-recap-attente { background:#fdf0e2; }
.admin-recap-pill.admin-recap-attente strong { color:#b0763a; }
.admin-recap-pill.admin-recap-vert { background:var(--wsh-green-bg); }
.admin-recap-pill.admin-recap-vert strong { color:var(--wsh-green); }
.admin-recap-pill.admin-recap-violet { background:#f0e6f2; }
.admin-recap-pill.admin-recap-violet strong { color:var(--wsh-primary); }
.admin-recap-pill.admin-recap-corail { background:#fdece6; }
.admin-recap-pill.admin-recap-corail strong { color:#d9613f; }

.admin-toggle-avances-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--wsh-border-soft); color: var(--wsh-primary-light);
  border-radius: 10px; padding: 9px 14px; font-size: 12.5px; font-weight: 600; cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.admin-toggle-avances-btn svg { width: 14px; height: 14px; }
.admin-toggle-avances-btn:hover { background: var(--wsh-bg-soft); }
.admin-toggle-avances-btn.active { background: var(--wsh-primary); color: #fff; border-color: var(--wsh-primary); }

.admin-export-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--wsh-border-soft); color: var(--wsh-primary-light);
  border-radius: 10px; padding: 9px 14px; font-size: 12.5px; font-weight: 600; cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.admin-export-btn svg { width: 14px; height: 14px; }
.admin-export-btn:hover { background: var(--wsh-bg-soft); }

.admin-filtres-avances {
  display: flex; flex-wrap: wrap; align-items: end; gap: 14px;
  padding: 16px 18px; background: var(--wsh-bg-soft); border-bottom: 1px solid var(--wsh-border-soft);
}
.admin-filtres-avances .wsh-field-block { margin-bottom: 0; min-width: 150px; }
.admin-reset-filtres-btn { margin-bottom: 3px; white-space: nowrap; }

.admin-sync-body { padding: 18px 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.admin-sync-body-sep { border-top: 1px solid var(--wsh-border-soft); }
.admin-sync-desc { margin: 0; font-size: 13px; color: #8f7d8c; }
.admin-section-chevron { width:18px; height:18px; color:#a898a5; flex-shrink:0; transition:transform .2s ease; }
.admin-panel.admin-collapsed .admin-section-chevron { transform:rotate(-90deg); }
.admin-section-body { padding:0 0 4px; }
.admin-panel.admin-collapsed .admin-section-body { display:none; }
.admin-toolbar-modern { margin:0; padding:16px 18px; border-bottom:1px solid var(--wsh-border-soft); }
.admin-toolbar-actions { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.admin-search-wrap { position:relative; display:block; }
.admin-search-wrap svg { position:absolute; left:13px; top:50%; width:16px; height:16px; transform:translateY(-50%); color:#9a9097; pointer-events:none; }
.admin-search-wrap .admin-search-input { padding-left:38px; min-width:290px; background:#fbf9fa; }
.admin-create-btn { white-space:nowrap; }
.admin-table-scroll { width:100%; overflow:auto; }
.admin-table-modern { min-width:1120px; border-radius:0; box-shadow:none; }
.admin-table-modern th { background:#faf7f9; color:#766970; padding:12px 13px; font-size:10.5px; }
.admin-table-modern td { padding:12px 13px; }
.admin-table-modern tbody tr:hover { background:#fdf9f8; }
.admin-client-name { color:#453b42; font-weight:600; }
.admin-email-cell { color:#6f646b; }
.admin-role-client { color:#756a71; font-size:11.5px; }
.admin-actions-col { text-align:right !important; }
.admin-row-actions { display:flex; justify-content:flex-end; align-items:center; gap:6px; }
.admin-icon-btn { width:32px; height:32px; display:inline-flex; align-items:center; justify-content:center; border-radius:8px; border:1px solid #e7dfe4; background:#fff; color:#675a63; cursor:pointer; transition:background .15s ease,border-color .15s ease,color .15s ease; }
.admin-icon-btn svg { width:15px; height:15px; flex-shrink:0; }
.admin-edit-btn:hover { background:var(--wsh-bg-soft); border-color:#d9ccd5; color:var(--wsh-primary); }
.admin-delete-btn:hover { background:var(--wsh-red-bg); border-color:#efc6c2; color:var(--wsh-red); }
.admin-empty-cell { text-align:center; padding:34px !important; color:#a898a5; }
.admin-modal-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 18px; }
.admin-modal-grid-span { grid-column:1/-1; }
.admin-delete-icon { width:46px; height:46px; display:flex; align-items:center; justify-content:center; margin:0 0 14px; border-radius:13px; background:var(--wsh-red-bg); color:var(--wsh-red); }
.admin-delete-icon svg { width:22px; height:22px; }
.wsh-btn-danger { border:0; border-radius:10px; padding:10px 16px; background:var(--wsh-red); color:#fff; font:inherit; font-size:12.5px; font-weight:600; cursor:pointer; }
.wsh-btn-danger:hover { background:#972f2f; }
.wsh-btn-danger:disabled { opacity:.55; cursor:default; }
.wsh-account-menu-item.is-current { background:var(--wsh-bg-soft); color:var(--wsh-primary); }

@media (min-width: 901px) {
  /* Toutes les pop-ups gagnent de l'espace sur ordinateur. */
  .wsh-modal { max-width: 640px; padding: 30px 32px; }
  .wsh-modal.wsh-modal-wide { max-width: 1040px; }
  .wsh-modal.wsh-modal-admin { max-width: 780px; }
  .wsh-modal.wsh-modal-confirm { max-width: 560px; }
}

@media (max-width: 900px) {
  .admin-hero-card { align-items:flex-start; flex-direction:column; padding:22px 18px; }
  .admin-sync-btn { width:100%; }
  .admin-stat-grid { grid-template-columns:1fr 1fr 1fr; gap:8px; }
  .admin-stat-card { padding:14px 12px; }
  .admin-stat-card strong { font-size:20px; }
  .admin-toolbar-modern { align-items:stretch; flex-direction:column; }
  .admin-toolbar-actions, .admin-search-wrap, .admin-search-wrap .admin-search-input { width:100%; min-width:0; }
  .admin-create-btn { width:100%; }
  .admin-modal-grid { grid-template-columns:1fr; gap:0; }
  .admin-modal-grid-span { grid-column:auto; }
  .wsh-scroll-top { right:14px; bottom:82px; width:43px; height:43px; }
}


/* ============================================================
   FINITIONS V7.2 — jauge franco 5 + page Notre équipe
/* ============================================================
   FRANCO 5 CAISSES — alignement pleine largeur, cohérent avec Franco 2
   ============================================================ */

.wsh-team-page-card {
  padding: 0;
  overflow: hidden;
}
.wsh-team-hero {
  padding: 40px 32px 28px;
  text-align: center;
}
.wsh-team-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--wsh-primary-light);
  font-size: 12.5px;
  font-weight: 700;
}
.wsh-team-hero h1 {
  margin: 0 0 10px;
  font-size: 32px;
  color: var(--wsh-text);
}
.wsh-team-hero p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--wsh-text-soft);
  font-size: 14.5px;
  line-height: 1.6;
}
.wsh-team-row {
  padding: 8px 32px 36px;
}
.wsh-team-row-title {
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--wsh-border-soft);
  font-size: 13px;
  font-weight: 700;
  color: var(--wsh-primary);
}
.wsh-team-grid {
  display: grid;
  gap: 18px;
}
.wsh-team-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wsh-team-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.wsh-team-grid-1 { grid-template-columns: minmax(0, 340px); justify-content: center; }
.wsh-team-member {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--wsh-border-soft);
  border-radius: 18px;
  background: var(--wsh-bg-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.wsh-team-member:hover {
  transform: translateY(-3px);
  border-color: var(--wsh-border);
  box-shadow: 0 10px 28px rgba(74,32,80,.10);
}
.wsh-team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--wsh-bg-soft);
}
.wsh-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.wsh-team-member h3 {
  margin: 0 0 5px;
  font-size: 17px;
  line-height: 1.25;
  color: var(--wsh-text);
}
.wsh-team-role {
  min-height: 36px;
  margin: 0 0 16px;
  color: var(--wsh-primary);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.4;
}
.wsh-team-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.wsh-team-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--wsh-text-soft);
  font-size: 12px;
  text-decoration: none;
}
.wsh-team-contact a:hover { color: var(--wsh-primary); }
.wsh-team-contact svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
.wsh-team-contact span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.wsh-team-linkedin {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--wsh-border-soft);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .wsh-team-grid-3, .wsh-team-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .wsh-team-hero { padding: 28px 18px 20px; }
  .wsh-team-hero h1 { font-size: 24px; }
  .wsh-team-row { padding: 4px 18px 26px; }
  .wsh-team-grid-3, .wsh-team-grid-4, .wsh-team-grid-1 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .wsh-team-member { padding: 17px; }
  .wsh-team-role { min-height: 0; }
}


/* ============================================================
   FAVORIS PRODUITS
   ============================================================ */
.wsh-fav-btn {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--wsh-border-soft);
  border-radius: 50%;
  background: #fff;
  color: #9a8f97;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease, transform .1s ease;
}
.wsh-fav-btn svg {
  width: 16px;
  height: 16px;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill .15s ease;
}
.wsh-fav-btn:hover {
  color: #a65463;
  border-color: #d7afb7;
  background: #fff8f9;
}
.wsh-fav-btn:active { transform: scale(.94); }
.wsh-fav-btn.is-active {
  color: #a94458;
  border-color: #d9a6b1;
  background: #fff4f6;
}
.wsh-fav-btn.is-active svg { fill: currentColor; }
.wsh-fav-btn:disabled { cursor: wait; opacity: .65; }

@media (max-width: 640px) {
  .wsh-fav-btn { width: 32px; height: 32px; }
}
