/* assets/css/itm-products-shortcode.css */

/* Wrapper */
.itm-product-list-wrapper-pre-ajax {
  position: relative;
    display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.itm-product-list-wrapper-pre-ajax > li.product
{
	flex: 1 0;
}

/* Loading overlay */
.itm-aps-spinner-wrapper .loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(255,255,255,0.8);
  padding: 1em 1.5em;
  border-radius: .5em;
  z-index: 10;
}

/* Spinner */
.itm-aps-spinner-wrapper .loading-text .spinner {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto .5em;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top-color: #2c2658; /* dit primære blå tema */
  border-radius: 50%;
  animation: itm-spinner-spin 0.8s linear infinite;
}

@keyframes itm-spinner-spin {
  to { transform: rotate(360deg); }
}

.itm-product-list-wrapper-pre-ajax > .placeholder-item {
  position: relative;
  overflow: hidden;
  background: #f6f7f8;
}

.itm-product-list-wrapper-pre-ajax > .placeholder-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  animation: shimmer 1.6s infinite;
}

@keyframes shimmer {
  100% {
    left: 150%;
  }
}