.breadcrumb{
    border-left: 1px solid #ccc;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: none !important;
}

/* Ajouter le séparateur ">" entre les éléments */
.breadcrumb-item.separator-item::after {
    content: " > " !important;
    padding: 0 5px !important;
}

/* Enlever le séparateur après le dernier élément */
.breadcrumb-item:last-child::after {
    content: "" !important;
}

/* Container for the zoom effect */
.zoom-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 400px;
  }
  
  /* Main image style */
  .zoom-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease-in-out;
    will-change: transform; /* Optimize performance */
  }
  
  /* Zoom effect on hover */
  .zoom-container:hover img {
    transform: scale(2); /* Adjust zoom level */
    cursor: crosshair;
  }
  
  /* Thumbnails style */
  .thumbnails {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 10px;
  }
  
  /* Each thumbnail image style */
  .thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
  }
  
  /* Thumbnail hover effect */
  .thumbnail:hover {
    opacity: 0.7;
  }
  .quantity-border {
    border: 1px solid #ccc;
    padding: 5px;
    display: inline-block;
    border-radius: 4px;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
}

.quantity-wrapper button {
    background-color: #eee;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
}

.quantity-wrapper .quantity {
    margin: 0 5px;
    width: 50px;
    text-align: center;
}

.quantity-wrapper button:focus,
.quantity-wrapper input:focus {
    outline: none;
}
.woocommerce .quantity .qty {
  width: 100% !important;
  padding-left: 15px;
  height: 50px;
  border: 0;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  outline: none;
}
.card-quantity-btn{
  width: 50px;
  height: 50px;
  z-index: 1;
  background-color: #fafafa;
}
.card-quantity-btn:hover{
  background-color: transparent;
  color: #c1b2a4;
}
.woocommerce div.product form.cart div.quantity {
  float: none !important;
  margin: 0 !important;
  height: 50px;
}
.minus{
  
  border-bottom: 1px solid #e3e3e3;
  border-top: 1px solid #e3e3e3;
  border-left: 1px solid #e3e3e3;
  border-right: none;
}
.plus{
  
  border-bottom: 1px solid #e3e3e3;
  border-top: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
  border-left: none;
}

.single_add_to_cart_button{
  height: 50px;
  font-size: 23px !important;
}
.img-cart-info-lock{
  width: 30px;
}
.img-cart-info-sav{
  width: 38px;
}
.woocommerce-notices-wrapper{
  display: none !important;
}