.new-tag {
  background: linear-gradient(45deg, #ff6f00, #ff9800); /* orange gradient */
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 3px 7px;
  margin-left: 8px;
  border-radius: 12px;       /* pill shape */
  box-shadow: 0 0 6px rgba(255, 152, 0, 0.7); /* glowing effect */
  animation: glow 1.5s infinite ease-in-out;
}

@keyframes glow {
  0%   { box-shadow: 0 0 4px rgba(255,152,0,0.5); }
  50%  { box-shadow: 0 0 12px rgba(255,152,0,1); }
  100% { box-shadow: 0 0 4px rgba(255,152,0,0.5); }
}

/* Improved Flipkart-like Pricing Style */

.price-strike {
    font-size: 16px;
    color: #6c757d; /* Softer gray for readability */
    text-decoration: line-through;
    margin-right: 8px;
}

.offer-price {
    font-size: 22px;
    font-weight: bold;
    color: #212121;
}

.discount-percentage {
    font-size: 18px;
    font-weight: 700;  /* Make % OFF bolder */
    color: #388E3C;
    margin-left: 10px;
}
