/* add background colors in variouse boxes  - start */
.product-info-row{
    background: #fff;
    margin: 0;
    padding: 2rem 1rem;
    margin-bottom: 3rem;
    border: 1px solid #f0f0f0
}

#left-column{ padding-right: 0;}

body#checkout section.checkout-step, .cart-grid-right .cart-summary{
    background: #fff
}

.cart-items{
    background: #fff;
    border: 1px solid #f0f0f0
}
.cart-item{
    padding: 1rem
}

.products-selection{
background: #fff;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px solid #f0f0f0
}

.product-tabs .nav-link{
 padding: 1rem;
border-top: 1px solid transparent;
border-left: 1px solid  transparent;
border-right: 1px solid  transparent;
}

.product-tabs .nav-link.active{
 background: #fff;
border-top: 1px solid #f0f0f0;
border-left: 1px solid #f0f0f0;
border-right: 1px solid #f0f0f0;	
}

.product-tabs .nav-tabs{
 margin: 0;
}

.product-tabs .tab-content{
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #f0f0f0;
border-top: none;
}
/* add background colors in variouse boxes  - end */

element.style {
}
*, *::before, *::after {
    box-sizing: border-box;
}

#content-wrapper .page-title {
font-size: 1.8rem !important;
}

.fa {
font-family: FontAwesome !important;
}

@media only screen and (max-width: 600px) {
  #open_ochat_conversion {
    bottom: 81px !important;
    right: 2px !important;
      }
  #hello_text-online {
    display: none !important;
    }
}

.elementor-toggle .elementor-toggle-title .elementor-toggle-icon {
    float: left !important;
}

#payment-option-6-container {
    display: flex !important;
}

.paypal-mark { 
    margin-top:0px !important;
    margin-left: 4px !important;
    padding: 2px 6.666666666666667px !important;
}

.paypal-mark img { 
    height: 10px !important;
}

.sooajax-description {
    text-align:justify;
    margin:5px;
}

span[paypal-mark-container] {
display: inline-block !important;
}

div.accessorycheckbox {
    border: none !important;
}


.accessorycheckbox article.product-miniature,
.accessorycheckbox article.product-miniature:hover,
.accessorycheckbox article.product-miniature.over {
    border: none !important;
    outline: none !important;
}

input[name="accessory_qty"] {
    height: 31.5px !important;
    width: 33px !important;
}

.multi-accessories .bootstrap-touchspin .input-group-btn-vertical i {
    top: 2px !important;
    left: .3rem !important;
}

div.accessorycheckbox .price {
    display: inline-block !important;
    margin-top: 6px !important;
    margin-left: 3px !important;
}

.advantages-list li {
  margin-bottom: 12px;
}

/* ===== TITRE AVEC SOULIGNEMENT VISIBLE + ANIMATION HOVER ===== */

.section-title-accent-hover {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title-accent-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;              /* longueur de base */
  height: 2px;              /* épaisseur */
  background-color: #F47B20;
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Animation au hover */
.section-title-accent-hover:hover::after {
  width: 45px;              /* extension au hover */
}

/* Responsive */
@media (max-width: 768px) {
  .section-title-accent-hover::after {
    width: 24px;
  }

  .section-title-accent-hover:hover::after {
    width: 36px;
  }
}

/* Conteneur des boutons */
.menu-categories-buttons {
  display: flex;
  gap: 12px;
}

/* Liens prennent la même largeur */
.menu-categories-buttons a {
  flex: 1;
}

/* Boutons: même hauteur + centrage vertical */
.menu-categories-buttons button {
  width: 100%;
  min-height: 44px; /* hauteur mobile recommandée */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal; /* autorise le retour a la ligne */
  line-height: 1.2;
  padding: 8px 12px;
}

/* ===== SOUS-CATEGORIES MENU MOBILE ===== */

.submenu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.submenu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #1E1E1E;
  font-size: 14px;
  border-radius: 10px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.submenu-item img {
  width: 60px;
  height: 60px;
  padding: 6px;
  border-radius: 50%;
  border: 1px solid #DDDDDD;
  margin-bottom: 6px;
}

/* Hover desktop */
.submenu-item:hover span {
  color: #F47B20;
}

.submenu-item:hover {
  background: #F2F2F2;
  transform: translateY(-1px);
}

.submenu-item:hover img {
  border-color: #F47B20 !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .submenu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .submenu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}