body.products_is_rounded .product-entry .product_addCart_mob button{
  border-radius: 15px !important;
  margin-bottom: 8px;
}
.notimoney-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
}

.notimoney-glow {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #28a745;
  box-shadow: 0 0 10px #28a745, 0 0 20px #28a745;
  animation: greenPulse 1s infinite alternate;
  flex-shrink: 0;
}

.notimoney-popup {
  background: #fff;
  color: #333;
  padding: 6px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.notimoney-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes greenPulse {
  0% { box-shadow: 0 0 6px #28a745, 0 0 12px #28a745; }
  50% { box-shadow: 0 0 14px #28a745, 0 0 28px #28a745; }
  100% { box-shadow: 0 0 6px #28a745, 0 0 12px #28a745; }
}