.fctel-product-card-preview {
  position: fixed;
  z-index: 2147481500;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(220, 64, 75, .5);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.99), rgba(244,248,252,.98));
  box-shadow: 0 38px 90px rgba(15,29,49,.38), 0 14px 34px rgba(181,31,40,.18), 0 0 0 8px rgba(255,255,255,.32);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(7px);
  transform: perspective(1000px) translateY(42px) scale(.68) rotateX(10deg);
  transform-origin: 50% 64%;
  transition: opacity .22s ease, visibility .22s ease, filter .32s ease, transform .52s cubic-bezier(.16,1.18,.28,1);
}

.fctel-product-card-preview.is-ready.is-visible {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: perspective(1000px) translateY(-22px) scale(1) rotateX(0);
}

.fctel-product-card-preview::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), inset 0 0 38px rgba(80,143,190,.08);
}

.fctel-product-card-preview::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: -55%;
  bottom: -55%;
  left: -36%;
  width: 22%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), transparent);
  transform: skewX(-18deg);
}

.fctel-product-card-preview.is-visible::after {
  animation: fctelPreviewShine .92s .08s cubic-bezier(.2,.7,.25,1) both;
}

.fctel-product-card-preview__beam {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 8%;
  right: 8%;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, #4e91bd, #ef4350 54%, #b51924);
  box-shadow: 0 0 18px rgba(210,41,52,.6);
  opacity: 0;
  transform: scaleX(.18);
}

.fctel-product-card-preview.is-visible .fctel-product-card-preview__beam {
  animation: fctelPreviewBeam .6s .05s cubic-bezier(.18,.8,.24,1) both;
}

.fctel-product-card-preview__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 45%, #fff 0%, #fbfcfd 56%, #f0f4f8 100%);
}

.fctel-product-card-preview__popular {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  display: none;
  min-width: 108px;
  height: 38px;
  box-sizing: border-box;
  padding: 0 15px 0 10px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a18 0%, #f04418 43%, #cf202b 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(218,43,36,.35), inset 0 1px 0 rgba(255,255,255,.3);
}

.fctel-product-card-preview.is-popular-product .fctel-product-card-preview__popular {
  display: inline-flex;
}

.fctel-product-card-preview__popular svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: #fff5b8;
  filter: drop-shadow(0 1px 1px rgba(125,18,6,.35));
  transform-origin: 50% 85%;
  animation: fctel-preview-flame-flicker 1.45s ease-in-out infinite;
}

@keyframes fctel-preview-flame-flicker {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  45% { transform: rotate(3deg) scale(1.1, .96); }
  70% { transform: rotate(-1deg) scale(.97, 1.07); }
}

.fctel-product-card-preview__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 20px 18px rgba(19,33,52,.18));
  transform: translateY(22px) scale(.8);
  transition: opacity .22s ease, transform .58s .03s cubic-bezier(.16,1.16,.3,1);
}

.fctel-product-card-preview.is-visible .fctel-product-card-preview__image img {
  opacity: 1;
  transform: translateY(0) scale(1.045);
}

.fctel-product-card-preview__caption {
  position: relative;
  z-index: 2;
  min-height: 48px;
  padding: 12px 16px 7px;
  overflow: hidden;
  color: #a91822;
  background: linear-gradient(90deg, transparent, rgba(230,236,242,.62), transparent);
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes fctelPreviewShine {
  0% { left: -36%; opacity: 0; }
  15% { opacity: 1; }
  100% { left: 122%; opacity: 0; }
}

@keyframes fctelPreviewBeam {
  0% { opacity: 0; transform: scaleX(.18); }
  100% { opacity: 1; transform: scaleX(1); }
}

@media (max-width: 1100px) {
  .fctel-product-card-preview { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .fctel-product-card-preview,
  .fctel-product-card-preview::after,
  .fctel-product-card-preview__beam,
  .fctel-product-card-preview__popular svg,
  .fctel-product-card-preview__image img {
    animation: none !important;
    transition: none !important;
  }
}
