/**
 * NoLimits — isolated product card system (.nl-pkg)
 * Independent from legacy Tebex article.product / .product-card styles.
 */

/* ── Grid (category listings) — fixed 3 columns on desktop ───────── */
.site-content .store-products-images,
.store-products-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 28px 0 36px;
  align-items: stretch;
}

.store-products-images > div {
  display: flex;
  width: 100%;
  margin: 0;
}

/* ── Design tokens ──────────────────────────────────────────────── */
.nl-pkg {
  --nl-pkg-bg: linear-gradient(180deg, rgba(14, 14, 18, 0.96) 0%, rgba(9, 9, 12, 1) 100%);
  --nl-pkg-border: rgba(255, 255, 255, 0.06);
  --nl-pkg-border-hover: rgba(255, 255, 255, 0.08);
  --nl-pkg-radius: 14px;
  --nl-pkg-shadow:
    0 10px 36px rgba(0, 0, 0, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --nl-pkg-shadow-hover:
    0 14px 40px rgba(0, 0, 0, 0.48),
    0 6px 16px rgba(0, 0, 0, 0.28);
  --nl-pkg-uplight: rgba(0, 190, 215, 0.055);
  --nl-pkg-uplight-mid: rgba(0, 165, 195, 0.028);
  --nl-pkg-edge-bottom: rgba(0, 200, 220, 0.11);
  --nl-pkg-lift: -4px;
  --nl-pkg-glow-ease: 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  --nl-pkg-text: #f3f4f6;
  --nl-pkg-text-soft: #9ca3af;
  --nl-pkg-text-muted: #6b7280;
  --nl-pkg-accent: var(--theme-accent, #4db8a8);
  --nl-pkg-price: #f8fafc;
  --nl-pkg-price-was: #9ca3af;
  --nl-pkg-btn-border-hover: rgba(255, 255, 255, 0.32);
  --nl-pkg-btn-text: #141416;
  /* Full-width hero banner ratio (unified across grid) */
  --nl-pkg-media-ratio: 16 / 9;
  --nl-pkg-pad: 22px 20px 20px;
  --nl-pkg-gap: 18px;
  --nl-pkg-meta-gap: 12px;
  --nl-pkg-btn-bg: #eceef1;
  --nl-pkg-btn-bg-hover: #fafbfc;
  --nl-pkg-font: var(--nl-font-family, 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

/* ── Card shell — bottom uplight, directional (not full-card RGB) ─ */
.nl-pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  isolation: isolate;
  border: 1px solid var(--nl-pkg-border);
  border-radius: var(--nl-pkg-radius);
  background: var(--nl-pkg-bg);
  box-shadow: var(--nl-pkg-shadow);
  overflow: hidden;
  font-family: var(--nl-pkg-font);
  color: var(--nl-pkg-text);
  transition:
    transform var(--nl-pkg-glow-ease),
    box-shadow var(--nl-pkg-glow-ease),
    border-color var(--nl-pkg-glow-ease) !important;
}

/* Secondary uplight — tight ellipse from bottom center */
.nl-pkg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  background: radial-gradient(
    ellipse 88% 70% at 50% 100%,
    var(--nl-pkg-uplight) 0%,
    var(--nl-pkg-uplight-mid) 28%,
    transparent 68%
  );
  transition: opacity var(--nl-pkg-glow-ease);
}

/* Bottom edge catch-light only (no top/side cyan ring) */
.nl-pkg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  background: linear-gradient(
    to top,
    var(--nl-pkg-edge-bottom) 0%,
    rgba(0, 190, 210, 0.04) 14%,
    transparent 42%
  );
  transition: opacity var(--nl-pkg-glow-ease);
}

/* Primary uplight — rises from bottom, fades toward top */
.nl-pkg__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  filter: blur(10px);
  transition: opacity var(--nl-pkg-glow-ease);
  background: linear-gradient(
    to top,
    rgba(0, 185, 210, 0.07) 0%,
    rgba(0, 160, 190, 0.03) 16%,
    rgba(0, 140, 170, 0.012) 32%,
    transparent 52%
  );
}

.nl-pkg__media,
.nl-pkg__body {
  position: relative;
  z-index: 2;
}

.nl-pkg:hover {
  border-color: var(--nl-pkg-border-hover);
  box-shadow:
    var(--nl-pkg-shadow-hover),
    inset 0 -1px 0 rgba(0, 195, 215, 0.09);
}

.nl-pkg:hover::before {
  opacity: 0.55;
}

.nl-pkg:hover::after {
  opacity: 0.45;
}

.nl-pkg:hover .nl-pkg__glow {
  opacity: 0.62;
}

.nl-pkg:not(.nl-product-enter):hover,
.nl-pkg.nl-product-enter.is-entered:hover {
  transform: translate3d(0, var(--nl-pkg-lift), 0);
}

.nl-pkg:focus-within {
  outline: 1px solid rgba(255, 255, 255, 0.14);
  outline-offset: 2px;
}

/* ── Entrance — one-shot fade-up (main.js), no scale / no scroll IO ─ */
@keyframes nl-pkg-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.site-content-widgets.nl-shop-enter .nl-pkg.nl-product-enter:not(.is-entered),
.site-content-widgets.nl-shop-enter .nl-pkg.nl-product-enter.is-entered {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  animation: none !important;
}

.nl-pkg.nl-product-enter:not(.is-entered) {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  pointer-events: none;
}

.nl-pkg.nl-product-enter.is-entered {
  pointer-events: auto;
  animation: nl-pkg-enter 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--nl-product-enter-delay, 0ms);
}

article.product.nl-product-enter:not(.is-entered),
.product-card.nl-product-enter:not(.is-entered) {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

article.product.nl-product-enter.is-entered,
.product-card.nl-product-enter.is-entered {
  animation: nl-pkg-enter 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--nl-product-enter-delay, 0ms);
}

/* ── Hero banner — full width, edge-to-edge, top of card ─────────── */
.nl-pkg .nl-pkg__media,
.nl-pkg .nl-pkg__media-link,
.nl-pkg .nl-pkg__img {
  box-sizing: border-box;
}

.nl-pkg .nl-pkg__media a,
.nl-pkg .nl-pkg__media img {
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 0;
}

.nl-pkg__media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* Top corners follow card; bottom edge is square into content */
  border-radius: var(--nl-pkg-radius) var(--nl-pkg-radius) 0 0;
  background: #0c0c0e;
}

.nl-pkg__media-link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: var(--nl-pkg-media-ratio);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  outline: none;
  line-height: 0;
}

.nl-pkg__media-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: -2px;
}

/* Thumbnail → content blend (long cinematic fade into body) */
.nl-pkg__media-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  min-height: 100px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 10, 13, 0.18) 38%,
    rgba(9, 9, 12, 0.62) 68%,
    rgba(11, 13, 19, 0.94) 88%,
    rgba(10, 12, 18, 1) 100%
  );
}

.nl-pkg__media::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.04) 50%,
    transparent
  );
}

.nl-pkg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  max-height: none !important;
  min-height: 0 !important;
  aspect-ratio: unset !important;
  border-radius: 0 !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.nl-pkg__media-link:hover .nl-pkg__img {
  transform: scale(1.008);
}

/* ── Ribbons (discount / tags) ──────────────────────────────────── */
.nl-pkg__ribbons {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  pointer-events: none;
}

.nl-pkg__ribbon {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nl-pkg__ribbon--featured {
  background: #ffc107;
  color: #111827;
}

.nl-pkg__ribbon--new {
  background: rgba(14, 18, 16, 0.78);
  color: #b8e8dc;
  border-color: rgba(77, 184, 168, 0.25);
}

/* ── Body / content — darker depth, overlaps image fade ─────────── */
.nl-pkg__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: var(--nl-pkg-gap);
  margin-top: -18px;
  padding: var(--nl-pkg-pad);
  padding-top: 26px;
  min-height: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 14, 20, 0.78) 0%,
    rgba(11, 13, 19, 0.96) 18%,
    rgba(10, 12, 18, 1) 100%
  );
}

.nl-pkg__meta {
  display: flex;
  flex-direction: column;
  gap: var(--nl-pkg-meta-gap);
  flex: 1 1 auto;
}

.nl-pkg__title-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.nl-pkg__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--nl-pkg-text);
}

.nl-pkg__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nl-pkg__title a:hover {
  color: #fff;
}

.nl-pkg__title a:focus-visible {
  outline: 2px solid var(--nl-pkg-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.nl-pkg__desc {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--nl-pkg-text-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nl-pkg__countdown {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0a8a0;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(240, 100, 90, 0.12);
  border: 1px solid rgba(240, 100, 90, 0.2);
}

/* ── Commerce row (price + CTA) ─────────────────────────────────── */
.nl-pkg__commerce {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  padding-top: 12px;
}

.nl-pkg__pricing {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.nl-pkg__price-was {
  font-size: 11px;
  font-weight: 500;
  color: var(--nl-pkg-price-was);
  text-decoration: line-through;
  text-decoration-color: rgba(156, 163, 175, 0.65);
  opacity: 0.85;
}

.nl-pkg__price-now {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--nl-pkg-price);
  line-height: 1.1;
}

.nl-pkg__cta {
  width: 100%;
}

/* ── Actions: reset legacy Tebex inside card ────────────────────── */
.nl-pkg .nl-pkg__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.nl-pkg .nl-pkg__actions .price,
.nl-pkg .nl-pkg__actions .payment-info {
  display: none !important;
}

.nl-pkg .nl-pkg__btn-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ── Basket button only (not whole card) ─────────────────────────── */
.nl-pkg .nl-pkg__btn,
.nl-pkg a.nl-pkg__btn--primary.basket-toggle-button {
  all: unset;
  box-sizing: border-box;
  cursor: default;
  font-family: var(--nl-pkg-font);
  -webkit-tap-highlight-color: transparent;
}

.nl-pkg .nl-pkg__btn--primary,
.nl-pkg a.nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button {
  flex: 1 1 auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--nl-pkg-btn-bg) !important;
  color: var(--nl-pkg-btn-text) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
  filter: none !important;
  transform: none !important;
  transition:
    background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.nl-pkg a.nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button:hover:not(:disabled):not(.remove-state):not([data-action="remove"]),
.nl-pkg .nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button:hover:not(:disabled):not(.remove-state):not([data-action="remove"]) {
  background: var(--nl-pkg-btn-bg-hover) !important;
  border-color: var(--nl-pkg-btn-border-hover) !important;
  color: #0c0c0e !important;
  transform: translateY(-1px) !important;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
  filter: none !important;
}

.nl-pkg .nl-pkg__btn--primary.remove-state,
.nl-pkg .nl-pkg__btn--primary[data-action="remove"],
.nl-pkg a.nl-pkg__btn--primary.basket-toggle-button.remove-state,
.nl-pkg a.nl-pkg__btn--primary.basket-toggle-button[data-action="remove"] {
  background: #2a2a2e !important;
  color: #f4f4f5 !important;
  border-color: rgba(255, 255, 255, 0.1);
}

.nl-pkg a.nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button.remove-state:hover,
.nl-pkg a.nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button[data-action="remove"]:hover {
  background: #3a3a42 !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  transform: none !important;
  box-shadow: none !important;
  filter: brightness(1.08) !important;
}

/* Allow controlled button lift; block global Tebex overrides only when not primary CTA */
.nl-pkg .button-group .basket-toggle-button:not(.nl-pkg__btn--primary):hover {
  transform: none !important;
  box-shadow: none !important;
}

.nl-pkg .nl-pkg__btn--primary:disabled {
  opacity: 0.45;
  pointer-events: none;
}

.nl-pkg .nl-pkg__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.nl-pkg .nl-pkg__svg-cart,
.nl-pkg .nl-pkg__svg-trash {
  width: 14px;
  height: 14px;
  display: block;
}

.nl-pkg .button-icon.hidden {
  display: none !important;
}

.nl-pkg .nl-pkg__btn-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Gift icon button */
.nl-pkg .nl-pkg__btn--icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  min-height: 32px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  transition: background 0.15s ease;
}

.nl-pkg .nl-pkg__btn--icon:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.nl-pkg .nl-pkg__btn--icon.gift i.fa-gift,
.nl-pkg .nl-pkg__btn--icon.gift .fa-gift {
  color: currentColor !important;
  font-size: 14px;
  line-height: 1;
}

.nl-pkg .nl-pkg__btn--icon.gift i.fa-gift::before {
  content: "\f06b";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
}

/* Subscribe (non-single packages) */
.nl-pkg .nl-pkg__btn--ghost {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 600;
  color: var(--nl-pkg-text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.nl-pkg .nl-pkg__btn--ghost:hover {
  color: var(--nl-pkg-text);
  background: rgba(255, 255, 255, 0.07);
}

/* Block inherited Tebex / critical product image rules */
.store-products-images .nl-pkg .nl-pkg__img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: unset !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

/* Kill global .actions button overrides inside nl-pkg */
.nl-pkg .actions .button-group .btn::before,
.nl-pkg .actions .button-group .btn::after {
  display: none !important;
  content: none !important;
}

/* Lock 3 columns on desktop/tablet — survives browser zoom-out */
@media (min-width: 769px) {
  .site-content .store-products-images,
  .store-products-images {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* ── Responsive (mobile-fixes.css uses 1 column ≤768px) ─────────── */
@media (max-width: 480px) {
  .site-content .store-products-images,
  .store-products-images {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .nl-pkg {
    --nl-pkg-pad: 18px 16px 18px;
    --nl-pkg-radius: 12px;
    --nl-pkg-lift: -3px;
  }

  .nl-pkg__body {
    margin-top: -14px;
    padding-top: 22px;
  }

  .nl-pkg__media-link::after {
    min-height: 80px;
  }

  .nl-pkg__ribbons {
    top: 10px;
    left: 10px;
  }

  .nl-pkg__title {
    font-size: 14px;
  }

  .nl-pkg__price-now {
    font-size: 17px;
  }

  .nl-pkg .nl-pkg__btn--primary {
    min-height: 30px;
    height: 30px;
    font-size: 11px;
  }
}

/* ── Framework compatibility tags (category + featured + package page) ─ */
.nl-fw {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nl-fw[hidden] {
  display: none !important;
}

.nl-fw__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px 4px 7px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--nl-pkg-font);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

/* Replace tiny inline SVG with a clearer check */
.nl-fw__pill::before {
  content: '';
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' fill-opacity='0.72' d='M6.6 11.1 3.8 8.3l1-1 1.8 1.8 4.1-4.1 1 1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px 9px;
}

.nl-fw__icon {
  display: none;
  width: 0;
  height: 0;
  overflow: hidden;
}

.nl-fw__label {
  display: inline-block;
}

.nl-pkg__meta .nl-fw {
  margin-top: 6px;
}

.featured-script-content .nl-fw {
  margin-top: 6px;
}

.product-header .nl-fw {
  margin: 8px 0 2px;
}

.nl-pkg:hover .nl-fw__pill,
.featured-script-card:hover .nl-fw__pill {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.56);
}

.nl-pkg:hover .nl-fw__pill::before,
.featured-script-card:hover .nl-fw__pill::before {
  background-color: rgba(255, 255, 255, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .nl-pkg,
  .nl-pkg__img,
  .nl-pkg .nl-pkg__btn--primary {
    transition: none !important;
    animation: none !important;
  }

  .nl-pkg:hover,
  .nl-pkg.nl-product-enter.is-entered:hover {
    transform: none !important;
  }

  .nl-pkg::before,
  .nl-pkg::after,
  .nl-pkg__glow {
    opacity: 0 !important;
    transition: none !important;
  }

  .nl-pkg.nl-product-enter,
  .nl-pkg.nl-product-enter.is-entered,
  article.product.nl-product-enter,
  article.product.nl-product-enter.is-entered,
  .product-card.nl-product-enter,
  .product-card.nl-product-enter.is-entered {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    pointer-events: auto !important;
  }

  .nl-pkg__media-link:hover .nl-pkg__img {
    transform: none;
  }
}
