.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.glow-yellow-sm { box-shadow: 0 0 15px -3px rgba(244, 186, 40, 0.4); }

.edit-trigger-btn {
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 30;
  background-color: #F4BA28;
  color: #000;
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
  transition: transform 0.2s;
}
.edit-trigger-btn:hover { transform: scale(1.15); }

@keyframes cartBump {
  0% { transform: scale(1); }
  30% { transform: scale(1.18); box-shadow: 0 0 25px rgba(244, 186, 40, 0.8); }
  60% { transform: scale(0.95); }
  100% { transform: scale(1); }
}
.cart-bump { animation: cartBump 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.touch-scroll { -webkit-overflow-scrolling: touch; scroll-behavior: smooth; }