.center-container {
  display: flex;
  justify-content: center;
}

.warning-box {
  border: 2px solid #c3b092;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  max-width: 500px;
  /* Largeur maximale */
  font-family: Arial, sans-serif;
  font-size: 18px;
  background-color: #fefaf4;
}

.warning-box img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.warning-text {
  font-weight: bold;
}

#checkout .header__logo img {
  width: 100%;
  max-width: 350px;
}

.cart__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.cart__title-row .page-title {
  margin-bottom: 0;
}

.btn-clear-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 4px 6px;
  color: #000;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.18s ease;
}

.btn-clear-cart:hover,
.btn-clear-cart:focus {
  color: #f08000;
  text-decoration: none;
  outline: none;
}

.btn-clear-cart .material-icons {
  font-size: 16px;
  background: transparent !important;
  color: inherit !important;
  padding: 0 !important;
  border-radius: 0 !important;
  transition: transform 0.18s ease;
}

.btn-clear-cart:hover .material-icons,
.btn-clear-cart:focus .material-icons {
  transform: scale(1.1);
}

.btn-clear-cart span {
  text-decoration: none;
}

.btn-clear-cart.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.cart__card-body--loading {
  position: relative;
}

.cart__card-body--loading .cart-overview,
.cart__card-body--loading .cart-items {
  opacity: 0.4;
  pointer-events: none;
}

.cart__card-body--loading .cart__card-loader {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 10;
}