.prod-card-img,
.product-image-wrap {
  position: relative;
}

.sp-jl-share-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.33);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.sp-jl-share-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.sp-jl-share-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(245,182,176,0.80) 100%);
  color: #7a2e28;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease;
}
.sp-jl-share-btn svg { width: 24px; height: 24px; display: block; }
.sp-jl-share-btn:active { transform: scale(0.89); }

.sp-jl-spinner {
  width: 20px;
  height: 20px;
  display: block;
  animation: spJlSpin 0.7s linear infinite;
}
@keyframes spJlSpin {
  to { transform: rotate(360deg); }
}
