/* تغيير لون أيقونة العربة إلى برتقالي */
.header-btn.btn i.sicon-shopping-bag2 {
    color: #FF7F00 !important; /* برتقالي */
}
/* تغيير لون أيقونة البحث إلى برتقالي */
.search-btn i.sicon-search {
    color: #FF7F00 !important; /* برتقالي */
}
/* زر أضف للسلة – برتقالي بدرجتك */
.s-button-primary {
    background-color: rgb(255, 140, 61) !important;
    border-color: rgb(255, 140, 61) !important;
    color: #fff !important;
}
.header-inner p.da-tm {
    color: rgb(255, 140, 61) !important;
}
/* تغيير لون أيقونة القائمة */
.sicon-menu {
    color: rgb(255, 140, 61) !important;
}
.header-inner .sicon-user {
    color: rgb(255, 140, 61) !important;
}
.header-inner .s-cart-summary-total,
.header-inner .sicon-sar {
    color: rgb(255, 140, 61) !important;
}
/* زر اكتشف افضل المنتجات – برتقالي غامق */
.banner-square a.btn.btn-primary {
    background-color: rgb(255, 90, 0) !important;
    border-color: rgb(255, 90, 0) !important;
    color: #fff !important;
}
/* زر أضف للسلة مع إضاءة أقوى شوي */
.s-button-primary {
    position: relative;
    overflow: hidden;
}

/* طبقة الإضاءة */
.s-button-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.45) 50%, /* زودنا الشفافية */
        transparent 100%
    );
    animation: shineLoop 2.5s ease-in-out infinite;
}

/* حركة الإضاءة */
@keyframes shineLoop {
    0%   { left: -120%; }
    100% { left: 120%; }
}