/* Container gets relative pos so the overlay sits on top */
.alma-ras-loading {
  position: relative;
}

/* Semi-transparent overlay + spinner centered */
.alma-ras-loader-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: none; /* toggled via JS */
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  z-index: 9999;
}

.alma-ras-loader {
  width: 36px;
  height: 36px;
  border: 3px solid #ddd;
  border-top-color: #333;
  border-radius: 50%;
  animation: almaRasSpin 0.8s linear infinite;
}

@keyframes almaRasSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Optional: visually mute buttons while loading */
.qty-btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.free-shipping-info {
  padding: 32px;
  background: #e7e2de40;
  margin-bottom: 16px;
}

.free-shipping-info bdi {
  font-weight: 800;
}

@media only screen and (max-width: 600px) {
  .free-shipping-info {
    margin: 0 -16px;
    margin-bottom: 16px;
  }
}