.barre a.active {
  border-radius: 8px !important;
  color: #ff9900 !important;
  font-weight: bold !important;
  transform: translateY(-2px) !important;
}

.barre a.active i {
  color: #ff9900 !important;
}

.barre a:hover {
  color: #ff9900 !important;
}

.barre a,
.barre a i {
  transition: all 0.3s ease !important;
}

@keyframes pulse-click {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.1);
  }

  60% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.barre a.pulse {
  animation: pulse-click 0.3s ease !important;
}

@media (prefers-color-scheme: dark) {
  .home-profile-link.active .home-profile-text {
    color: #ff9900 !important;
    font-weight: bold !important;
    border-bottom: 2px solid #ff9900 !important;
  }

  .home-profile-link.active i {
    color: #ff9900 !important;
  }

  .home-profile-text {
    color: #eee !important;
    transition: all 0.3s ease !important;
  }
}

@media (max-width: 991px) {
  .home-profile-text {
    color: #eee !important;
    transition: all 0.3s ease !important;
  }

  .home-profile-link.active .home-profile-text {
    color: #ff9900 !important;
    font-weight: bold !important;
    border-bottom: 2px solid #ff9900 !important;
  }

  .home-profile-link.active i {
    color: #ff9900 !important;
  }
}

.barre a.active i,
.barre a.active .fas,
.barre a.active .far,
.barre a.active .icon-home,
.barre a.active .icon-search,
.barre a.active .icon-notification,
.barre a.active .icon-msg,
.barre a.active .fa-store,
.barre a.active .fa-plus-circle,
.barre a.active .fa-envelope {
  color: #ff9900 !important;
}

@media (prefers-color-scheme: dark) {
  .barre a.active i {
    color: #ff9900 !important;
  }
}

.fa-home:before {
  color: inherit !important;
}

.barre a.active i:before {
  color: #ff9900 !important;
}

.fa-users:before {
  content: "\f0c0";
  padding-left: 10px;
}

/* Bouton Join Now */
.styled-auth-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ff9900;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.styled-auth-link i {
  font-size: 18px;
}

.styled-auth-link:hover {
  background-color: #e68a00;
  transform: translateY(-1px);
}

/* Icône panier */
.cart-link-header {
  color: white;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color 0.3s ease;
}

.cart-link-header:hover {
  color: #ff9900;
}

.cart-items {
  background-color: #ff9900;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 2px;
}

.cart-mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  padding: 6px;
}

.cart-mobile-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-amazon-img {
  width: 28px;
  height: auto;
  object-fit: contain;
}

.panier-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #ff9900;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: bold;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
}

.cart-icon-img {
  max-height: 26px;
  max-width: 26px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.2);
  transition: transform 0.2s ease;
}

.cart-icon-img:hover {
  transform: scale(1.1);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background-color: #ff9900;
  color: white;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 50px;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
  line-height: 1;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.cart-amazon-style .cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-amazon-style .cart-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.cart-amazon-style .cart-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: #ff9900;
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 50px;
  font-weight: bold;
  min-width: 16px;
  line-height: 1;
  text-align: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.catalog.active {
  border-bottom: 2px solid #fff;
  color: #000 !important;
}