/* Loader sur les boutons */
.card .swep-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.card .swep-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, var(--cartbtn-color-bg) 94%, #0000) top/4px 4px
      no-repeat,
    conic-gradient(#0000 30%, var(--cartbtn-color-bg));
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
  mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
  animation: swep-spinner-spin 1s infinite linear;
}

@keyframes swep-spinner-spin {
  100% {
    transform: rotate(1turn);
  }
}

/* Overlay pour bloquer tout le panier pendant le chargement */
.swep-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swep-cart-overlay .spinner-border {
  width: 3rem;
  height: 3rem;
}

/* ===========================
   SWEP Lot label in cart
   =========================== */

.swep-lot-label {
  display: inline-block;
  font-size: 0.8rem;
  color: #666;
  margin-top: 2px;
}

.swep-lot-icon {
  font-size: 0.85rem;
}

.swep-discount-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 4px;
}

.swep-badge-discount {
  background-color: #28a745;
  color: #fff;
}

.swep-badge-free {
  background-color: #007bff;
  color: #fff;
}

/* Prix barré dans le panier */
.swep-cart-price-line {
  display: inline-block;
  font-size: 0.8rem;
  margin-top: 2px;
}

.swep-cart-price-line .swep-original-price {
  color: #999;
  text-decoration: line-through;
  font-size: 0.75rem;
  margin-right: 4px;
}

.swep-cart-price-line .swep-final-price {
  color: #28a745;
  font-weight: 600;
}

.swep-cart-price-line .swep-final-price.swep-free {
  color: #007bff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
}
