مستلزمات البيت
مستلزمات البيت
/* زر اشتر الآن ثابت */
.buy-now-sticky {
position: fixed;
bottom: 20px;
right: 20px;
background: #28a745;
color: #fff;
padding: 14px 22px;
border-radius: 8px;
font-weight: bold;
z-index: 9999;
animation: pulse 1.5s infinite;
box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
/* حركة خفيفة */
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.08); }
100% { transform: scale(1); }
}