#secondary-menu a{
    color: white;
    font-family: Oswald, sans-serif;
    font-size: 16px;
    cursor: default;
}


/* Step à droite du prix */
.step {
    font-size: 0.9em;
    color: var(--global-palette6);
    float: right;
    white-space: nowrap;
}

/* Bestprice sous le prix */
.bestprice {
	margin-top: 0.5em;
	font-size: 0.85em;
	color: var(--global-palette1);
}

.price{
    margin-bottom: 5px;
}

.packing-options{
    margin-bottom: 15px;
}

.packing-btn{
    color: var(--global-palette1);
    background-color: white;
    border-color: var(--global-palette1);
    border: solid;
    padding: 15px 15px 15px 15px;
    margin-right: 5px;
}

.small-x{
    font-family: monospace;
}

.packing-total-price{
    font-weight: bold;
    float: left;
    margin-top: 11px;
    margin-right: 9px;
}

.single_add_to_cart_button{
    width: auto!important;
    padding-left: 40px;
    padding-right: 40px;
}

.cat-accordeon {
	list-style: none;
	padding-left: 0;
}
.cat-accordeon .cat-parent {
	margin-bottom: 10px;
}
.cat-accordeon .cat-children {
	margin-left: 15px;
	list-style: none;
}
.toggle-cat {
	font-weight: bold;
	display: inline-block;
}

.mini-cart-minus,.mini-cart-plus {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}


/* Styliser l’input de quantité */
.mini-cart-qty {
    width: 60px;
    padding-bottom: 3px!important;
    text-align: right;
    margin: 0 0.5rem;
}

/* Alignement du calcul de prix à droite */
.mini-cart-line-price {
    text-align: right;
    margin-top: 0.5rem;
    color: #333;
}

.mini-cart-quantity-wrapper{
    text-align: end;
}

.mini-cart-loading {
	position: relative;
	opacity: 0.5;
	pointer-events: none;
}

.mini-cart-loading::after {
	content: "";
	position: absolute;
    top: 9px;
    left: calc(50% - 24px);
	width: 20px;
	height: 20px;
	border: 3px solid #444;         /* gris foncé */
	border-top-color: #000;         /* noir pour l'effet animé */
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
	z-index: 10;
}

@keyframes spin {
	0%   { transform:rotate(0deg); }
	100% { transform:  rotate(360deg); }
}
