/* تحسين شكل بطاقة المنتج */
.product-card {
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.3s ease-in-out !important;
}

/* حركة عند مرور الماوس على المنتج */
.product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}
/* تخصيص زر السلة */
.s-button-btn-add-to-cart {
    border-radius: 50px !important; /* شكل بيضاوي */
    font-weight: bold !important;
    transition: background 0.3s ease !important;
}

/* تغيير لون الزر عند تمرير الماوس */
.s-button-btn-add-to-cart:hover {
    filter: brightness(90%) !important;
}
/* إضافة خط ناعم تحت القسم النشط */
.main-menu-list > li > a {
    position: relative;
    font-size: 15px;
    padding: 10px 15px !important;
}

.main-menu-list > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
    background: #000; /* يمكنك وضع لون شعارك هنا */
    transition: 0.3s;
}

.main-menu-list > li > a:hover:after {
    width: 50%;
}
/* إخفاء نص الضريبة المضافة لتبسيط المظهر */
.product-tax-text {
    display: none !important;
}

/* تحسين شكل الفوتر (أسفل المتجر) */
.main-footer {
    background-color: #f9f9f9 !important;
    border-top: 1px solid #eee;
}