/* ==========================================
   HEADER STICKY - VERSION PROPRE
   ========================================== */

header.container-fluid.no-gutter,
header.container-fluid,
body header.container-fluid {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  background-color: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  width: 100% !important;
}

/* ========== BANNIÈRE TOP - 2 MESSAGES ALTERNÉS ========== */
.top-banner {
  position: relative;
  padding: 8px 40px;
  text-align: center;
  transition: background-color 0.6s ease;
  z-index: 1000;
  font-size: 0.875rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-banner-slider {
  position: relative;
  height: 28px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-banner-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  color: white;
  font-weight: 600;
  font-size: 17px;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-banner-message.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top-banner {
    font-size: 0.75rem;
    padding: 10px 20px;
    min-height: auto;
    line-height: 1.3;
  }

  .top-banner-slider {
    height: auto;
    min-height: 28px;
  }

  .top-banner-message {
    white-space: normal;
    text-align: center;
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .top-banner {
    font-size: 1rem;
    padding: 8px 40px;
  }

  .top-banner-slider {
    height: 22px;
  }

  .top-banner-message {
    font-size: 18px;
    font-weight: 700;
  }
}

/* ========== LIGNE DE CONTACT EN HAUT ========== */
.top-contact-bar {
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  padding: 8px 0;
}

.top-contact-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-contact-menu li {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.top-contact-menu li:not(:last-child) {
  border-right: 1px solid var(--wp--preset--color--color-text);
  padding-right: 25px;
}

.top-contact-menu a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  font-weight: 300;
}

.top-contact-menu a:hover {
  color: #e62ca1;
}

.top-contact-menu i,
.top-contact-menu svg {
  font-size: 14px;
  color: var(--wp--preset--color--color-2);
  margin-right: 10px;
}

.top-contact-menu a[href^="tel"] {
  font-weight: 600;
  color: #e62ca1;
  font-size: 15px;
}

.top-contact-menu a[href^="tel"]:hover {
  color: #c91f8a;
}

.top-contact-menu li.telephone a em {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ========== CORRECTION BANDE BLANCHE MOBILE ========== */
@media screen and (max-width: 991px) {
  #app-menu-container,
  .sticky-footer,
  .mobile-footer,
  .footer-mobile,
  .cart-mobile-footer,
  footer.mobile-sticky,
  .mobile-bottom-nav,
  .bottom-navigation {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    opacity: 0 !important;
  }

  body {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  main,
  #main,
  .site-content {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  main,
  #main,
  .site-content,
  #content {
    min-height: auto !important;
  }

  footer,
  .site-footer {
    margin-top: 0 !important;
  }

  .home-selection-produits,
  .home-reassurances,
  .home-articles {
    padding-bottom: 40px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .home-selection-produits .container,
  .home-reassurances .container,
  .home-articles .container {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

.container.large {
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (min-width: 992px) {
  header .container.large {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 991px) {
  .container.large {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ========== ROW PRINCIPALE ========== */
.header-main-row {
  padding: 15px 0;
  flex-wrap: nowrap !important;
}

.header-main-row > div {
  flex-shrink: 0;
}

@media screen and (max-width: 991px) {
  .header-main-row {
    padding: 10px 0;
    flex-wrap: wrap !important;
  }
}

/* ========== LOGO ========== */
.header-logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo-container .custom-logo-link {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .header-logo-container .custom-logo {
    max-height: 50px !important;
    width: auto !important;
  }
}

@media screen and (min-width: 992px) {
  .header-logo-container .custom-logo {
    max-height: 70px !important;
    width: auto !important;
  }
}

/* ========== DESKTOP : TOP MENU 2 + PANIER ========== */
@media screen and (min-width: 992px) {
  .header-actions-desktop {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
  }

  .menu-top-header-2-container ul {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
  }

  .menu-top-header-2-container li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
  }

  .menu-top-header-2-container li a:hover {
    color: var(--wp--preset--color--color-1);
  }

  .menu-top-header-2-container li a svg,
  .menu-top-header-2-container li a i {
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  .menu-top-header-2-container li a:hover svg,
  .menu-top-header-2-container li a:hover i {
    transform: scale(1.1);
  }

  header .cart,
  footer .cart-mobile {
    background-color: var(--wp--preset--color--color-1);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(230, 44, 161, 0.3);
    white-space: nowrap;
  }

  header .cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 44, 161, 0.5);
    background-color: #c91f8a;
  }

  header .cart svg,
  header .cart i {
    color: #fff;
    font-size: 20px;
  }

  header .cart #cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background-color: #fff;
    color: var(--wp--preset--color--color-1);
    border: 2px solid var(--wp--preset--color--color-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
  }

  .logged .menu-top-header-2-container li.account {
    position: relative;
  }

  .logged .menu-top-header-2-container li.account a:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: -2px;
    left: -2px;
    background-color: var(--wp--preset--color--color-7);
    border: 2px solid white;
  }
}

/* ========== MOBILE : ICÔNES AVEC GAPS AMÉLIORÉS ========== */
@media screen and (max-width: 991px) {
  header .row.justify-content-between {
    align-items: center !important;
  }

  /* Gap entre les icônes */
  .mobile-top-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    margin-right: 18px;
  }

  /* Icône compte */
  .mobile-account-icon {
    background: #e62ca1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    flex-shrink: 0;
  }

  .mobile-account-icon i,
  .mobile-account-icon svg {
    font-size: 18px;
    color: white;
  }

  /* Icône panier */
  .mobile-cart-icon {
    position: relative;
    color: #e62ca1;
    font-size: 26px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px;
  }

  .mobile-cart-icon i,
  .mobile-cart-icon svg {
    font-size: 24px;
    color: #e62ca1;
  }

  #cart-count-mobile {
    position: absolute;
    top: 0;
    right: 0;
    background: #e62ca1;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    border: 2px solid white;
  }

  /* Menu Burger - Simple et propre */
  .navbar-toggler {
    padding: 8px;
    border: none;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
  }

  .hamburgers {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 24px;
  }

  .hamburger {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* SUPPRIMER le input checkbox */
  .hamburger input {
    display: none !important;
  }

  /* Barres du burger */
  .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #e62ca1;
    border-radius: 2px;
  }
}

@media (max-width: 576px) {
  .mobile-top-actions {
    gap: 14px;
    margin-right: 14px;
  }

  .mobile-account-icon {
    width: 30px;
    height: 30px;
  }

  .mobile-cart-icon {
    font-size: 24px;
  }
}

/* ========== MENU DESKTOP ========== */
@media screen and (min-width: 992px) {
  .header-menu-container {
    margin-top: 15px;
  }

  #menu-menu-principal-bis-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #menu-menu-principal-bis-1 li {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    margin: 0 8px;
  }

  #menu-menu-principal-bis-1 li.promos {
    background-color: var(--wp--preset--color--color-6);
    border-radius: 5px;
  }

  #menu-menu-principal-bis-1 li.promos a {
    color: var(--wp--preset--color--color-1);
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 15px;
  }

  #menu-menu-principal-bis-1 li span.menu-couleur {
    width: 5px;
    height: 50%;
  }

  #menu-menu-principal-bis-1 li .nav-link {
    padding: 12px 15px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
    text-align: center;
    white-space: nowrap;
  }

  #menu-menu-principal-bis-1 li .nav-link:hover,
  #menu-menu-principal-bis-1 li:hover .nav-link {
    color: var(--wp--preset--color--color-1);
  }

  #main-nav .menu > li:hover {
    background: #e62ca1;
    transition: background 0.3s ease;
  }

  #main-nav .menu > li:hover > a {
    color: white;
  }

  #main-nav .menu li .sub-menu {
    background: white;
    border-top: 3px solid #e62ca1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  #main-nav .menu li .sub-menu li:hover {
    background: #f8f9fa;
  }
}

/* ========== SEARCH BAR ========== */
.searchbox {
  position: relative;
}

.searchbox input[type="search"] {
  border: 2px solid #e62ca1;
  border-radius: 25px;
  padding: 12px 20px;
  width: 100%;
  font-size: 15px;
}

.searchbox button[type="submit"] {
  background: #e62ca1;
  border: none;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  color: white;
}

/* ==========================================
   MENU MOBILE - OFFCANVAS VERSION AMÉLIORÉE
   ========================================== */
@media screen and (max-width: 991px) {
  /* Bouton toggle */
  .header-menu-container .navbar-toggler {
    outline: none;
    border: none;
    padding: 0;
    background: none;
  }

  /* Structure offcanvas */
  .navbar .offcanvas.show {
    left: 0;
    width: 100%;
    border-left: 0;
  }

  /* En-tête avec logo (reste fixe) */
  .navbar .offcanvas .logo-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1070;
    border-bottom: 1px solid #eee;
    min-height: 70px;
    max-height: 70px;
  }

  /* Logo plus petit */
  .navbar .offcanvas .logo-row .custom-logo {
    max-height: 45px;
    width: auto;
  }

  /* Bouton fermeture */
  .navbar .offcanvas .logo-row .back-toggler {
    position: relative;
    padding: 0;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--wp--preset--color--color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  /* Corps du menu - ALIGNEMENT GAUCHE + PLEINE LARGEUR */
  .navbar .offcanvas .offcanvas-body {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100%;
    justify-content: flex-start !important;
    padding-top: 85px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    text-align: left;
    overflow-y: auto;
    background: white;
  }

  /* Annuler l'indentation par défaut des UL - FIX DOTS */
  .offcanvas .offcanvas-body .mobile-nav,
  .offcanvas .offcanvas-body ul,
  .offcanvas .dropdown-menu {
    padding-left: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
    width: 100%;
  }

  /* Supprimer TOUS les dots, bullets, markers */
  .offcanvas .offcanvas-body li,
  .offcanvas .mobile-nav li,
  .offcanvas .dropdown-menu li {
    list-style: none !important;
    list-style-type: none !important;
  }

  .offcanvas .offcanvas-body li::marker,
  .offcanvas .mobile-nav li::marker,
  .offcanvas .dropdown-menu li::marker {
    display: none !important;
    content: none !important;
  }

  /* Items du menu principal */
  .offcanvas .mobile-nav > li,
  .offcanvas .offcanvas-body > .menu-main-menu-container li,
  .offcanvas .offcanvas-body > .menu-menu-principal-bis-1-container li {
    position: relative;
    border-bottom: 1px solid rgba(44, 70, 58, 0.1);
    padding: 18px 0;
    text-align: left;
    list-style: none !important;
  }

  .offcanvas .mobile-nav > li > a,
  .offcanvas .mobile-nav > li > span:not(.menu-couleur),
  .offcanvas .offcanvas-body > .menu-main-menu-container li a,
  .offcanvas
    .offcanvas-body
    > .menu-main-menu-container
    li
    span:not(.menu-couleur),
  .offcanvas .offcanvas-body > .menu-menu-principal-bis-1-container li a,
  .offcanvas
    .offcanvas-body
    > .menu-menu-principal-bis-1-container
    li
    span:not(.menu-couleur) {
    color: #000;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0;
    transition: color 0.2s ease;
  }

  /* Hover */
  .offcanvas .mobile-nav > li > a:hover,
  .offcanvas #menu-main-menu li a:hover,
  .offcanvas #menu-menu-principal-bis-1 li a:hover {
    color: var(--wp--preset--color--color-1);
  }

  /* FIX DOUBLES FLÈCHES - Supprimer TOUS les pseudo-éléments de flèches non désirés */
  .offcanvas .dropdown-toggle::after,
  .offcanvas .dropdown-toggle::before,
  .offcanvas a[data-bs-toggle="dropdown"]::after,
  .offcanvas a[data-bs-toggle="dropdown"]::before {
    display: none !important;
    content: none !important;
  }

  /* UNE SEULE flèche SVG pour les items avec sous-menu */
  .offcanvas .mobile-nav > li.menu-item-has-children > a::after,
  .offcanvas
    .mobile-nav
    > li.menu-item-has-children
    > span:not(.menu-couleur)::after,
  .offcanvas li.menu-item-has-children > a::after,
  .offcanvas li.menu-item-has-children > span:not(.menu-couleur)::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none !important;
    content: "" !important;
    background-image: url("../images/chevron-right-solid.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    display: block;
  }

  /* S'assurer qu'il n'y a PAS de ::before sur les flèches */
  .offcanvas li.menu-item-has-children > a::before,
  .offcanvas li.menu-item-has-children > span::before {
    display: none !important;
    content: none !important;
  }

  /* Sous-menus en plein écran avec animation */
  .navbar .offcanvas .dropdown-menu {
    position: fixed;
    left: 0 !important;
    top: 0;
    width: 100% !important;
    height: 100%;
    background: white;
    z-index: 1065;
    display: none;
    flex-direction: column;
    justify-content: flex-start !important;
    margin: 0;
    padding: 140px 20px 30px 20px !important;
    overflow-y: auto !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
    /* Animation fluide */
    opacity: 0;
    transform: translateX(100%);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .navbar .offcanvas .dropdown-menu.show {
    display: flex !important;
    opacity: 1;
    transform: translateX(0);
  }

  /* Bouton retour dans les sous-menus */
  .navbar .offcanvas .dropdown-menu.show .back-toggler {
    position: fixed;
    left: 0;
    top: 70px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 18px 20px;
    font-size: 16px;
    gap: 10px;
    color: var(--wp--preset--color--color-1);
    background: white;
    border: none;
    border-bottom: 1px solid #eee;
    text-align: left;
    z-index: 1066;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .navbar .offcanvas .dropdown-menu.show .back-toggler:hover {
    background: rgba(230, 44, 161, 0.05);
  }

  /* Texte "Retour" avec flèche */
  .navbar .offcanvas .dropdown-menu.show .back-toggler::before {
    content: "‹ Retour";
    font-size: 20px;
  }

  /* Masquer les icônes dans le bouton retour */
  .navbar .offcanvas .dropdown-menu.show .back-toggler i,
  .navbar .offcanvas .dropdown-menu.show .back-toggler svg {
    display: none !important;
  }

  /* Items dans les sous-menus */
  .offcanvas .dropdown-menu li {
    position: relative;
    border-bottom: 1px solid rgba(44, 70, 58, 0.1);
    padding: 0;
    list-style: none !important;
  }

  .offcanvas .dropdown-menu li a,
  .offcanvas .dropdown-menu li span:not(.menu-couleur) {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 0;
    transition: color 0.2s ease;
  }

  .offcanvas .dropdown-menu li a:hover {
    color: var(--wp--preset--color--color-1);
  }

  /* Container du menu */
  .offcanvas.show .menu-main-menu-container,
  .offcanvas.show .menu-menu-principal-bis-1-container {
    width: 100%;
  }

  /* Menu Promos */
  #menu-menu-principal-bis li.promos a {
    background-color: var(--wp--preset--color--color-6);
    color: var(--wp--preset--color--color-1);
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 20px;
    border-radius: 8px;
    display: block;
    transition: transform 0.2s ease;
  }

  #menu-menu-principal-bis li.promos a:hover {
    transform: translateX(5px);
  }

  /* Span couleur (ne doit pas avoir de flèche) */
  #menu-menu-principal-bis li span.menu-couleur {
    width: 5px;
    height: 50%;
    position: absolute;
    left: 0;
  }

  #menu-menu-principal-bis li span.menu-couleur::after,
  #menu-menu-principal-bis li span.menu-couleur::before {
    display: none !important;
    content: none !important;
  }

  /* Top Menu 3 (si présent) */
  #menu-top-header-3 {
    list-style-type: none;
    padding-left: 0;
    width: 100%;
  }

  #menu-top-header-3 li {
    position: relative;
    border-bottom: 1px solid rgba(44, 70, 58, 0.1);
    padding: 15px 0;
    text-align: left;
    list-style: none !important;
  }

  #menu-top-header-3 li a {
    color: #000;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
  }

  #menu-top-header-3 li a svg {
    color: var(--wp--preset--color--color-2);
    margin-right: 10px;
  }

  #menu-top-header-3 li.telephone a em {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
  }
}

/* ========== FIX BANDE BLANCHE ========== */
html {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

body {
  overflow-x: clip !important;
  overflow-y: visible !important;
  max-width: 100vw;
  width: 100%;
}

main,
#main,
.site-content,
#content {
  overflow-x: clip;
  max-width: 100vw;
}

/* ========== HEADER COMPACT AU SCROLL ========== */
header.container-fluid .top-banner,
header.container-fluid .top-contact-bar,
header.container-fluid .header-main-row,
header.container-fluid .header-logo-container .custom-logo,
header.container-fluid .searchbox input,
header.container-fluid .searchbox button,
header.container-fluid .cart,
header.container-fluid .header-menu-container,
header.container-fluid #menu-menu-principal-bis-1 li .nav-link {
  transition: all 0.3s ease;
}

header.container-fluid.scrolled .top-banner {
  padding: 4px 40px;
  min-height: 28px;
  font-size: 0.75rem;
}

header.container-fluid.scrolled .top-banner-slider {
  height: 18px;
}

header.container-fluid.scrolled .top-banner-message {
  font-size: 14px;
}

header.container-fluid.scrolled .top-contact-bar {
  padding: 4px 0;
}

header.container-fluid.scrolled .top-contact-menu a {
  font-size: 12px;
}

header.container-fluid.scrolled .header-main-row {
  padding: 8px 0;
}

header.container-fluid.scrolled .header-logo-container .custom-logo {
  max-height: 45px !important;
}

header.container-fluid.scrolled .searchbox input[type="search"] {
  padding: 8px 15px;
  font-size: 14px;
}

header.container-fluid.scrolled .searchbox button[type="submit"] {
  width: 32px;
  height: 32px;
}

header.container-fluid.scrolled .cart {
  padding: 8px 15px;
  font-size: 14px;
}

header.container-fluid.scrolled .header-menu-container {
  margin-top: 8px;
}

header.container-fluid.scrolled #menu-menu-principal-bis-1 li .nav-link {
  padding: 8px 12px;
  font-size: 0.875rem;
}

@media screen and (max-width: 991px) {
  header.container-fluid.scrolled .top-banner {
    padding: 5px 15px;
    min-height: auto;
  }

  header.container-fluid.scrolled .top-banner-message {
    font-size: 12px;
  }

  header.container-fluid.scrolled .header-main-row {
    padding: 5px 0;
  }

  header.container-fluid.scrolled .header-logo-container .custom-logo {
    max-height: 35px !important;
  }

  header.container-fluid.scrolled .mobile-account-icon {
    width: 34px;
    height: 34px;
  }

  header.container-fluid.scrolled .mobile-cart-icon {
    font-size: 22px;
  }

  header.container-fluid.scrolled .searchbox input[type="search"] {
    padding: 6px 12px;
    font-size: 13px;
  }
}
