/**
 * Styles pour le menu principal
 */

/* Header */
header {
  background-color: white;
  color: var(--text-dark);
  padding: 0.8rem 1rem;
  box-shadow: 0 4px 15px rgba(219, 179, 20, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #deb11c;
  text-decoration: none;
}

.nav-row {
  display: flex;
  align-items: center;
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu a {
  position: relative;
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333333;
  background: none;
  transition: all 0.3s ease;
  box-shadow: none;
  text-decoration: none;
  display: inline-block;
}

.main-menu a:hover,
.main-menu li.current-menu-item a {
  background: #deb11c;
  color: #fff;
  box-shadow: 0 2px 8px rgba(219, 179, 20, 0.08);
}

.woocommerce-header-cart {
  position: relative;
  margin-left: 1rem;
  overflow: visible;
  z-index: 10;
}

.woocommerce-header-cart .cart-contents {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-orange);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.woocommerce-header-cart .cart-contents:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
}

.woocommerce-header-cart .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 50%;
  background-color: #e74c3c;
  color: white;
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0 2px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#cart-link {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #deb11c;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: 1rem;
}

#cart-link:hover {
  background-color: #c19e10;
  transform: translateY(-3px);
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  z-index: 1;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 200;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-orange);
  transition: all 0.3s ease;
}

/* État actif du hamburger (transformé en X) */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-count {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

/* Logo styles */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: block;
    max-width: 180px; /* Ajustez selon la taille souhaitée */
}

.custom-logo {
    width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    position: static;
    width: 100%;
  }

  .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    z-index: 100;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .main-menu.active {
    display: flex;
  }
  
  .main-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .main-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
  
  /* Style pour les sous-menus */
  .main-menu .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .main-menu .menu-item-has-children {
    position: relative;
  }
  
  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0.8rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .submenu-toggle.active i {
    transform: rotate(180deg);
  }
  
  /* Empêcher le défilement du body quand le menu est ouvert */
  body.menu-open {
    overflow: hidden;
  }
}

/* Remplacer toutes les instances de couleur orange par #deb11c */
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #deb11c;
}

.menu-toggle:hover .menu-icon,
.menu-toggle:hover .menu-icon::before,
.menu-toggle:hover .menu-icon::after {
  background-color: #deb11c;
}

.header-cart .cart-icon:hover {
  color: #deb11c;
}

.header-cart .cart-count {
  background-color: #deb11c;
}

.sub-menu {
  border-top: 3px solid #deb11c;
}

.sub-menu a:hover {
  color: #deb11c;
}

/* Styles pour le panier WooCommerce dans l'en-tête */
.woocommerce-header-cart {
  position: relative;
  margin-left: 1rem;
  overflow: visible;
  z-index: 10;
}

.woocommerce-header-cart .cart-contents {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-orange);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.woocommerce-header-cart .cart-contents:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
}

.woocommerce-header-cart .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 50%;
  background-color: #e74c3c;
  color: white;
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0 2px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#cart-link {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #deb11c;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: 1rem;
}

#cart-link:hover {
  background-color: #c19e10;
  transform: translateY(-3px);
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  z-index: 1;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 200;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-orange);
  transition: all 0.3s ease;
}

/* État actif du hamburger (transformé en X) */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-count {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

/* Logo styles */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: block;
    max-width: 180px; /* Ajustez selon la taille souhaitée */
}

.custom-logo {
    width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    position: static;
    width: 100%;
  }

  .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    z-index: 100;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .main-menu.active {
    display: flex;
  }
  
  .main-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .main-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
  
  /* Style pour les sous-menus */
  .main-menu .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .main-menu .menu-item-has-children {
    position: relative;
  }
  
  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0.8rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .submenu-toggle.active i {
    transform: rotate(180deg);
  }
  
  /* Empêcher le défilement du body quand le menu est ouvert */
  body.menu-open {
    overflow: hidden;
  }
}

/* Remplacer toutes les instances de couleur orange par #deb11c */
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #deb11c;
}

.menu-toggle:hover .menu-icon,
.menu-toggle:hover .menu-icon::before,
.menu-toggle:hover .menu-icon::after {
  background-color: #deb11c;
}

.header-cart .cart-icon:hover {
  color: #deb11c;
}

.header-cart .cart-count {
  background-color: #deb11c;
}

.sub-menu {
  border-top: 3px solid #deb11c;
}

.sub-menu a:hover {
  color: #deb11c;
}

/* Styles pour le panier WooCommerce dans l'en-tête */
.woocommerce-header-cart {
  position: relative;
  margin-left: 1rem;
  overflow: visible;
  z-index: 10;
}

.woocommerce-header-cart .cart-contents {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-orange);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.woocommerce-header-cart .cart-contents:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
}

.woocommerce-header-cart .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 50%;
  background-color: #e74c3c;
  color: white;
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0 2px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#cart-link {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #deb11c;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: 1rem;
}

#cart-link:hover {
  background-color: #c19e10;
  transform: translateY(-3px);
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  z-index: 1;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 200;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-orange);
  transition: all 0.3s ease;
}

/* État actif du hamburger (transformé en X) */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-count {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

/* Logo styles */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: block;
    max-width: 180px; /* Ajustez selon la taille souhaitée */
}

.custom-logo {
    width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    position: static;
    width: 100%;
  }

  .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    z-index: 100;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .main-menu.active {
    display: flex;
  }
  
  .main-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .main-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
  
  /* Style pour les sous-menus */
  .main-menu .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .main-menu .menu-item-has-children {
    position: relative;
  }
  
  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0.8rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .submenu-toggle.active i {
    transform: rotate(180deg);
  }
  
  /* Empêcher le défilement du body quand le menu est ouvert */
  body.menu-open {
    overflow: hidden;
  }
}

/* Remplacer toutes les instances de couleur orange par #deb11c */
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #deb11c;
}

.menu-toggle:hover .menu-icon,
.menu-toggle:hover .menu-icon::before,
.menu-toggle:hover .menu-icon::after {
  background-color: #deb11c;
}

.header-cart .cart-icon:hover {
  color: #deb11c;
}

.header-cart .cart-count {
  background-color: #deb11c;
}

.sub-menu {
  border-top: 3px solid #deb11c;
}

.sub-menu a:hover {
  color: #deb11c;
}

/* Styles pour le panier WooCommerce dans l'en-tête */
.woocommerce-header-cart {
  position: relative;
  margin-left: 1rem;
  overflow: visible;
  z-index: 10;
}

.woocommerce-header-cart .cart-contents {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-orange);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.woocommerce-header-cart .cart-contents:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
}

.woocommerce-header-cart .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 50%;
  background-color: #e74c3c;
  color: white;
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0 2px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#cart-link {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #deb11c;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: 1rem;
}

#cart-link:hover {
  background-color: #c19e10;
  transform: translateY(-3px);
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  z-index: 1;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 200;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-orange);
  transition: all 0.3s ease;
}

/* État actif du hamburger (transformé en X) */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-count {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

/* Logo styles */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: block;
    max-width: 180px; /* Ajustez selon la taille souhaitée */
}

.custom-logo {
    width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    position: static;
    width: 100%;
  }

  .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    z-index: 100;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .main-menu.active {
    display: flex;
  }
  
  .main-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .main-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
  
  /* Style pour les sous-menus */
  .main-menu .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .main-menu .menu-item-has-children {
    position: relative;
  }
  
  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0.8rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .submenu-toggle.active i {
    transform: rotate(180deg);
  }
  
  /* Empêcher le défilement du body quand le menu est ouvert */
  body.menu-open {
    overflow: hidden;
  }
}

/* Remplacer toutes les instances de couleur orange par #deb11c */
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #deb11c;
}

.menu-toggle:hover .menu-icon,
.menu-toggle:hover .menu-icon::before,
.menu-toggle:hover .menu-icon::after {
  background-color: #deb11c;
}

.header-cart .cart-icon:hover {
  color: #deb11c;
}

.header-cart .cart-count {
  background-color: #deb11c;
}

.sub-menu {
  border-top: 3px solid #deb11c;
}

.sub-menu a:hover {
  color: #deb11c;
}

/* Styles pour le panier WooCommerce dans l'en-tête */
.woocommerce-header-cart {
  position: relative;
  margin-left: 1rem;
  overflow: visible;
  z-index: 10;
}

.woocommerce-header-cart .cart-contents {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-orange);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.woocommerce-header-cart .cart-contents:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
}

.woocommerce-header-cart .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 50%;
  background-color: #e74c3c;
  color: white;
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0 2px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#cart-link {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #deb11c;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: 1rem;
}

#cart-link:hover {
  background-color: #c19e10;
  transform: translateY(-3px);
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  z-index: 1;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 200;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-orange);
  transition: all 0.3s ease;
}

/* État actif du hamburger (transformé en X) */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-count {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

/* Logo styles */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: block;
    max-width: 180px; /* Ajustez selon la taille souhaitée */
}

.custom-logo {
    width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    position: static;
    width: 100%;
  }

  .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    z-index: 100;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .main-menu.active {
    display: flex;
  }
  
  .main-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .main-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
  
  /* Style pour les sous-menus */
  .main-menu .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .main-menu .menu-item-has-children {
    position: relative;
  }
  
  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0.8rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .submenu-toggle.active i {
    transform: rotate(180deg);
  }
  
  /* Empêcher le défilement du body quand le menu est ouvert */
  body.menu-open {
    overflow: hidden;
  }
}

/* Remplacer toutes les instances de couleur orange par #deb11c */
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #deb11c;
}

.menu-toggle:hover .menu-icon,
.menu-toggle:hover .menu-icon::before,
.menu-toggle:hover .menu-icon::after {
  background-color: #deb11c;
}

.header-cart .cart-icon:hover {
  color: #deb11c;
}

.header-cart .cart-count {
  background-color: #deb11c;
}

.sub-menu {
  border-top: 3px solid #deb11c;
}

.sub-menu a:hover {
  color: #deb11c;
}

/* Styles pour le panier WooCommerce dans l'en-tête */
.woocommerce-header-cart {
  position: relative;
  margin-left: 1rem;
  overflow: visible;
  z-index: 10;
}

.woocommerce-header-cart .cart-contents {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-orange);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.woocommerce-header-cart .cart-contents:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
}

.woocommerce-header-cart .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 50%;
  background-color: #e74c3c;
  color: white;
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0 2px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#cart-link {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #deb11c;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: 1rem;
}

#cart-link:hover {
  background-color: #c19e10;
  transform: translateY(-3px);
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  z-index: 1;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 200;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-orange);
  transition: all 0.3s ease;
}

/* État actif du hamburger (transformé en X) */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-count {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

/* Logo styles */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: block;
    max-width: 180px; /* Ajustez selon la taille souhaitée */
}

.custom-logo {
    width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    position: static;
    width: 100%;
  }

  .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    z-index: 100;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .main-menu.active {
    display: flex;
  }
  
  .main-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .main-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
  
  /* Style pour les sous-menus */
  .main-menu .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .main-menu .menu-item-has-children {
    position: relative;
  }
  
  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0.8rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .submenu-toggle.active i {
    transform: rotate(180deg);
  }
  
  /* Empêcher le défilement du body quand le menu est ouvert */
  body.menu-open {
    overflow: hidden;
  }
}

/* Remplacer toutes les instances de couleur orange par #deb11c */
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #deb11c;
}

.menu-toggle:hover .menu-icon,
.menu-toggle:hover .menu-icon::before,
.menu-toggle:hover .menu-icon::after {
  background-color: #deb11c;
}

.header-cart .cart-icon:hover {
  color: #deb11c;
}

.header-cart .cart-count {
  background-color: #deb11c;
}

.sub-menu {
  border-top: 3px solid #deb11c;
}

.sub-menu a:hover {
  color: #deb11c;
}

/* Styles pour le panier WooCommerce dans l'en-tête */
.woocommerce-header-cart {
  position: relative;
  margin-left: 1rem;
  overflow: visible;
  z-index: 10;
}

.woocommerce-header-cart .cart-contents {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-orange);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.woocommerce-header-cart .cart-contents:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
}

.woocommerce-header-cart .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 50%;
  background-color: #e74c3c;
  color: white;
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0 2px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#cart-link {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #deb11c;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: 1rem;
}

#cart-link:hover {
  background-color: #c19e10;
  transform: translateY(-3px);
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  z-index: 1;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 200;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-orange);
  transition: all 0.3s ease;
}

/* État actif du hamburger (transformé en X) */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-count {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

/* Logo styles */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: block;
    max-width: 180px; /* Ajustez selon la taille souhaitée */
}

.custom-logo {
    width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    position: static;
    width: 100%;
  }

  .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    z-index: 100;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .main-menu.active {
    display: flex;
  }
  
  .main-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .main-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
  
  /* Style pour les sous-menus */
  .main-menu .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .main-menu .menu-item-has-children {
    position: relative;
  }
  
  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0.8rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .submenu-toggle.active i {
    transform: rotate(180deg);
  }
  
  /* Empêcher le défilement du body quand le menu est ouvert */
  body.menu-open {
    overflow: hidden;
  }
}

/* Remplacer toutes les instances de couleur orange par #deb11c */
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #deb11c;
}

.menu-toggle:hover .menu-icon,
.menu-toggle:hover .menu-icon::before,
.menu-toggle:hover .menu-icon::after {
  background-color: #deb11c;
}

.header-cart .cart-icon:hover {
  color: #deb11c;
}

.header-cart .cart-count {
  background-color: #deb11c;
}

.sub-menu {
  border-top: 3px solid #deb11c;
}

.sub-menu a:hover {
  color: #deb11c;
}

/* Styles pour le panier WooCommerce dans l'en-tête */
.woocommerce-header-cart {
  position: relative;
  margin-left: 1rem;
  overflow: visible;
  z-index: 10;
}

.woocommerce-header-cart .cart-contents {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-orange);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.woocommerce-header-cart .cart-contents:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
}

.woocommerce-header-cart .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 50%;
  background-color: #e74c3c;
  color: white;
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0 2px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#cart-link {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #deb11c;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: 1rem;
}

#cart-link:hover {
  background-color: #c19e10;
  transform: translateY(-3px);
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  z-index: 1;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 200;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-orange);
  transition: all 0.3s ease;
}

/* État actif du hamburger (transformé en X) */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-count {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

/* Logo styles */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: block;
    max-width: 180px; /* Ajustez selon la taille souhaitée */
}

.custom-logo {
    width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    position: static;
    width: 100%;
  }

  .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    z-index: 100;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .main-menu.active {
    display: flex;
  }
  
  .main-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .main-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
  
  /* Style pour les sous-menus */
  .main-menu .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .main-menu .menu-item-has-children {
    position: relative;
  }
  
  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0.8rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .submenu-toggle.active i {
    transform: rotate(180deg);
  }
  
  /* Empêcher le défilement du body quand le menu est ouvert */
  body.menu-open {
    overflow: hidden;
  }
}

/* Remplacer toutes les instances de couleur orange par #deb11c */
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #deb11c;
}

.menu-toggle:hover .menu-icon,
.menu-toggle:hover .menu-icon::before,
.menu-toggle:hover .menu-icon::after {
  background-color: #deb11c;
}

.header-cart .cart-icon:hover {
  color: #deb11c;
}

.header-cart .cart-count {
  background-color: #deb11c;
}

.sub-menu {
  border-top: 3px solid #deb11c;
}

.sub-menu a:hover {
  color: #deb11c;
}

/* Styles pour le panier WooCommerce dans l'en-tête */
.woocommerce-header-cart {
  position: relative;
  margin-left: 1rem;
  overflow: visible;
  z-index: 10;
}

.woocommerce-header-cart .cart-contents {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-orange);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.woocommerce-header-cart .cart-contents:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
}

.woocommerce-header-cart .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 50%;
  background-color: #e74c3c;
  color: white;
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0 2px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#cart-link {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #deb11c;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: 1rem;
}

#cart-link:hover {
  background-color: #c19e10;
  transform: translateY(-3px);
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  z-index: 1;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 200;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-orange);
  transition: all 0.3s ease;
}

/* État actif du hamburger (transformé en X) */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-count {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

/* Logo styles */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: block;
    max-width: 180px; /* Ajustez selon la taille souhaitée */
}

.custom-logo {
    width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    position: static;
    width: 100%;
  }

  .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    z-index: 100;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .main-menu.active {
    display: flex;
  }
  
  .main-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .main-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
  
  /* Style pour les sous-menus */
  .main-menu .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .main-menu .menu-item-has-children {
    position: relative;
  }
  
  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0.8rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .submenu-toggle.active i {
    transform: rotate(180deg);
  }
  
  /* Empêcher le défilement du body quand le menu est ouvert */
  body.menu-open {
    overflow: hidden;
  }
}

/* Remplacer toutes les instances de couleur orange par #deb11c */
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #deb11c;
}

.menu-toggle:hover .menu-icon,
.menu-toggle:hover .menu-icon::before,
.menu-toggle:hover .menu-icon::after {
  background-color: #deb11c;
}

.header-cart .cart-icon:hover {
  color: #deb11c;
}

.header-cart .cart-count {
  background-color: #deb11c;
}

.sub-menu {
  border-top: 3px solid #deb11c;
}

.sub-menu a:hover {
  color: #deb11c;
}

/* Styles pour le panier WooCommerce dans l'en-tête */
.woocommerce-header-cart {
  position: relative;
  margin-left: 1rem;
  overflow: visible;
  z-index: 10;
}

.woocommerce-header-cart .cart-contents {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-orange);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.woocommerce-header-cart .cart-contents:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
}

.woocommerce-header-cart .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 50%;
  background-color: #e74c3c;
  color: white;
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0 2px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#cart-link {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #deb11c;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: 1rem;
}

#cart-link:hover {
  background-color: #c19e10;
  transform: translateY(-3px);
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  z-index: 1;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 200;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-orange);
  transition: all 0.3s ease;
}

/* État actif du hamburger (transformé en X) */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-count {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

/* Logo styles */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: block;
    max-width: 180px; /* Ajustez selon la taille souhaitée */
}

.custom-logo {
    width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    position: static;
    width: 100%;
  }

  .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    z-index: 100;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .main-menu.active {
    display: flex;
  }
  
  .main-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .main-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
  
  /* Style pour les sous-menus */
  .main-menu .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .main-menu .menu-item-has-children {
    position: relative;
  }
  
  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0.8rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .submenu-toggle.active i {
    transform: rotate(180deg);
  }
  
  /* Empêcher le défilement du body quand le menu est ouvert */
  body.menu-open {
    overflow: hidden;
  }
}

/* Remplacer toutes les instances de couleur orange par #deb11c */
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #deb11c;
}

.menu-toggle:hover .menu-icon,
.menu-toggle:hover .menu-icon::before,
.menu-toggle:hover .menu-icon::after {
  background-color: #deb11c;
}

.header-cart .cart-icon:hover {
  color: #deb11c;
}

.header-cart .cart-count {
  background-color: #deb11c;
}

.sub-menu {
  border-top: 3px solid #deb11c;
}

.sub-menu a:hover {
  color: #deb11c;
}

/* Styles pour le panier WooCommerce dans l'en-tête */
.woocommerce-header-cart {
  position: relative;
  margin-left: 1rem;
  overflow: visible;
  z-index: 10;
}

.woocommerce-header-cart .cart-contents {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-orange);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.woocommerce-header-cart .cart-contents:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
}

.woocommerce-header-cart .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 50%;
  background-color: #e74c3c;
  color: white;
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0 2px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#cart-link {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #deb11c;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: 1rem;
}

#cart-link:hover {
  background-color: #c19e10;
  transform: translateY(-3px);
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  z-index: 1;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 200;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-orange);
  transition: all 0.3s ease;
}

/* État actif du hamburger (transformé en X) */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-count {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

/* Logo styles */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: block;
    max-width: 180px; /* Ajustez selon la taille souhaitée */
}

.custom-logo {
    width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    position: static;
    width: 100%;
  }

  .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    z-index: 100;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .main-menu.active {
    display: flex;
  }
  
  .main-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .main-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
  
  /* Style pour les sous-menus */
  .main-menu .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .main-menu .menu-item-has-children {
    position: relative;
  }
  
  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0.8rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .submenu-toggle.active i {
    transform: rotate(180deg);
  }
  
  /* Empêcher le défilement du body quand le menu est ouvert */
  body.menu-open {
    overflow: hidden;
  }
}

/* Remplacer toutes les instances de couleur orange par #deb11c */
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #deb11c;
}

.menu-toggle:hover .menu-icon,
.menu-toggle:hover .menu-icon::before,
.menu-toggle:hover .menu-icon::after {
  background-color: #deb11c;
}

.header-cart .cart-icon:hover {
  color: #deb11c;
}

.header-cart .cart-count {
  background-color: #deb11c;
}

.sub-menu {
  border-top: 3px solid #deb11c;
}

.sub-menu a:hover {
  color: #deb11c;
}

/* Styles pour le panier WooCommerce dans l'en-tête */
.woocommerce-header