/* TyGia Noel Popup - CSS */
#tygia-noel-popup-overlay{
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0,0,0,.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

#tygia-noel-popup{
  position: relative;
  width: min(820px, 95vw);
  max-height: 85vh;
  background: #fff;
  border: 4px solid #d93025;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

#tygia-noel-popup .tygia-noel-top{
  position: relative;
  padding: 18px 18px 10px;
  background: linear-gradient(90deg, #d93025 0%, #d93025 35%, #2e7d32 65%, #2e7d32 100%);
  color: #fff;
}

#tygia-noel-popup .tygia-noel-badge{
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  background: rgba(0,0,0,.18);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(3px);
}

#tygia-noel-popup .tygia-noel-badge span{
  font-size: 18px;
}

#tygia-noel-popup .tygia-noel-close{
  position: absolute;
  right: 14px;
  top: 14px;
  background: #d93025;
  color: #fff;
  border: 0;
  border-radius: 14px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

#tygia-noel-popup .tygia-noel-close:active{
  transform: translateY(1px);
}

#tygia-noel-popup .tygia-noel-body{
  padding: 24px 24px 26px;
  font-size: 18px;
  line-height: 1.55;
  color: #111827;
}

#tygia-noel-popup .tygia-noel-body p{ margin: 0 0 12px; }
#tygia-noel-popup .tygia-noel-body a{ color: #0b57d0; }

@media (max-width: 768px){
  #tygia-noel-popup .tygia-noel-body{
    padding: 18px 16px 18px;
    font-size: 16px;
  }
  #tygia-noel-popup .tygia-noel-close{
    padding: 8px 12px;
    font-size: 14px;
  }
  #tygia-noel-popup .tygia-noel-badge span{
    font-size: 16px;
  }
}

/* Snow layer */
#tygia-noel-snow{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.tygia-snowflake{
  position: absolute;
  top: -20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.15));
  opacity: .9;
  animation-name: tygiaSnowFall, tygiaSnowDrift;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

@keyframes tygiaSnowFall{
  to { transform: translateY(calc(100vh + 60px)); }
}

@keyframes tygiaSnowDrift{
  0% { margin-left: -12px; }
  50% { margin-left: 12px; }
  100% { margin-left: -12px; }
}

#tygia-noel-popup .tygia-noel-body h1,
#tygia-noel-popup .tygia-noel-body h2,
#tygia-noel-popup .tygia-noel-body h3{
  margin: 0 0 14px;
  line-height: 1.25;
}
#tygia-noel-popup .tygia-noel-body ul,
#tygia-noel-popup .tygia-noel-body ol{ margin: 0 0 12px 22px; }
