.product-card__normal-cart__btn button {
	background-color: var(--color-primary) !important;
	border-color: var(--color-primary) !important;
	color: #fff !important;
}.pie-wrapper{display:none}


.page-visitors {
    display: flex; /* استخدم flexbox لضبط العناصر في نفس السطر */
    align-items: center; /* محاذاة العناصر عموديًا */
    font-size: 15px;
    font-weight: 400; /* استخدام regular */
    color: #4d71fe;
    margin-top: 10px;
    gap: 5px; /* المسافة بين الأيقونة والنص */
}

.page-visitors i {
    font-size: 18px;
    color: #4d71fe;
    animation: bounce 1s infinite alternate; /* إضافة الأنيميشن للأيقونة */
}

/* تأثير الباونس (الاهتزاز) للأيقونة */
@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.page-visitors .visitor-count {
    font-size: 15px;
    color: #4d71fe;
    font-weight: 400; /* استخدام regular */
}