/* ============================
   🎄 Christmas Theme (Safe)
   Desktop only snow + Sale badge
   ============================ */

/* 🎄 Christmas tree badge – clean & professional */
.gallery-details-box2.service-box-layout2 {
  position: relative;
}

.xmas-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #43a047, #1b5e20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 5;
  pointer-events: none;
}

/* ❄ Snowflakes (desktop only by JS) */
.snowflake {
  position: fixed;
  top: -12px;
  color: #fff;
  opacity: 0.6;
  pointer-events: none;
  z-index: 9999;
  animation-name: snow-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes snow-fall {
  to {
    transform: translateY(110vh);
  }
}

/* ❌ 强制移动端不显示（双保险） */
@media (max-width: 768px) {
  .snowflake {
    display: none !important;
  }
}
