/* ====== Fundal pastel + fulgi de zapada ====== */
body[data-page="craciun"] {
  background: linear-gradient(180deg, #fff6f8, #ffeef3);
  position: relative;
  overflow-x: hidden;
}

/* FULGI DE ZĂPADĂ – 2 straturi, mai dese și mai vizibile */
body[data-page="craciun"]::before,
body[data-page="craciun"]::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-repeat: repeat;
  animation: snow 35s linear infinite;
}

/* strat fulgi mari */
body[data-page="craciun"]::before {
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.95) 0, rgba(255,255,255,0.95) 3px, transparent 4px),
    radial-gradient(circle, rgba(255,255,255,0.75) 0, rgba(255,255,255,0.75) 2px, transparent 3px);
  background-size: 180px 180px;  /* mai des */
  opacity: 0.65;                 /* mai vizibil */
  animation-duration: 30s;       /* mai rapid */
}

/* strat fulgi mici */
body[data-page="craciun"]::after {
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.95) 0, rgba(255,255,255,0.95) 2px, transparent 3px),
    radial-gradient(circle, rgba(255,255,255,0.65) 0, rgba(255,255,255,0.65) 1.5px, transparent 2.5px);
  background-size: 140px 140px;  /* si mai des */
  opacity: 0.55;
  animation-duration: 18s;
}

/* miscare fulgi */
@keyframes snow {
  0%   { background-position: 0 -1200px; }
  100% { background-position: 0 1200px; }
}

/* ====== Titlu & subtitlu – centrate, text negru ====== */
[data-page="craciun"] .section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: #000; /* negru */
  text-align: center;
  margin-top: 2rem !important;
  margin-bottom: 0.75rem;
  text-shadow: none;
}

[data-page="craciun"] .section-sub {
  font-size: 1.2rem;
  color: #111; /* negru închis */
  max-width: 750px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ====== Carduri de produs cu glow animat ====== */
[data-page="craciun"] .item {
  background: #ffffffd8;
  border-radius: 18px;
  border: 1px solid #ffe2ea;
  backdrop-filter: blur(4px);

  /* glow de baza + animatie */
  box-shadow: 0 0 18px rgba(255, 105, 150, 0.14);
  animation: glow-craciun 3.5s ease-in-out infinite;

  transition: transform .2s ease, box-shadow .2s ease;
}

/* animația de glow (pulse) */
@keyframes glow-craciun {
  0%   { box-shadow: 0 0 18px rgba(255, 105, 150, 0.14); }
  50%  { box-shadow: 0 0 32px rgba(255, 40, 120, 0.30); }
  100% { box-shadow: 0 0 18px rgba(255, 105, 150, 0.14); }
}

/* Hover: se ridică puțin și glow mai puternic */
[data-page="craciun"] .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 44px rgba(255, 40, 120, 0.42);
}

/* Badge categorie CRACIUN */
[data-page="craciun"] .pill {
  background: #fff0f4;
  color: #b40036;
  border: 1px solid #ffccda;
}

/* Pret */
[data-page="craciun"] .price {
  color: #b40036;
  font-weight: 600;
}

/* ====== WhatsApp plutitor – rotunjit ====== */
[data-page="craciun"] .whatsapp-wrapper {
  background: #25d366;
  border-radius: 40px;
}
