.fa__cart__add.fa__cart__redirect {

}

.fa__cart__add.fa__cart__redirect:hover {

}

.cart__button-wrap {
    transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

.cart__button-wrap .cart__button {
    position: relative;
    display: inline-block;
    width: 33px;
    height: 33px;
    background-image: url(/wp-content/uploads/2025/02/panier.svg);
}

.cart__button-wrap .cart__button .cart__button__svg {
    display: none;
}

.cart__button-wrap .cart__button .cart_items__badge {
    position: absolute;
    top: -10px;
    right: -10px;
    display: inline-block;
    height: 20px;
    min-width: 20px;
    background-color: #FFF;
    border-radius: 50%;
    color: #000;
    font-family: var(--e-global-typography-accent-font-family);
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
    pointer-events: auto;
}
.cart__button-wrap .cart__button .cart_items__badge.sm {
    font-size: (9em / 16);
}
.cart__button-wrap .cart__button .cart_items__badge.xs {
    font-size: (8em / 16);
}
.cart__button-wrap .cart__button .cart_items__badge.hidden {
    display: none;
}
/* .cart__button-wrap .cart__button svg {
    width: 2em;
    height: auto;
    fill: #000;
} */
/*
 * For this to work, the wrap element must be displayed
 * as a block
 */
.cart__button-wrap .cart_items__dropdown {
    display: none;
    position: absolute;
    right: 0;
    width: 320px;
    background-color: #FFF;
    border: 2px solid #000;
    font-size: 16px;
    color: #000;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}
.cart__button-wrap .cart_items__dropdown .cart_items__checkout {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5em;
}
.cart__button-wrap .cart_items__dropdown .cart_items__checkout.hidden {
    display: none;
}
.cart__button-wrap .cart_items__dropdown .cart_items__info {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 12px 12px 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #000;
}
.cart__button-wrap .cart_items__dropdown .cart_items__info .cart_items__info-header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}
.cart__button-wrap .cart_items__dropdown .cart_items__info .cart_items__info-header img.cart__button__svg {
    display: none;
}
.cart__button-wrap .cart_items__dropdown .cart_items__info .cart_items__info-header h3 {
    display: inline-block;
    margin: 0;
}
.cart__button-wrap .cart_items__dropdown .cart_items__info p {
    margin: 0;
    font-size: 12px;
    text-align: center;
}
.cart__button-wrap .cart_items__dropdown .cart_items__empty {
    padding: 12px;
    font-size: 12px;
    text-align: center;
}
.cart__button-wrap .cart_items__dropdown ul {
    margin: 0;
    padding: 0;
}
.cart__button-wrap .cart_items__dropdown ul li {
    list-style-type: none;
    line-height: 100%;
    clip-path: inset(0 0 0 0);
}
.cart__button-wrap .cart_items__dropdown ul li div.fa__cart__item-extras {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 0.8em 1em;
}
.cart__button-wrap .cart_items__dropdown ul li a.fa__cart__item-uri {
    display: block;
    margin: 0.8em;
}
.cart__button-wrap .cart_items__dropdown ul li a.fa__cart__item-uri:hover,
.cart__button-wrap .cart_items__dropdown ul li a.fa__cart__item-uri:focus {
    background-color: #000;
    color: #FFF;
}
.cart__button-wrap .cart_items__dropdown ul li a.fa__cart__item-uri strong {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 6px;
}
.cart__button-wrap .cart_items__dropdown ul li a.fa__cart__remove {
    padding: initial;
    margin: 0 1em;
    text-decoration: none;
}
.cart__button-wrap .cart_items__dropdown ul li a.fa__cart__remove:hover {
    text-decoration: underline;
}
.cart__button-wrap .cart_items__dropdown ul li.spacer {
    margin: 0 12px;
    border-top: 1px solid #000;
}
.cart__button-wrap .cart_items__dropdown ul li.spacer:last-of-type {
    display: none;
}
.cart__button-wrap:hover .cart_items__dropdown,
.cart__button-wrap:focus .cart_items__dropdown {
    display: block;
}

.checkout__wrap {
  border: 1px solid black;
  padding: 1em;
}

ul.checkout__item-list {
  list-style-type: none;
  padding-inline-start: 1em;
}

div.checkout__info {
  display: flex;
  flex-direction: column;
  width: 15em;
}

li.checkout__item-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: .5em;
}

div.checkout__item-extras {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

div.checkout__item-type {
  font-size: smaller;
  font-style: italic;
}

a.checkout__item-remove__action {
  text-decoration: none;
}

a.checkout__item-remove__action:hover {
  text-decoration: underline;
}

.checkout__empty-cart.hidden {
  display: none;
}

.checkout__total {
  margin-left: 1em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.purchase__confirmation {
  display: none;
  border: 1px solid black;
  background-color: #edc39f;
  padding: .5em;
}

.purchase__confirmation.shown {
  display: flex;
}




@media (max-width: 768px) { /* MOBILE */
    .checkout__total {
      flex-direction: column;
      gap: 10px;
      margin: 0;
    }
  }
  