/* header */

body.products.page-238  header {background:url('/images/categories/valentijn.webp') no-repeat center center / cover;}

/* Valentijn – floating hearts */

.campaign-valentijn-heart {
  position: fixed;
  bottom: -40px;
  font-size: 20px;
  color: #e63946;
  animation: floatUp 6s linear forwards;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.8;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-110vh) scale(1.4);
    opacity: 0;
  }
}

/* === EXTRA: ZWEVENDE VALENTIJN TEKSTEN (toevoeging) === */

.campaign-valentijn-text {
  position: fixed;
  bottom: -50px;
  pointer-events: none;
  z-index: 9998; /* net onder hartjes */
  white-space: nowrap;

  color: #b11226;
  font-weight: 500;
  font-size: 14px;

  background: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);

  opacity: 0;
  animation-name: valentijnTextFloat;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes valentijnTextFloat {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-110vh);
    opacity: 0;
  }
}
