/* ================================================================
   SKH Fly to Cart – CSS v1.0.0
   ================================================================ */

.skh-ftc-fly {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15,23,42,.20);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform, opacity;
}

.skh-ftc-fly img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.skh-ftc-fly span {
  font-size: .65rem;
  font-weight: 700;
  color: #cc0000;
  text-align: center;
  padding: 4px;
  line-height: 1.2;
}

/* Puls-animation på varukorgsikonen */
.skh-ftc-pulse {
  animation: skh-ftc-pulse-anim .55s ease !important;
}

@keyframes skh-ftc-pulse-anim {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.22); }
  70%  { transform: scale(.94); }
  100% { transform: scale(1); }
}

/* Respektera reduced motion */
@media (prefers-reduced-motion: reduce) {
  .skh-ftc-fly { display: none !important; }
  .skh-ftc-pulse { animation: none !important; }
}
