/* ======================================================
   POLA TEKSTOWE – Anvanto
====================================================== */

body#product .js-anpf-field.an-pf-field.an-pf-field-type-text,
body#product .js-anpf-field.an-pf-field.an-pf-field-type-textarea {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  font-size: 16px;
}

/* ======================================================
   MINIATURKI – puls + border-radius
====================================================== */

body#product .an-pf-field-image-wrap img {
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: anpfPulse 2.8s ease-in-out infinite;
}

body#product .an-pf-field-image-wrap img:hover {
  animation-play-state: paused;
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

@keyframes anpfPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* ======================================================
   DYMEK (TOOLTIP)
====================================================== */

body#product .image-tooltip {
  position: fixed;
  z-index: 9999;
  display: none;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
}

body#product .image-tooltip img {
  max-width: 520px;
  max-height: 520px;
  width: auto;
  height: auto;
  display: block;
  border-radius: 8px;
}

body#product .image-tooltip .tooltip-close {
  display: none;
}

/* ======================================================
   TOOLTIP – +20% (DESKTOP)
====================================================== */

@media (min-width: 769px) {
  body#product .image-tooltip {
    transform: scale(1.2);
    transform-origin: top left;
  }

  body#product .image-tooltip img {
    max-width: 624px;   /* 520 × 1.2 */
    max-height: 624px;
  }
}


/* ======================================================
   MOBILE – UX + PERFORMANCE
====================================================== */

@media (max-width: 768px) {

  /* Tekst obok miniaturki wyrównany do lewej */
  body#product .js-anpf-field label,
  body#product .an-pf-field label,
  body#product .an-pf-field-option label {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }

  /* ==================================================
     🔥 WYDAJNOŚĆ LISTY (KLUCZOWE)
     Struktura: .js-anpf-field .anfield-radio
  =================================================== */

  body#product .js-anpf-field .anfield-radio {
    content-visibility: auto;
    contain-intrinsic-size: 44px;
  }

  /* Stały box miniaturki – mniej reflow */
  body#product .js-anpf-field .an-pf-field-image-wrap {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    overflow: hidden;
  }

  body#product .js-anpf-field .an-pf-field-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Tooltip mobile */
  body#product .image-tooltip {
    left: 50% !important;
    top: 10px !important;
    transform: translateX(-50%) !important;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    max-height: 46vh;
    overflow: hidden;
    pointer-events: auto;
  }

  body#product .image-tooltip img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: calc(46vh - 20px);
    object-fit: contain;
  }

  body#product .image-tooltip .tooltip-close {
    display: flex;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    user-select: none;
    z-index: 2;
  }
}

/* ======================================================
   AKTYWNA MINIATURKA
====================================================== */

body#product .an-pf-field-image-wrap img.anpf-active-thumb {
  outline: 2px solid #24b9d7;
  outline-offset: 2px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  animation: none !important;
  transform: none !important;
}
