#product .product-discounts { display: none !important; }
div.discounts_table { margin-bottom: 20px; margin-top: 10px; }


div.discounts_table .product-discounts-title { margin-bottom: 10px; }

ul.table-products {
    align-items: center;
    /* display: grid; */
    /* flex-wrap: wrap; */
}

ul.table-products li.selected a.table-products-item {
	cursor: default;
	background-color: #f9f5f4;
    border: 1px solid #3a2d27;
}

ul.table-products li a.table-products-item:before {
  content: "";             /* vide par défaut, pas sélectionné */

  position: absolute;
  top: 28px;                /* à adapter selon ton design */
  left: 20px;              /* ou left: 8px si tu veux à gauche */

  width: 20px;
  height: 20px;
  border-radius: 50%;

  background-color: #fff;
  border: 2px solid #3a2d27;

  box-sizing: border-box;
  pointer-events: none;

}

ul.table-products li.selected a.table-products-item:after {
    color: #3a2d27;
    content: "✔";
    position: absolute;
    top: 28px;
    left: 24px;
    font-size: 16px;
}

ul.table-products p {
	margin-bottom: 0.5em;
	padding: 3px 7px;
}

ul.table-products p.qty {
	font-weight: bold;
	color:  #000;
	font-size: 1.3em;
}

ul.table-products li a.table-products-item {
	color:#3a2d27;
	font-size: 12px;
    background-color: #fff;
    border: 1px solid #adada9;
    cursor: pointer;
    margin-right: 1%;
    position: relative;
    text-decoration: none;
    padding:  10px;
    text-align: center;
    margin-bottom: 10px;
	display:grid;
    grid-template-areas: "a a a";
    gap: 5px;
    justify-content: flex-start;
    grid-auto-columns: 180px;
}



@media only screen and (max-width: 599px) {
	ul.table-products {
	    grid-template-areas: "a a";
	}
}
