.ps-imageslider .carousel-item { padding: 0; }

.lixee-slide { position: relative; width: 100%; }

.lixee-slide__img {
  display: block;
  width: 100%;
  height: clamp(320px, 40vw, 520px);
  object-fit: cover;
}

.lixee-slide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg,
    rgba(255,255,255,.96) 0%,
    rgba(255,255,255,.88) 32%,
    rgba(255,255,255,0) 62%);
}

.lixee-slide__text {
  max-width: 46ch;
  padding: 0 clamp(2rem, 6vw, 5rem);
}

.lixee-slide__title {
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.lixee-slide__desc { font-size: 1.05rem; line-height: 1.6; }
.lixee-slide__cta  { margin-top: 1.5rem; }

.carousel-control-prev, .carousel-control-next { width: 4%; }

@media (max-width: 768px) {
  .lixee-slide__img { height: 400px; }
  .lixee-slide__overlay {
    background: linear-gradient(180deg,
      rgba(255,255,255,.94) 0%,
      rgba(255,255,255,.78) 55%,
      rgba(255,255,255,.15) 100%);
    align-items: flex-start;
    padding-top: 2rem;
  }
}


/* Alignement du texte sur la grille du header */
.lixee-slide__overlay {
  padding-left: clamp(1rem, 12vw, 20rem);
}

.lixee-slide__text {
  padding-left: 15;
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

@media (max-width: 991px) {
  .lixee-slide__overlay { padding-left: 1.5rem; }
}

/* Cas d'usage */
.lixee-usecases { max-width: 1320px; margin: 0 auto; padding: 3.5rem 1rem; }

.lixee-usecases__head { text-align: center; margin-bottom: 2.5rem; }
.lixee-usecases__head h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 0 0 .5rem; }
.lixee-usecases__head p { opacity: .75; margin: 0; }

.lixee-usecases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.uc-card {
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.uc-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-2px); }

.uc-card__icon { font-size: 2rem; line-height: 1; margin-bottom: .9rem; }
.uc-card h3 { font-size: 1.2rem; margin: 0 0 .6rem; }
.uc-card p { font-size: .97rem; line-height: 1.55; opacity: .85; flex-grow: 1; }

.uc-card__tags { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 1rem 0; }
.uc-card__tags li {
  font-size: .78rem; padding: .22rem .6rem; border-radius: 999px;
  background: rgba(11,105,246,.1); color: #0b69f6;
}

.uc-card__link { font-weight: 600; text-decoration: none; }
.uc-card__link::after { content: " →"; }
.uc-card__link:hover { text-decoration: underline; }

.lixee-usecases__foot { text-align: center; margin-top: 2.5rem; font-size: .95rem; opacity: .8; }

/* Manifesto + cas d'usage */
.lixee-manifesto { max-width: 1140px; margin: 0 auto; padding: 4rem 1rem; }

.lixee-manifesto__intro { text-align: center; max-width: 62ch; margin: 0 auto 3.5rem; }
.lixee-manifesto__eyebrow {
  text-transform: uppercase; letter-spacing: .09em; font-size: .78rem;
  font-weight: 600; opacity: .65; margin-bottom: .8rem;
}
.lixee-manifesto__intro h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.15; margin: 0 0 1rem; }
.lixee-manifesto__lead { font-size: 1.08rem; line-height: 1.65; opacity: .88; }

.lixee-manifesto__pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem 2.5rem; padding: 2.5rem 0; margin-bottom: 3rem;
  border-top: 1px solid rgba(0,0,0,.08); border-bottom: 1px solid rgba(0,0,0,.08);
}
.pillar h3 { font-size: 1.05rem; margin: 0 0 .5rem; }
.pillar p { font-size: .94rem; line-height: 1.55; opacity: .82; margin: 0; }

.lixee-manifesto__usecases h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem); text-align: center; margin: 0 0 2.5rem;
}
.uc { max-width: 70ch; margin: 0 auto 2.25rem; }
.uc h3 { font-size: 1.2rem; margin: 0 0 .6rem; }
.uc p { font-size: 1rem; line-height: 1.65; opacity: .88; margin: 0 0 .5rem; }
.uc__note { font-size: .88rem !important; opacity: .65 !important; font-style: italic; }

.lixee-manifesto__cta {
  text-align: center; margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
.lixee-manifesto__cta p { margin-bottom: 1.2rem; font-size: 1.05rem; }
.lixee-manifesto__link { margin-left: 1.5rem; text-decoration: underline; text-underline-offset: .25em; }

@media (max-width: 640px) {
  .lixee-manifesto__link { display: block; margin: 1rem 0 0; }
}

/* Bloc blog */
.lixee-blog { max-width: 1140px; margin: 0 auto; padding: 3.5rem 1rem; }
.lixee-blog__head { text-align: center; max-width: 60ch; margin: 0 auto 2.5rem; }
.lixee-blog__eyebrow {
  text-transform: uppercase; letter-spacing: .09em; font-size: .78rem;
  font-weight: 600; opacity: .65; margin-bottom: .6rem;
}
.lixee-blog__head h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); margin: 0 0 .8rem; }
.lixee-blog__head p { opacity: .8; line-height: 1.6; margin: 0; }

.lixee-blog__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem;
}

.blog-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid rgba(0,0,0,.09); border-radius: 14px; padding: 1.5rem;
  transition: box-shadow .2s ease, transform .2s ease;
}
.blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-2px); }
.blog-card__tag {
  display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
  padding: .22rem .6rem; border-radius: 999px; background: rgba(11,105,246,.1); color: #0b69f6;
  margin-bottom: .9rem;
}
.blog-card h3 { font-size: 1.08rem; line-height: 1.3; margin: 0 0 .5rem; }
.blog-card p { font-size: .92rem; line-height: 1.5; opacity: .78; margin: 0; }

.lixee-blog__foot { text-align: center; margin-top: 2.5rem; }

/* Cartes blog : spans en blocs */
.blog-card__title { display: block; font-size: 1.08rem; font-weight: 600; line-height: 1.3; margin-bottom: .5rem; }
.blog-card__desc  { display: block; font-size: .92rem; line-height: 1.5; opacity: .78; }

/* Piliers : 4 colonnes sur une ligne */
.lixee-manifesto__pillars { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.pillar h3 { font-size: .98rem; }
.pillar p  { font-size: .89rem; }

@media (max-width: 900px) {
  .lixee-manifesto__pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .lixee-manifesto__pillars { grid-template-columns: 1fr; }
}

/* Mobile : texte sous l'image, plus de superposition */
@media (max-width: 768px) {
  .lixee-slide__overlay {
    position: static;
    background: none;
    padding: 1.25rem 1.25rem 1.75rem;
    display: block;
  }
  .lixee-slide__img { max-height: 260px; object-fit: contain; }
  .lixee-slide__text { max-width: 100%; padding: 0; }
  .lixee-slide__title { font-size: 1.35rem; }
  .lixee-slide__desc  { font-size: .95rem; }

  /* Le carrousel doit s'adapter à la hauteur variable des slides */
  .ps-imageslider .carousel-item { height: auto; }
  .carousel-control-prev, .carousel-control-next { align-items: flex-start; padding-top: 5rem; }
}

/* Mobile : image entière, sans recadrage (format d'origine 3:1) */
@media (max-width: 768px) {
  .lixee-slide__img {
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }
}

/* Icônes des piliers (data-URI, insensibles à l'éditeur) */
.lixee-manifesto__pillars .pillar::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: .8rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.pillar:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b69f6' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18.5 17H7a4.5 4.5 0 0 1-.6-8.96'/%3E%3Cpath d='M8.2 6.3A5.5 5.5 0 0 1 17.4 9.4a3.8 3.8 0 0 1 2.9 3.2'/%3E%3Cline x1='3' y1='3' x2='21' y2='21'/%3E%3C/svg%3E");
}

.pillar:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b69f6' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 6 3 12 9 18'/%3E%3Cpolyline points='15 6 21 12 15 18'/%3E%3C/svg%3E");
}

.pillar:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b69f6' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='2.4'/%3E%3Ccircle cx='5' cy='5' r='2.2'/%3E%3Ccircle cx='19' cy='5' r='2.2'/%3E%3Ccircle cx='5' cy='19' r='2.2'/%3E%3Ccircle cx='19' cy='19' r='2.2'/%3E%3Cline x1='6.6' y1='6.6' x2='10.3' y2='10.3'/%3E%3Cline x1='17.4' y1='6.6' x2='13.7' y2='10.3'/%3E%3Cline x1='6.6' y1='17.4' x2='10.3' y2='13.7'/%3E%3Cline x1='17.4' y1='17.4' x2='13.7' y2='13.7'/%3E%3C/svg%3E");
}

.pillar:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b69f6' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 21V4'/%3E%3Cpath d='M5 4c3-1.6 6-1.6 9 0s6 1.6 9 0v9c-3 1.6-6 1.6-9 0s-6-1.6-9 0'/%3E%3Cpath d='M11 4.6v9'/%3E%3Cpath d='M17 5.2v9'/%3E%3C/svg%3E");
}

/* Drapeau tricolore avant l'eyebrow */
.lixee-manifesto__eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 12px;
  margin-right: .5rem;
  vertical-align: -1px;
  border-radius: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='1' height='2' x='0' fill='%23002395'/%3E%3Crect width='1' height='2' x='1' fill='%23ffffff'/%3E%3Crect width='1' height='2' x='2' fill='%23ED2939'/%3E%3C/svg%3E");
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

/* Bloc compatibilité */
.lixee-compat { max-width: 1140px; margin: 0 auto; padding: 3.5rem 1rem; }
.lixee-compat__head { text-align: center; max-width: 60ch; margin: 0 auto 2.5rem; }
.lixee-compat__eyebrow {
  text-transform: uppercase; letter-spacing: .09em; font-size: .78rem;
  font-weight: 600; opacity: .65; margin-bottom: .6rem;
}
.lixee-compat__head h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); margin: 0 0 .8rem; }
.lixee-compat__head p { opacity: .8; line-height: 1.6; margin: 0; }

.lixee-compat__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.compat-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid rgba(0,0,0,.09); border-radius: 12px; padding: 1.1rem 1.25rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.compat-card:hover { border-color: rgba(11,105,246,.4); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.compat-card__name { display: block; font-weight: 600; margin-bottom: .25rem; }
.compat-card__desc { display: block; font-size: .85rem; opacity: .72; line-height: 1.4; }

.lixee-compat__foot { text-align: center; margin-top: 2.5rem; }
.lixee-compat__foot p { margin-bottom: 1rem; opacity: .85; }
.lixee-compat__foot a:not(.btn) { margin-left: 1.25rem; text-decoration: underline; text-underline-offset: .25em; }

/* Tests externes */
.lixee-blog__reviews { text-align: center; margin-top: 2.5rem; }
.lixee-blog__reviews-label {
  display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .07em;
  font-weight: 600; opacity: .55; margin-bottom: .7rem;
}
.lixee-blog__reviews a { display: inline-block; margin: 0 .85rem; font-size: .93rem; }

@media (max-width: 860px) { .lixee-compat__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .lixee-compat__grid { grid-template-columns: 1fr; }
  .lixee-compat__foot a:not(.btn) { display: block; margin: 1rem 0 0; }
}

/* Avis presse */
.lixee-reviews { max-width: 820px; margin: 0 auto; padding: 3rem 1rem; text-align: center; }

.lixee-reviews__quote {
  border-left: 3px solid rgba(11,105,246,.35);
  padding: .25rem 0 .25rem 1.5rem;
  text-align: left;
  margin-bottom: 2rem;
}
.lixee-reviews__text {
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
  line-height: 1.5;
  margin: 0 0 .9rem;
  font-weight: 300;
}
.lixee-reviews__source { font-size: .92rem; opacity: .75; margin: 0; }
.lixee-reviews__score {
  display: inline-block; margin-left: .6rem; padding: .15rem .55rem;
  border-radius: 999px; background: rgba(11,105,246,.1); color: #0b69f6;
  font-size: .82rem; font-weight: 600;
}

.lixee-reviews__label {
  display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .07em;
  font-weight: 600; opacity: .5; margin-bottom: .7rem;
}
.lixee-reviews__others a {
  display: inline-block; margin: 0 .7rem .45rem; font-size: .9rem; opacity: .85;
}

.lixee-reviews__group { margin-bottom: 1.75rem; }
.lixee-reviews__group a {
  display: inline-block; margin: 0 .7rem .45rem; font-size: .9rem; opacity: .85;
}

.lixee-reviews__source a { color: inherit; text-decoration: none; }
.lixee-reviews__source a:hover { text-decoration: underline; text-underline-offset: .2em; }

/* En-tête du bloc avis */
.lixee-reviews__head { max-width: 60ch; margin: 0 auto 2.5rem; }
.lixee-reviews__eyebrow {
  text-transform: uppercase; letter-spacing: .09em; font-size: .78rem;
  font-weight: 600; opacity: .65; margin-bottom: .6rem;
}
.lixee-reviews__head h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); margin: 0 0 .8rem; }
.lixee-reviews__head p { opacity: .8; line-height: 1.6; margin: 0; }

/* Étoile devant l'eyebrow des avis */
.lixee-reviews__eyebrow::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: .45rem;
  vertical-align: -2px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230b69f6'%3E%3Cpath d='M12 2.4l2.95 5.98 6.6.96-4.78 4.66 1.13 6.57L12 17.47l-5.9 3.1 1.13-6.57L2.45 9.34l6.6-.96z'/%3E%3C/svg%3E");
}

/* Icône compatibilité : connecteurs reliés */
.lixee-compat__eyebrow::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: .45rem;
  vertical-align: -2px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b69f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.5.5l3-3a5 5 0 0 0-7-7l-1.7 1.7'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.5-.5l-3 3a5 5 0 0 0 7 7l1.7-1.7'/%3E%3C/svg%3E");
}

/* Icône blog : livre ouvert */
.lixee-blog__eyebrow::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: .45rem;
  vertical-align: -2px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b69f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4h5.5A2.5 2.5 0 0 1 10 6.5V20a2 2 0 0 0-2-2H2z'/%3E%3Cpath d='M22 4h-5.5A2.5 2.5 0 0 0 14 6.5V20a2 2 0 0 1 2-2h6z'/%3E%3C/svg%3E");
}

/* Cartes compatibilité sans lien */
.lixee-compat__grid > div.compat-card,
.lixee-compat__grid .compat-card {
  display: block;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  color: inherit;
  text-decoration: none;
}
.lixee-compat__grid .compat-card:hover { box-shadow: none; border-color: rgba(0,0,0,.09); }

/* Header : menu sur sa propre ligne */
@media (min-width: 768px) {

  /* On remonte la barre du haut dans la ligne du logo */
  .header-top { display: none !important; }

  /* La ligne du bas passe en deux rangées */
  .header-bottom__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: .75rem;
  }

  /* Logo à gauche, actions à droite : première rangée */
  .header-bottom__logo { order: 1; }
  .ps-searchbar { order: 2; margin-left: auto; margin-right: 1.5rem; }
  .header-bottom__row > .order-2 { order: 3; }

  /* Le menu prend toute la largeur : deuxième rangée */
  .header-bottom__row .menu,
  .header-bottom__row > .col-auto:has(.menu__list) {
    order: 10;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .header-bottom { padding-bottom: .5rem; }
}

/* Header : menu sur une ligne dédiée (desktop) */
@media (min-width: 768px) {
  .header-bottom__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: .6rem;
  }

  .header-bottom__logo { order: 1; }
  .ps-searchbar:not(.ps-searchbar--mobile) { order: 2; margin-left: auto; }

  /* Le menu passe en pleine largeur, sur la rangée suivante */
  .ps-mainmenu--desktop {
    order: 10;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .ps-mainmenu--desktop .menu__list { justify-content: flex-start; padding-left: 0; }

  .header-bottom { padding-bottom: .4rem; }
}

/* Header : ligne 1 logo + actions, ligne 2 menu */
@media (min-width: 768px) {
  .header-bottom__row { flex-wrap: wrap; row-gap: .5rem; }

  .header-bottom__logo { order: 1; }
  .ps-searchbar:not(.ps-searchbar--mobile) { order: 2; margin-left: auto; }
  .ps-contactinfo { order: 3; }
  .header-bottom__row .blockcart { order: 5; }

  .ps-mainmenu--desktop {
    order: 20;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .ps-mainmenu--desktop .menu__list { justify-content: flex-start; padding-left: 0; }
}

/* Header : ligne 1 = logo + recherche + contact + connexion + panier ; ligne 2 = menu */
@media (min-width: 768px) {
  .header-bottom__row { flex-wrap: wrap; row-gap: .5rem; align-items: center; }

  .header-bottom__logo { order: 1; }
  #_desktop_ps_searchbar { order: 2; margin-left: auto !important; }
  #_desktop_ps_contactinfo { order: 3; margin-left: 1.5rem; display: flex; align-items: center; }
  #_desktop_ps_customersignin { order: 4; margin-left: 1.25rem; }
  #_desktop_ps_shoppingcart { order: 5; margin-left: 1.25rem; }

  .ps-mainmenu--desktop {
    order: 20;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .ps-mainmenu__tree { justify-content: flex-start; padding-left: 0; }
}

/* Header : une seule ligne pour logo + recherche + actions */
@media (min-width: 768px) {
  .header-bottom__row { flex-wrap: wrap; align-items: center; row-gap: .4rem; }

  .header-bottom__logo { order: 1; flex: 0 0 auto; }
  #_desktop_ps_searchbar { order: 2; flex: 0 1 320px; margin-left: auto !important; }
  #_desktop_ps_contactinfo { order: 3; flex: 0 0 auto; margin-left: 1.5rem; }
  #_desktop_ps_customersignin { order: 4; flex: 0 0 auto; margin-left: 1.25rem; }
  #_desktop_ps_shoppingcart { order: 5; flex: 0 0 auto; margin-left: 1.25rem; }

  /* ps_contactinfo : ne garder que le lien, masquer l'adresse */
  #_desktop_ps_contactinfo .ps-contactinfo > *:not(.ps-contactinfo__email) { display: none; }
  #_desktop_ps_contactinfo .ps-contactinfo { white-space: nowrap; }

  .ps-mainmenu--desktop {
    order: 20;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .ps-mainmenu__tree { padding-left: 0; }
}

/* Header : tout sur une ligne, menu en dessous */
@media (min-width: 768px) {
  .header-bottom__row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    row-gap: .4rem;
  }

  .header-bottom__logo {
    order: 1 !important;
    flex: 0 0 auto !important;
    width: auto !important;
    margin-right: auto !important;
  }

  #_desktop_ps_searchbar {
    order: 2 !important;
    flex: 0 0 300px !important;
    width: 300px !important;
    margin-left: 0 !important;
    margin-right: 1.5rem !important;
  }

  #_desktop_ps_contactinfo,
  #_desktop_ps_customersignin,
  #_desktop_ps_shoppingcart {
    flex: 0 0 auto !important;
    width: auto !important;
    margin-left: 1.25rem !important;
  }
  #_desktop_ps_contactinfo   { order: 3 !important; }
  #_desktop_ps_customersignin { order: 4 !important; }
  #_desktop_ps_shoppingcart   { order: 5 !important; }

  .ps-mainmenu--desktop {
    order: 20 !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
  }
  .ps-mainmenu__tree { padding-left: 0; }
}

/* Logo un peu plus grand */
@media (min-width: 768px) {
  .header-bottom__logo .logo { max-height: 72px; width: auto; }
}

/* Menu : bande dédiée, liens plus présents */
@media (min-width: 768px) {
  .ps-mainmenu--desktop {
    border-top: 1px solid rgba(0,0,0,.08);
    margin-top: .5rem;
    padding-top: .15rem;
  }

  .ps-mainmenu__tree {
    display: flex;
    gap: .25rem;
    margin: 0;
    list-style: none;
  }

  .ps-mainmenu__tree-link {
    display: block;
    padding: .7rem 1rem;
    font-size: .95rem;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
  }

  .ps-mainmenu__tree-link:hover {
    color: #0b69f6;
    border-bottom-color: #0b69f6;
  }

  .ps-mainmenu__tree-item.current .ps-mainmenu__tree-link {
    color: #0b69f6;
    border-bottom-color: #0b69f6;
  }
}

/*
 * Annule le width:100% que Bootstrap (hummingbird, @layer bs-base) impose à tous les enfants
 * directs de .row. Reste dans la couche bs-base pour ne pas passer devant les composants, et
 * épargne les colonnes (.col, .col-md-6...) et les grilles .row-cols-* qui fixent leur largeur.
 */
@layer bs-base {
  .row:not([class*="row-cols"]) > :not([class*="col"]) {
    width: auto;
  }
}

/* Phrase d'accroche de la page d'accueil, entre le diaporama et les produits. */
.lixee-accroche {
  background:
    radial-gradient(60rem 18rem at 50% -8rem, rgba(var(--bs-primary-rgb), .10), transparent 70%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fc 100%);
  border-block: 1px solid #e6eaf2;
  padding-block: clamp(1.75rem, 4vw, 3rem);
}
.lixee-accroche__text {
  margin: 0 auto;
  max-width: 46ch;
  text-align: center;
  text-wrap: balance;
  font-weight: 700;
  font-size: clamp(1.25rem, 3.2vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--bs-dark, #212529);
}
.lixee-accroche__text em {
  font-style: normal;
  color: var(--bs-primary, #0b69f6);
}
.lixee-accroche__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem .75rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}
.lixee-accroche__points li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  border: 1px solid #e3e8f0;
  border-radius: 999px;
  padding: .35rem .8rem;
  font-size: .875rem;
  font-weight: 600;
  color: #41506b;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
}
.lixee-accroche__points li::before {
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--bs-primary, #0b69f6);
}
@media (prefers-reduced-motion: no-preference) {
  .lixee-accroche__points li { transition: transform .15s ease, box-shadow .15s ease; }
  .lixee-accroche__points li:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(16, 24, 40, .07); }
}
