.product-price.col-price{
    flex-direction: row-reverse;
    align-items: flex-start;
}

#product .ce-product-variants__radio-wrapper:not(:has(span))::before{
    content: '';
    background-image: url(../../no-image.jpg);
    text-align: center;
    line-height: 25px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border-style: solid;
    border-width: 1px;
    padding: 2px;
}
.cart-item .product-line-info {
    color: #000000;
  }
.download-mockup.btn-link{
  margin-top: 0px;
}
.current-price{
  margin-right: 30px;
}
.action-buttons .icone-cart{
    height:30px;
    width:auto;
}

.button-container {
  position: relative; /* Permet de positionner le tooltip */
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  text-align: center;
  padding: 5px 10px;
  border-radius: 5px;
  position: absolute;
  top: 125%; /* Place le tooltip en dessous */
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}

.button-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.icone-cart{
  background-color: #ECECED;
  width: 24px;
  border-radius: 24px;
  padding: 5px;
  filter: contrast(2);
}

/* Ajout pour le mobile */
@media (max-width: 768px) {
  .button-container:active .tooltip-text {
    visibility: visible;
    opacity: 1;
    white-space: normal; /* Permet aux textes longs de passer à la ligne */
  }

  .tooltip-text {
    font-size: 10px; /* Taille du texte plus petite sur mobile */
    max-width: 80vw; /* Empêche que le tooltip dépasse l'écran */
  }
  .icone-cart{
    background-color: #ECECED;
    width: 24px;
    border-radius: 24px;
    padding: 5px;
  }
}
.product-line-info {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  height: 100%;
}

.current-price {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  height: 100%;
}

.price {
  font-size: 1rem;
}


/* layout-both-column-myaccount */
body.myaccount .layout-myaccount{
  display: flex;
  gap: 15px;
  flex-direction: row;
}

body.myaccount .layout-myaccount #left-column{}
body.myaccount .layout-myaccount #left-column li{
  white-space: nowrap;
}

body.myaccount .layout-myaccount #content-wrapper{  }
body.myaccount .layout-myaccount #right-column{}

@media (max-width: 1200px){
  body.myaccount .layout-myaccount{
    flex-direction: column;
  }
  body.myaccount .layout-myaccount #left-column ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
  }
}
span.product-text {
  width: 100%;
  overflow: hidden;
  border: 2px solid black;
  padding: 4px;
  display: block !important;
  box-sizing: border-box;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#order-products .info-container {
  max-width: 400px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page-my-account .link-item i {
	height: 51px;
	min-height: 51px;
	font-style: normal !important;
}

.product-miniature {
  max-width: 80px;
  border: 1.5px solid #ccc;
  padding: 6px;
  border-radius: 24px;
}

.product-mockup {
  border: 1.7px solid #ccc;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 10px;
}

.js-cart-line-product-quantity.form-control{
  margin-right: 0px !important;
}

body#cart .cart-item .qty .bootstrap-touchspin .bootstrap-touchspin-up,
body#cart .cart-item .qty .bootstrap-touchspin .bootstrap-touchspin-down {
  background-color: transparent !important;
  background: transparent !important;
  border-color: #ccc !important;
  color: #333 !important;
}

/* Zone de marquage affichée sous le nom du produit de marquage dans le panier */
.marking-zone {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  color: #0045AB;
  font-size: 0.85rem;
  line-height: 1.2;
}
.marking-zone .material-icons {
  font-size: 1rem;
}