.tvfooter-storelogo-imformation {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
}

.tvfooter-storelogo-imformation>div {
  width: 250px;
  flex-shrink: 0;
  overflow: hidden;
  word-wrap: break-word;
}

.tvfooter-storelogo-imformation * {
  box-sizing: border-box;
}

/* Agrandissement du menu sur la droite */
.tvcmsright-sticky .tvright-sticky-account {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: normal;
  padding: 5px 15px;
  width: auto;
  height: 50px;
}

/* Agrandissement du menu sur la droite */
.tvcmsright-sticky .tvright-sticky-account>a {
  display: flex;
  align-items: center;
  font-size: 16px;
}

/* Agrandissement du menu sur la droite */
.tvcmsright-sticky .tvright-sticky-account a i {
  font-size: 18px;
}

/* Agrandissement du menu sur la droite */
.tvcmsright-sticky .tvright-sticky-account a span {
  font-size: 14px;
}

/* Replacer le logo en format mobile */
@media (max-width: 990px) {
  .logo.img-responsive {
    max-height: 50px;
  }

  div>.tv-header-logo {
    justify-content: start;
  }
}

/* Le code ci dessous est une refonte visuelle de l'affichage des catégories et sous catégories du megamenu */
@media (min-width: 768px) {

  .menu-dropdown.cat-drop-menu:has(> li:nth-child(13)) {
    column-count: 3;
    padding: 0;
  }

  .menu-dropdown.cat-drop-menu .level-2.parent>ul:has(> li:nth-child(10)) {
    column-count: 3;
    padding: 0;
  }

  .menu-dropdown.cat-drop-menu .level-2.parent:has(> ul > li:nth-child(8))>.menu-dropdown.cat-drop-menu {
    position: fixed;
    top: 0px;
  }

  .menu-dropdown.cat-drop-menu .level-2.parent>ul>li {
    background-color: rgb(255, 255, 255);
  }

  .menu-dropdown.cat-drop-menu {
    max-width: unset;
    width: fit-content;
    column-gap: normal;
  }

  .tv-menu-horizontal.menu-dropdown {
    border-bottom: 4px solid #90d123;
  }

  .level-1.parent>a[href*="garcia-de-pou"]+.icon-drop-mobile+.menu-dropdown.cat-drop-menu .level-3.parent>ul {
    display: none;
  }

  .level-1.parent>a[href*="garcia-de-pou"]+.icon-drop-mobile+.menu-dropdown.cat-drop-menu .level-3.parent>a::after {
    display: none;
  }
}

/* Le code ci dessous est une refonte visuelle de la version mobile du module ets_cookie_banner qui n'est pas responsive */
@media (max-width: 850px) {
  .ets_cookie_banber_block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ets_cookie_banner_footer {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .ets_cookie_banner_footer .btn {
    width: 90%;
  }
}

/* Le code ci dessous est une refonte visuelle du module ets_cookie_banner, en fonction des réglages les boutons débordaient */
.ets_cookie_banner_footer {
  text-align: center;
  overflow: hidden;
}

.ets_cookie_banner_footer .btn {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  height: auto;
  padding: 10px 15px;
  line-height: 1.4;
}

/* Image pour le panier vide et eviter le texte en anglais "No product add in cart" */
.ttvcmscart-show-dropdown-right.open>.ttvcart-no-product,
.ttvcmscart-show-dropdown-right>.ttvcart-no-product {
  background-image: url(../img/themevolty/empty_cart_olma.png);
  background-position: center;
  min-height: 100%;
  background-repeat: no-repeat;
}

/* Force l'affichage d'une flèche à droite pour les parents de niveau 2 (desktop)
   Certaines règles/theme ou l'élément .icon-drop-mobile peuvent masquer le pseudo-élément ::after.
   Cette règle ajoute un ::after explicite pour garantir la flèche quand un li.level-2 a des enfants. */

@media (min-width: 768px) {
  .tv-menu-horizontal ul li.level-2 > a::after {
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 18px;
    top: 5px;
    font-size: 18px;
    color: #666;
    font-family: 'Material Icons';
    content: '\e315';
  }
}