/* Smooth plan-image crossfade on account product pages (ChatGPT, …) */
.account-page1-r.nl-plan-img-stage {
  position: relative;
}

/* Keep stage height stable while layers crossfade */
.account-page1-r.nl-plan-img-stage > .imagesaccountforcode.nl-plan-img-layer {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 !important;
  display: flex !important; /* override .img_closed during fade */
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.account-page1-r.nl-plan-img-stage > .imagesaccountforcode.nl-plan-img-layer.nl-plan-img-show {
  opacity: 1;
  z-index: 2;
}

/* Avoid legacy “transition: all 0.6s” blink/scale on plan art */
.imagesaccountforcode.serbackground > img {
  transition: opacity 0.28s ease, transform 0.35s ease !important;
}
.imagesaccountforcode.serbackground:hover .serbackgroundimgp,
.imagesaccountforcode.serbackground:hover .serbackgroundimgp_m {
  transform: scale(1.03);
}
