/* WISHLIST */
.pd-wishlist {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

/* ICON */
.pd-wishlist svg {
  fill: none;
  stroke: #ff4d7a;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

/* HOVER */
.pd-wishlist:hover {
  background: linear-gradient(135deg, #ff4d7a, #ff8fb1);
  transform: scale(1.05);
}

.pd-wishlist:hover svg {
  stroke: #fff;
  transform: scale(1.1);
}

/* ACTIVE (cuando está en wishlist) */
.pd-wishlist.active {
  background: linear-gradient(135deg, #ff4d7a, #ff8fb1);
}

.pd-wishlist.active svg {
  fill: #fff;
  stroke: #fff;
}

.global-back-btn {
  position: fixed;
  top: 24px;
  left: 24px;

  width: 42px;
  height: 42px;

  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);

  text-decoration: none;
  color: #111;

  transition: all 0.2s ease;
  z-index: 1000;
}

.global-back-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.global-back-btn:hover {
  transform: translateX(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

@media (max-width: 768px) {
  .pd-wishlist:not(.active):hover {
    background: rgba(255, 255, 255, 0.85);
    transform: none;
  }

  .pd-wishlist:not(.active):hover svg {
    stroke: #ff4d7a;
    transform: none;
  }
}
