/* ----------------------------------------------------------
   New Year Theme + Default Styles
---------------------------------------------------------- */
body {
  background: linear-gradient(180deg, #f0f4f8, #e6f0fa 40%, #f0f4f8);
  color: #1f2937;
  font-family: "Tajawal", sans-serif;
  position: relative;
  overflow-x: hidden;
}

.new-year-filter {
  filter: brightness(0.9) saturate(1.05);
}
.new-year-slider-shadow {
  box-shadow: 0 0 12px rgba(255, 215, 110, 0.3),
    0 0 30px rgba(255, 185, 90, 0.2);
  border: 2px solid rgba(255, 215, 110, 0.3);
}
.new-year-title {
  color: #ffd76e !important;
  text-shadow: 0 0 12px rgba(255, 215, 110, 0.95);
  font-weight: 900;
  letter-spacing: 2px;
}
.new-year-text-shadow {
  text-shadow: 0 0 8px rgba(255, 223, 153, 0.8),
    0 0 20px rgba(255, 198, 109, 0.6);
}

/* Product Cards */
.product-circle {
  width: 100%;
  height: 350px;
  aspect-ratio: 1/1;
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e5e7eb;
}

.product-image-container {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f3f4f6;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-circle:hover .product-image {
  transform: scale(1.1);
}

/* Badge New */
.badge-new {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #ffdd7f;
  color: #000;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(255, 200, 80, 0.5);
}

/* Glow */
.product-circle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 22px;
  background: radial-gradient(
    ellipse at center,
    rgba(180, 215, 255, 0.55) 0%,
    rgba(200, 230, 255, 0.25) 45%,
    rgba(220, 240, 255, 0) 100%
  );
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
  z-index: -1;
}

/* Santa Hat (من index) */
.santa-hat {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background-image: url("../images/santa-hat.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 11;
}

/* Snow Corner (من index) */
.snow-corner {
  position: absolute;
  top: -12px;
  left: -12px;
  display: flex;
  gap: 4px;
  z-index: 10;
}
.snow-ball {
  width: 14px;
  height: 14px;
  background: #e9f6ff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(160, 200, 255, 0.55);
}

/* Choose Button */
.choose-btn {
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  border: 2px solid #1f2937;
  border-radius: 9999px;
  background: transparent;
  color: #1f2937;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.choose-btn:hover {
  background: #1f2937;
  color: white;
  box-shadow: 0 0 12px rgba(143, 211, 255, 0.4);
}

/* Tabs */
.tab-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid #1f2937;
  background: white;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #1f2937;
}
.tab-btn.active {
  background: #1f2937;
  color: white;
}
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 1rem;
}

/* Snow Effect (من index) */
#snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}
.snowflake {
  position: absolute;
  top: -10px;
  color: #8fd3ff;
  font-size: 18px;
  opacity: 0.9;
  filter: drop-shadow(0 0 4px rgba(143, 211, 255, 0.7));
  animation-name: fall;
  animation-timing-function: linear;
}
@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.9;
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0.3;
  }
}
/* تصغير الصورة على الموبايل */
@media (max-width: 640px) {
  .product-image-container {
    width: 140px;
    height: 140px;
  }
  .product-circle h3 {
    font-size: 1rem;
  }
  .product-circle p {
    font-size: 0.875rem;
  }
  .choose-btn {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
  }
}
