/* 1. تحسين الخطوط: أزلنا !important لتقليل جهد المتصفح */
body, p, h1, h2, h3, h4, h5, h6, span, a {
    font-weight: 500;
}

.sicon-menu::before {
    color: #000000 !important;
}

/* 2. الهيدر والشعار: ضبط المسافات لمنع القفز */
.navbar-brand img {
    height: 60px !important; 
    width: auto;
}
.navbar-brand {
    margin: 10px 0;
}

/* 3. العناصر المتجاوبة */
.computer { display: none; }

@media (min-width: 724px) {
    .ezz .container .square-grid > :nth-child(4) {
        transform: translateY(-50px); /* بديل الـ Margin السالب */
    }
    .computer { display: block; }
    .phone { display: none; }
}

/* 4. البنرات والسلايدر */
.banner-entry {
    height: 120px;
    overflow: hidden;
}
.s-block.home-slider {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* 5. بطاقة المنتج والأسعار */
.s-product-card-entry.no-bg {
    border: 2px solid #ff8a0830 !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #fff;
}
.s-product-card-price, .s-product-card-sale-price h4 {
    font-size: .99rem;
    font-weight: 900 !important;
    color: black;
    margin-top: 9px;
}
.s-product-card-sale-price { color: red !important; }

/* 6. قسم التقييمات: حجز مساحة لمنع انزياح الصفحة */
.s-block--testimonials {
    min-height: 400px; 
    margin-bottom: 3em !important;
}

/* 7. تأثير النص المتحرك (تم تحسين الأداء) */
.md\:text-xl, .s-block__title h2, .s-slider-block__title-right h2 {
    background: linear-gradient(-225deg, #a2a2a2 0%, #000 67%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 3s linear infinite;
    display: inline-block;
}

@keyframes textclip {
    100% { background-position: 200% center; }
}

/* 8. أنيميشن الشعار (ويجل) */
@keyframes wiggle {
    0%, 7% { transform: rotateZ(0); }
    15% { transform: rotateZ(-10deg); }
    20% { transform: rotateZ(10deg); }
    40%, 100% { transform: rotateZ(0); }
}

/* 9. تحسينات إضافية من كودك السابق */
.text-xs {
    font-size: 1rem !important;
    color: gray;
}
.s-slider-block__display-all {
    color: white;
    background: #a5a5a5;
    padding: 7px;
    border-radius: 20px;
}