/* 992–1220px : remplace la barre par une icône ronde stylée */
@media (min-width: 992px) and (max-width: 1500px) {
  .softadastra-header-middle {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .softadastra-search-input {
    display: none !important;
  }

  .softadastra-search-btn {
    /* style Alibaba-like */
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: none;
    border-radius: 50%;
    background: #ff9900;
    /* Softadastra brand */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.35);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .softadastra-search-btn:hover {
    background: #e68900;
    box-shadow: 0 6px 16px rgba(230, 137, 0, 0.45);
    transform: translateY(-1px);
  }

  .softadastra-search-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(230, 137, 0, 0.35);
  }

  /* rendre la loupe blanche même si c'est un PNG sombre */
  .softadastra-search-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    display: block;
  }
}

/* >1220px : revient à la barre complète */
@media (min-width: 1221px) {
  .softadastra-search-input {
    display: block;
  }

  .softadastra-search-btn {
    width: 45px;
    height: 40px;
    border-radius: 0 4px 4px 0;
    background: #ff9900;
    box-shadow: none;
  }

  .softadastra-search-icon {
    filter: none;
  }
}

.softadastra-login-desktop {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.softadastra-login-link {
  display: flex;
  align-items: center;
  padding: 4px 10px;
  text-decoration: none;
  color: #111;
  font-family: "Amazon Ember", Arial, sans-serif;
  cursor: pointer;
  /* ✅ curseur pointer */
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.softadastra-login-link:hover {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 3px;
}

.login-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 5px;
}

.login-text-top {
  font-size: 12px;
  line-height: 14px;
  color: #555;
}

.login-text-bottom {
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  color: #111;
}

.login-arrow {
  font-size: 12px;
  color: #555;
  margin-top: 2px;
}

/* Par défaut: rien d’imposé */
.softadastra-login-desktop {
  display: none;
}

.softadastra-profile-wrapper {
  display: none;
}

.softadastra-signin-icon {
  display: inline-flex;
}

/* icône mobile visible par défaut */

/* ÉTAT NON CONNECTÉ */
.softadastra-header.is-guest .softadastra-login-desktop {
  display: flex;
  /* visible en desktop, sera masqué par media query en mobile si besoin */
}

.softadastra-header.is-guest .softadastra-profile-wrapper {
  display: none !important;
}

.softadastra-header.is-guest .softadastra-signin-icon {
  display: inline-flex !important;
  /* icône "user" en mobile */
}

/* ÉTAT CONNECTÉ */
.softadastra-header.is-auth .softadastra-login-desktop {
  display: none !important;
  /* caché si connecté */
}

.softadastra-header.is-auth .softadastra-profile-wrapper {
  display: inline-block !important;
  /* montre le profil */
}

.softadastra-header.is-auth .softadastra-signin-icon {
  display: none !important;
  /* cache l’icône mobile si connecté */
}

/* Option: adapter par breakpoint si tu veux */
@media (max-width: 991px) {
  /* En mobile, on ne montre jamais le bloc “Account & Lists” (desktop) */
  .softadastra-login-desktop {
    display: none !important;
  }
}

.softadastra-login-link {
  cursor: pointer;
  text-decoration: none;
}

.softadastra-login-link,
.softadastra-login-link * {
  pointer-events: auto;
  /* si jamais un style bloquait les events */
}

/* Largeur par défaut de la recherche */
.softadastra-search-bar {
  flex: 1;
  max-width: 500px;
  /* ajustable */
  transition: max-width 0.3s ease;
}

/* Quand connecté → on élargit */
.softadastra-header.is-auth .softadastra-search-bar {
  max-width: 650px;
  /* augmente de ~150px */
}

/* En mobile, on ne change pas */
@media (max-width: 991px) {
  .softadastra-header.is-auth .softadastra-search-bar {
    max-width: 100%;
    /* plein écran sur mobile si besoin */
  }
}

.softadastra-navbar {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}
/* Assure que le lien reçoit les clics et a le bon curseur */
.softadastra-login-desktop {
  position: relative;
  z-index: 1101;
}

.softadastra-login-link {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  pointer-events: auto;
}

/* Le conteneur de la search ne capte pas les clics, sauf sur input/bouton */
.softadastra-header-bottom {
  pointer-events: none;
  z-index: 1100;
}

.softadastra-search-input,
.softadastra-search-btn {
  pointer-events: auto;
}

/* Popup centré */
.sa-modal {
  position: fixed;
  inset: 0;
  display: none;
  /* caché par défaut */
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.sa-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.sa-modal__panel {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: calc(100% - 32px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  padding: 18px 18px 14px;
  text-align: center;
}

.sa-modal__title {
  font-size: 18px;
  font-weight: 700;
  margin: 6px 0 8px;
}

.sa-modal__text {
  font-size: 14px;
  color: #333;
  margin: 0 0 14px;
}

.sa-modal__actions {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.sa-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  background: #111;
  color: #fff;
  font-weight: 600;
}

.sa-btn--ghost {
  background: #f2f3f5;
  color: #111;
}

/* Optionnel : style item sélectionné dans le menu langues */
#sa-lang-menu a[aria-selected="true"] {
  font-weight: 700;
}
/* ===== Drawer ===== */
.sa-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  /* inactif par défaut */
}

.sa-drawer.is-open {
  pointer-events: auto;
}

/* Overlay */
.sa-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sa-drawer.is-open .sa-drawer__overlay {
  opacity: 1;
}

/* Panel */
.sa-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 86vw;
  max-width: 360px;
  background: #fff;
  box-shadow: 2px 0 24px rgba(0, 0, 0, 0.18);
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.sa-drawer.is-open .sa-drawer__panel {
  transform: translateX(0);
}

/* Close btn */
.sa-drawer__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

/* Header bloc */
.sa-drawer__header {
  background: #ff9900;
  /* Softadastra orange */
  color: #fff;
  padding: 14px 16px;
}

.sa-drawer__hello {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Amazon Ember", Arial, sans-serif;
}

.sa-drawer__hello i {
  font-size: 28px;
}

.sa-drawer__hello-top {
  font-size: 12px;
  opacity: 0.9;
}

.sa-drawer__hello-bottom {
  font-weight: 700;
}

/* Nav liste */
.sa-drawer__nav {
  padding: 10px 0 18px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.sa-drawer__section {
  padding: 10px 16px;
  font-size: 12px;
  text-transform: uppercase;
  color: #707070;
  letter-spacing: 0.4px;
}

.sa-drawer__link {
  display: block;
  padding: 12px 16px;
  color: #111;
  text-decoration: none;
}

.sa-drawer__link:hover {
  background: #f5f6f7;
}

/* Responsive */
@media (min-width: 992px) {
  /* tu peux laisser actif sur desktop si tu veux, sinon : */
  /* .sa-drawer { display:none; } */
  .sa-drawer__panel {
    max-width: 400px;
  }
}

/* Header burger: mobile only */
#sa-menu-btn {
  display: inline-flex;
}

@media (min-width: 992px) {
  #sa-menu-btn {
    display: none;
  }
}

/* Subnav "All" burger: desktop only */
#sa-subnav-all {
  display: none;
}

@media (min-width: 992px) {
  #sa-subnav-all {
    display: inline-flex;
  }
}

.sa-drawer__panel:focus {
  outline: none;
}

/* Conteneur global */
.sa-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  /* inactif tant qu'ouvert = false */
}

/* Overlay */
.sa-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Panneau qui glisse */
.sa-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  /* arrive de la gauche, Amazon-style */
  height: 100%;
  width: min(86vw, 380px);
  /* responsive */
  max-width: 92vw;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transform: translateX(-100%);
  /* caché par défaut */
  transition: transform 0.28s ease;
  outline: none;
  display: flex;
  flex-direction: column;
}

/* Ouvert */
.sa-drawer.is-open {
  pointer-events: auto;
}

.sa-drawer.is-open .sa-drawer__overlay {
  opacity: 1;
}

.sa-drawer.is-open .sa-drawer__panel {
  transform: translateX(0);
}

/* En desktop, un chouïa plus étroit si tu veux */
@media (min-width: 992px) {
  .sa-drawer__panel {
    width: 360px;
  }
}

/* Header du drawer */
.sa-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.sa-drawer__close {
  background: transparent;
  border: 0;
  font-size: 24px;
  cursor: pointer;
}

/* Liens */
.sa-drawer__nav {
  padding: 8px;
  overflow: auto;
}

.sa-drawer__nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #111;
  text-decoration: none;
}

.sa-drawer__nav a:hover {
  background: #f7f7f7;
}

.sa-drawer__nav hr {
  border: 0;
  height: 1px;
  background: #eee;
  margin: 8px 0;
}

/* A11y: réduit l’animation si l’utilisateur préfère */
@media (prefers-reduced-motion: reduce) {
  .sa-drawer__overlay {
    transition: none;
  }

  .sa-drawer__panel {
    transition: none;
  }
}

/* ===== Drawer v2 (Amazon-like) ===== */
:root {
  --sa-orange: #ff9900;
  --sa-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  --sa-radius: 14px;
}

.sa-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  /* performance */
  contain: layout paint style;
}

.sa-drawer.is-open {
  pointer-events: auto;
}

/* Overlay */
.sa-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: saturate(120%) blur(2px);
  backdrop-filter: saturate(120%) blur(2px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.sa-drawer.is-open .sa-drawer__overlay {
  opacity: 1;
}

/* Panel */
.sa-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(86vw, 380px);
  max-width: 92vw;
  background: #fff;
  box-shadow: var(--sa-shadow);
  transform: translate3d(-100%, 0, 0);
  will-change: transform;
  display: flex;
  flex-direction: column;
  outline: none;
  /* arrondi côté droit pour un look plus premium */
  border-top-right-radius: var(--sa-radius);
  border-bottom-right-radius: var(--sa-radius);
}

/* States pilotés par JS pour l’animation spring */
.sa-drawer.opening .sa-drawer__panel {
  animation: sa-spring-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sa-drawer.closing .sa-drawer__panel {
  animation: sa-spring-out 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sa-drawer.opening .sa-drawer__overlay {
  animation: sa-fade-in 0.22s ease both;
}

.sa-drawer.closing .sa-drawer__overlay {
  animation: sa-fade-out 0.2s ease both;
}

@keyframes sa-spring-in {
  0% {
    transform: translate3d(-104%, 0, 0);
  }

  80% {
    transform: translate3d(6px, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes sa-spring-out {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-104%, 0, 0);
  }
}

@keyframes sa-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes sa-fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Header */
.sa-drawer__header {
  background: var(--sa-orange);
  color: #fff;
  padding: 14px 16px;
  border-top-right-radius: var(--sa-radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sa-drawer__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

/* Nav */
.sa-drawer__nav {
  padding: 10px 0 18px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.sa-drawer__section {
  padding: 10px 16px;
  font-size: 12px;
  text-transform: uppercase;
  color: #707070;
  letter-spacing: 0.4px;
}

.sa-drawer__link {
  display: block;
  padding: 12px 16px;
  color: #111;
  text-decoration: none;
  border-radius: 10px;
}

.sa-drawer__link:hover {
  background: #f5f6f7;
}

/* Stagger sur les liens à l’ouverture */
.sa-drawer.opening .sa-drawer__link {
  opacity: 0;
  transform: translateY(6px);
  animation: sa-stagger 0.36s ease forwards;
}

@keyframes sa-stagger {
  to {
    opacity: 1;
    transform: none;
  }
}

.sa-drawer.opening .sa-drawer__link:nth-of-type(1) {
  animation-delay: 0.08s;
}

.sa-drawer.opening .sa-drawer__link:nth-of-type(2) {
  animation-delay: 0.11s;
}

.sa-drawer.opening .sa-drawer__link:nth-of-type(3) {
  animation-delay: 0.14s;
}

.sa-drawer.opening .sa-drawer__link:nth-of-type(4) {
  animation-delay: 0.17s;
}

.sa-drawer.opening .sa-drawer__link:nth-of-type(5) {
  animation-delay: 0.2s;
}

/* (ajoute si besoin davantage d’indices) */

/* Responsive */
@media (min-width: 992px) {
  .sa-drawer__panel {
    width: 360px;
  }
}

/* A11y: réduit l’animation si l’utilisateur préfère */
@media (prefers-reduced-motion: reduce) {
  .sa-drawer__overlay,
  .sa-drawer__panel {
    transition: none;
    animation: none !important;
  }
}

/* Boutons de déclenchement */
#sa-menu-btn {
  display: inline-flex;
}

@media (min-width: 992px) {
  #sa-menu-btn {
    display: none;
  }

  #sa-subnav-all {
    display: inline-flex;
  }
}
/* ========== POPover Softadastra (style Vinted) ========== */
:root {
  --sa-card-bg: #fff;
  --sa-card-br: 14px;
  --sa-card-bd: #eaeaea;
  --sa-card-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  --sa-text-strong: #222;
  --sa-text-muted: #6f6f6f;
  --sa-hover: #f6f7f8;
  --sa-accent: #ff9900;
  /* Softadastra */
}

/* Le wrapper sert d’ancre */
.softadastra-profile-wrapper {
  position: relative;
}

/* Bouton profil cliquable + hover subtil */
.softadastra-profile-link {
  cursor: pointer;
  border-radius: 10px;
  padding: 4px 6px;
  transition: background-color 0.18s ease, box-shadow 0.18s ease;
}

.softadastra-profile-link:hover {
  background: #f7f7f7;
}

.softadastra-profile-link:focus-visible {
  outline: 2px solid var(--sa-accent);
  outline-offset: 2px;
}

/* POPover */
.sa-popover {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  /* juste sous l’avatar */
  background: var(--sa-card-bg);
  border: 1px solid var(--sa-card-bd);
  border-radius: var(--sa-card-br);
  box-shadow: var(--sa-card-shadow);
  min-width: 300px;
  max-width: 92vw;
  display: none;
  z-index: 1101;
  overflow: hidden;
  /* arrondis nets */
  transform-origin: top right;
  opacity: 0;
  transform: translateY(-4px) scale(0.98);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

/* Petite flèche (cache en mobile plus bas) */
.sa-popover::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 18px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--sa-card-bd);
  border-top: 1px solid var(--sa-card-bd);
  transform: rotate(45deg);
}

/* Ouverture */
.sa-popover.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Header du popover */
.sa-popover__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 10px;
}

.sa-popover__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.sa-popover__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--sa-text-strong);
}

.sa-popover__name {
  font-size: 13px;
  color: var(--sa-text-muted);
  margin-top: 2px;
}

/* Liens */
.sa-popover__body {
  display: flex;
  flex-direction: column;
  padding: 6px;
  max-height: min(60vh, 420px);
  /* évite le débordement */
  overflow: auto;
  overscroll-behavior: contain;
}

.sa-popover__link {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--sa-text-strong);
  text-decoration: none;
  line-height: 1.2;
  transition: background-color 0.15s ease;
}

.sa-popover__link:hover {
  background: var(--sa-hover);
}

.sa-popover__link:active {
  background: #eee;
}

.sa-popover__link--danger {
  color: #b00020;
}

/* Séparateur optionnel entre header et body */
.sa-popover__body::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--sa-card-bd);
  margin: 4px 6px 8px;
  border-radius: 1px;
}

/* ======= Responsive ======= */

/* Petites tablettes & - : panneau plus large, flèche masquée */
@media (max-width: 768px) {
  .sa-popover {
    min-width: clamp(260px, 92vw, 380px);
    right: 0;
    /* reste ancré à droite du wrapper */
    top: calc(100% + 8px);
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  }

  .sa-popover::before {
    display: none;
  }

  .sa-popover__avatar {
    width: 40px;
    height: 40px;
  }

  .sa-popover__title {
    font-size: 14px;
  }

  .sa-popover__name {
    font-size: 12px;
  }

  .sa-popover__link {
    padding: 12px;
    border-radius: 12px;
  }

  /* tap targets 44px+ */
}

/* Très petits écrans : on autorise plus de hauteur */
@media (max-width: 420px) {
  .sa-popover__body {
    max-height: min(70vh, 520px);
  }
}

/* A11y : réduit les animations si demandé */
@media (prefers-reduced-motion: reduce) {
  .sa-popover {
    transition: none;
  }
}

/* désactive totalement l'ancien dropdown pour ce flux modal */
.softadastra-profile-dropdown {
  display: none !important;
}

.softadastra-profile-link {
  position: relative;
  z-index: 1002;
  pointer-events: auto;
}

/* === Fix popover mobile (compact, bien aligné à droite) === */
@media (max-width: 768px) {
  /* le wrapper peut créer un décalage: on force un contexte simple */
  .softadastra-profile-wrapper {
    position: relative;
    /* garde l’ancrage */
    overflow: visible;
  }

  .sa-popover {
    right: 8px;
    /* colle au bord droit du wrapper */
    left: auto;
    /* évite tout débordement à gauche */
    top: calc(100% + 8px);
    width: auto;
    /* laisse le contenu décider */
    min-width: 240px;
    /* plus petit en mobile */
    max-width: 88vw;
    /* jamais trop large */
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    transform-origin: top right;
  }

  .sa-popover::before {
    /* flèche cachée en mobile (évite les artefacts) */
    display: none;
  }

  .sa-popover__header {
    gap: 10px;
    padding: 12px 12px 8px;
  }

  .sa-popover__avatar {
    width: 36px;
    height: 36px;
  }

  .sa-popover__title {
    font-size: 14px;
  }

  .sa-popover__name {
    font-size: 12px;
  }

  .sa-popover__body {
    padding: 6px;
    max-height: min(65vh, 420px);
    /* évite la “grandeur” excessive */
    overflow: auto;
  }

  .sa-popover__link {
    padding: 10px;
    /* tap target confortable sans gonfler le panneau */
    border-radius: 10px;
  }
}

/* micro-fix très petits écrans */
@media (max-width: 360px) {
  .sa-popover {
    min-width: 220px;
    max-width: 92vw;
    right: 6px;
  }
}

/* Bouton menu mobile */
.softadastra-menu-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Cacher sur desktop */
@media (min-width: 992px) {
  .softadastra-menu-btn {
    display: none;
  }
}
/* ====== Style blanc + ombre Vinted ====== */
/* Header + Subnav */
.softadastra-header,
.softadastra-subnav {
  background: #ffffff; /* blanc pur */
  color: var(--sa-text);

  /* Ombre plus marquée identique */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1),
    /* contour proche */ 0 4px 6px rgba(0, 0, 0, 0.08); /* diffuse large */
}

/* Positionnement spécifique au header */
.softadastra-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 8px 10px;
  z-index: 1000;
}

/* Positionnement spécifique au subnav */
.softadastra-subnav {
  position: relative;
  z-index: 999;
}

/* Fond de page clair pour contraste */
body.has-sa-header {
  background-color: #f7f7f7; /* gris clair comme Vinted */
}
/* Conteneur global */
.softadastra-navbar {
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.08);
}
.softadastra-header,
.softadastra-subnav {
  box-shadow: none; /* pas d'ombre individuelle */
}
/* 992–1220px : remplace la barre par une icône ronde stylée */
@media (min-width: 992px) {
  .softadastra-header.is-guest .softadastra-signin-icon {
    display: none !important;
  }
}
