/* Add custom CSS styles below */ 
/* استيراد خط Cairo */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

/* تطبيق الخط على الموقع */
body, p, span, a, li, h1, h2, h3, h4, h5, h6, div {
  font-family: "Cairo", sans-serif !important;
}



/* =========================================
   تصغير بانرات الرسيني للأعشاب
   4 بالصف كمبيوتر - 2 بالصف جوال
   بدون تعديل أو قص الصور
========================================= */

/* الكمبيوتر */
@media screen and (min-width: 768px) {

    section.s-block--banners .grid.two-row {
        display: grid !important;

        grid-template-columns:
            repeat(4, minmax(0, 1fr)) !important;

        gap: 10px !important;
    }

    /* إلغاء توزيع القالب الخاص two-row */
    section.s-block--banners .grid.two-row > * {
        grid-column: auto !important;
        grid-row: auto !important;

        width: auto !important;
        max-width: none !important;

        margin: 0 !important;
    }
}


/* =========================================
   الجوال — 4 بانرات مثل شكل الكمبيوتر
========================================= */
@media screen and (max-width: 767px) {

    section.s-block--banners .grid.two-row {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 5px !important;
    }

    section.s-block--banners .grid.two-row > * {
        grid-column: auto !important;
        grid-row: auto !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        /* المهم: نلغي الارتفاع الطويل */
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        /* نفس تناسب شكل الكمبيوتر تقريباً */
        aspect-ratio: 1 / 1.05 !important;

        position: relative !important;
        overflow: hidden !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    /* الحاويات الداخلية تأخذ حجم البطاقة */
    section.s-block--banners .grid.two-row > * > a,
    section.s-block--banners .grid.two-row > * > div {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
    }

    /* صورة الخلفية */
    section.s-block--banners .grid.two-row .lazy__bg {
        width: 100% !important;
        height: 100% !important;

        background-size: cover !important;
        background-position: center !important;
    }
}










/* ==========================================
   Alresiny - Premium Mobile Bottom Nav
   ========================================== */

:root {
    --nq-orange: #2d7501; /* أخضر الرسيني */
    --nq-dark: #252525;
    --nq-muted: #777b80;
    --nq-border: #eeeeee;
    --nq-bg: #ffffff;
}


/* ==========================================
   Desktop
   مخفي افتراضياً على الكمبيوتر
   ========================================== */

#nq-mobile-nav {
    display: none;
}


/* ==========================================
   Mobile Bottom Navigation
   ========================================== */

@media (max-width: 768px) {

    /* مساحة أسفل الصفحة حتى لا يغطي الشريط المحتوى */
    body {
        padding-bottom: calc(
            76px + env(safe-area-inset-bottom, 0px)
        ) !important;
    }


    /* الشريط السفلي */
    #nq-mobile-nav {
        position: fixed;
        z-index: 999999;

        right: 0;
        left: 0;
        bottom: 0;

        display: flex;
        align-items: flex-start;
        justify-content: space-around;

        width: 100%;
        height: calc(
            68px + env(safe-area-inset-bottom, 0px)
        );

        padding:
            7px
            6px
            env(safe-area-inset-bottom, 0px);

        background: rgba(255, 255, 255, 0.97);

        border-top: 1px solid var(--nq-border);

        border-radius: 18px 18px 0 0;

        box-shadow:
            0 -1px 3px rgba(0, 0, 0, 0.025),
            0 -8px 25px rgba(0, 0, 0, 0.055);

        direction: rtl;

        box-sizing: border-box;

        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);

        transition:
            transform 0.25s ease,
            opacity 0.2s ease;
    }


    /* توحيد box-sizing داخل القائمة */
    #nq-mobile-nav *,
    #nq-mobile-nav *::before,
    #nq-mobile-nav *::after {
        box-sizing: border-box;
    }


    /* ==========================================
       Navigation Item
       ========================================== */

    .nq-nav-item {
        position: relative;

        display: flex;
        flex: 1 1 20%;

        min-width: 0;
        height: 55px;

        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 3px;

        margin: 0;
        padding: 3px 2px;

        border: 0;
        outline: 0;

        background: transparent !important;

        color: var(--nq-muted);

        text-decoration: none !important;

        font-family: inherit;

        cursor: pointer;

        box-shadow: none !important;

        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;

        transition:
            color 0.2s ease,
            transform 0.15s ease;
    }


    .nq-nav-item:hover,
    .nq-nav-item:focus,
    .nq-nav-item:active,
    .nq-nav-item.nq-active {
        background: transparent !important;
        box-shadow: none !important;
        text-decoration: none !important;
    }


    .nq-nav-item:active {
        transform: scale(0.94);
    }


    /* ==========================================
       Navigation Icon
       ========================================== */

    .nq-nav-icon {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 27px;
        height: 27px;

        transition: transform 0.2s ease;
    }


    .nq-nav-icon svg {
        display: block;

        width: 24px;
        height: 24px;

        fill: none;

        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }


    /* ==========================================
       Navigation Label
       ========================================== */

    .nq-nav-label {
        display: block;

        max-width: 100%;

        color: inherit;

        font-size: 10.5px;
        font-weight: 500;
        line-height: 1.2;

        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;

        transition: font-weight 0.2s ease;
    }


    /* ==========================================
       Active Item
       ========================================== */

    .nq-nav-item.nq-active {
        color: var(--nq-orange);
    }


    .nq-nav-item.nq-active .nq-nav-label {
        font-weight: 700;
    }


    .nq-nav-item.nq-active .nq-nav-icon {
        transform: translateY(-1px);
    }


    /* النقطة الصغيرة تحت العنصر النشط */
    .nq-nav-item.nq-active::after {
        content: "";

        position: absolute;

        bottom: 0;

        width: 4px;
        height: 4px;

        border-radius: 50%;

        background: var(--nq-orange);
    }


    /* ==========================================
       Cart Badge
       ========================================== */

    .nq-cart-badge {
        position: absolute;

        z-index: 2;

        top: -5px;
        right: -8px;

        display: none;

        align-items: center;
        justify-content: center;

        min-width: 17px;
        height: 17px;

        padding: 0 4px;

        border: 2px solid #ffffff;
        border-radius: 20px;

        background: var(--nq-orange);

        color: #ffffff;

        font-family: Arial, sans-serif;

        font-size: 9px;
        font-weight: 700;
        line-height: 1;
    }


    .nq-cart-badge.nq-show {
        display: flex;
    }


    /* ==========================================
       Button Reset
       ========================================== */

    #nq-mobile-nav button {
        -webkit-appearance: none;
        appearance: none;

        border: 0 !important;
        outline: none !important;
    }


    /* ==========================================
       Account Menu
       ========================================== */

    /*
     * عند فتح قائمة الحساب
     * نخفي الشريط السفلي مؤقتاً
     */
    body.nq-user-menu-open #nq-mobile-nav {
        transform: translateY(120%);
        opacity: 0;
        pointer-events: none;
    }


    /*
     * تأكيد ظهور قائمة حساب سلة
     * فوق باقي عناصر الصفحة
     */
    ul.s-user-menu-dropdown-list {
        position: relative;
        z-index: 1000000 !important;

        border-radius: 14px !important;

        overflow: hidden;
    }


    /* ==========================================
       Cart Page
       ========================================== */

    /*
     * إذا كان زر السلة هو العنصر النشط
     * نخفي القائمة السفلية في صفحة السلة
     */
    body:has(
        #nq-mobile-nav
        .nq-nav-item[data-nq-action="cart"].nq-active
    )
    #nq-mobile-nav {
        display: none !important;
    }


    /*
     * إزالة المساحة السفلية المحجوزة
     * عند إخفاء القائمة في صفحة السلة
     */
    body:has(
        #nq-mobile-nav
        .nq-nav-item[data-nq-action="cart"].nq-active
    ) {
        padding-bottom: 0 !important;
    }

}


/* ==========================================
   Very Small Mobile Screens
   ========================================== */

@media (max-width: 350px) {

    .nq-nav-label {
        font-size: 9.5px;
    }


    .nq-nav-icon svg {
        width: 22px;
        height: 22px;
    }

}












/* ==========================================
   الرسيني للأعشاب - نافذة تسجيل الدخول للجوال
   ========================================== */

@media (max-width: 768px) {

    salla-modal.s-login-modal {
        z-index: 1000003 !important;
        pointer-events: none !important;
        overflow: visible !important;
    }

    /* تعتيم الخلفية مع إبقاء الشريط السفلي ظاهرًا */
    salla-modal.s-login-modal .s-modal-overlay {
        position: fixed !important;
        z-index: 0 !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        bottom:
            calc(
                68px +
                env(safe-area-inset-bottom, 0px)
            ) !important;

        background: rgba(20, 20, 20, 0.22) !important;
        pointer-events: auto !important;

        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
    }

    salla-modal.s-login-modal .s-modal-wrapper {
        overflow: visible !important;
        pointer-events: none !important;
    }

    salla-modal.s-login-modal .s-modal-spacer {
        display: none !important;
    }

    /* بطاقة تسجيل الدخول */
    salla-modal.s-login-modal .s-modal-body {
        position: fixed !important;
        z-index: 2 !important;

        top: auto !important;
        right: 12px !important;
        left: 12px !important;
        bottom:
            calc(
                80px +
                env(safe-area-inset-bottom, 0px)
            ) !important;

        width: auto !important;
        max-width: none !important;
        max-height:
            calc(
                100dvh -
                112px -
                env(safe-area-inset-bottom, 0px)
            ) !important;

        margin: 0 !important;
        padding: 14px !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        border: 1px solid rgba(0, 0, 0, 0.07) !important;
        border-radius: 20px !important;
        background: #ffffff !important;

        box-shadow:
            0 18px 55px
            rgba(0, 0, 0, 0.18) !important;

        direction: rtl;
        pointer-events: auto !important;
        transform-origin: bottom center;

        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        scrollbar-width: none;
    }

    salla-modal.s-login-modal .s-modal-body::-webkit-scrollbar {
        display: none;
    }

    /* محتوى تسجيل الدخول */
    salla-modal.s-login-modal iframe {
        display: block !important;
        width: 100% !important;
        height: 448px !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 14px !important;
        background: #ffffff !important;
    }

    /* زر الإغلاق مثل واجهة حسابي */
    salla-modal.s-login-modal .s-modal-close {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        top: 12px !important;
        right: auto !important;
        left: 12px !important;

        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;

        border: 0 !important;
        border-radius: 50% !important;
        background: #f5f5f5 !important;
        color: #555555 !important;

        transition:
            background 0.18s ease,
            color 0.18s ease,
            transform 0.18s ease;
    }

    salla-modal.s-login-modal .s-modal-close svg {
        width: 18px !important;
        height: 18px !important;
        fill: currentColor !important;
    }

    salla-modal.s-login-modal .s-modal-close:active {
        background: #EDF6F0 !important;
        color: #2d7501 !important;
        transform: scale(0.94);
    }

    /* حركة ظهور ناعمة */
    salla-modal.s-login-modal[visible] .s-modal-body {
        animation:
            nq-login-panel-open
            0.22s ease both !important;
    }

    @keyframes nq-login-panel-open {
        from {
            opacity: 0;
            transform:
                translateY(18px)
                scale(0.985);
        }

        to {
            opacity: 1;
            transform:
                translateY(0)
                scale(1);
        }
    }
}


/* =========================================================
   الرسيني للأعشاب | تثبيت الهوية والفوتر بدون التدخل في بحث سلة
   ========================================================= */

/* لون الفوتر الرسمي */
footer.store-footer.nq-modern-footer {
    --nq-footer-bg: #2d7501 !important;
    --nq-footer-text: #ffffff !important;
    --nq-footer-muted: rgba(255,255,255,.82) !important;
    --nq-footer-accent: #ffffff !important;
    --nq-footer-accent-dark: #edf6e8 !important;
}

footer.store-footer.nq-modern-footer .store-footer__top,
footer.store-footer.nq-modern-footer .footer-bottom {
    background: #2d7501 !important;
}

/* تقوس علوي ثابت للفوتر، مستقل عن قالب سلة */
footer.store-footer.nq-modern-footer::before {
    content: "" !important;
    position: absolute !important;
    z-index: 0 !important;
    top: 0 !important;
    left: -8% !important;
    right: auto !important;
    display: block !important;
    width: 116% !important;
    height: 68px !important;
    background: #2d7501 !important;
    -webkit-mask: none !important;
    mask: none !important;
    -webkit-clip-path: ellipse(58% 100% at 50% 100%) !important;
    clip-path: ellipse(58% 100% at 50% 100%) !important;
    transform: none !important;
    pointer-events: none !important;
}

/* منع بقاء تأثير اللمس على أيقونات التواصل */
footer.store-footer.nq-modern-footer .nq-footer-social .s-social-link a,
footer.store-footer.nq-modern-footer .nq-footer-social .s-social-link a:link,
footer.store-footer.nq-modern-footer .nq-footer-social .s-social-link a:visited {
    background: transparent !important;
    color: #ffffff !important;
    -webkit-tap-highlight-color: transparent !important;
}

footer.store-footer.nq-modern-footer .nq-footer-social .s-social-link a:active,
footer.store-footer.nq-modern-footer .nq-footer-social .s-social-link a:focus:not(:focus-visible) {
    background: transparent !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
    transform: none !important;
}

@media (hover: hover) and (pointer: fine) {
    footer.store-footer.nq-modern-footer .nq-footer-social .s-social-link a:hover {
        border-color: rgba(255,255,255,.95) !important;
        background: rgba(255,255,255,.10) !important;
        color: #ffffff !important;
    }
}

@media (max-width: 768px) {
    footer.store-footer.nq-modern-footer::before {
        left: -10% !important;
        width: 120% !important;
        height: 58px !important;
        -webkit-clip-path: ellipse(58% 100% at 50% 100%) !important;
        clip-path: ellipse(58% 100% at 50% 100%) !important;
    }

    /* لا نغيّر مكونات البحث الداخلية؛ فقط نرفع نافذة سلة فوق شريط الجوال */
    salla-modal.s-search-modal {
        z-index: 1000003 !important;
    }
}















/* =========================================================
   الرسيني للأعشاب | نافذة اليوم الوطني السعودي
   ========================================================= */

#alresiny-national-day-popup,
#alresiny-national-day-popup *,
#alresiny-national-day-popup *::before,
#alresiny-national-day-popup *::after {
    box-sizing: border-box;
}

body.alresiny-national-day-open {
    overflow: hidden !important;
}

#alresiny-national-day-popup {
    position: fixed;
    z-index: 2147482000;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    direction: rtl;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
}

#alresiny-national-day-popup.is-visible {
    opacity: 1;
    visibility: visible;
}

#alresiny-national-day-popup.is-closing {
    opacity: 0;
    visibility: hidden;
}


/* الخلفية */

.alresiny-nd-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(10, 28, 15, 0.58);

    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}


/* البطاقة */

.alresiny-nd-card {
    position: relative;
    z-index: 2;

    width: min(430px, 100%);
    max-height: calc(100dvh - 40px);

    padding: 31px 27px 24px;

    overflow-x: hidden;
    overflow-y: auto;

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #ffffff 68%,
            #f5faF2 100%
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.28);

    text-align: center;

    transform:
        translateY(22px)
        scale(0.965);

    opacity: 0;

    transition:
        transform 0.32s cubic-bezier(.2,.8,.2,1),
        opacity 0.28s ease;

    scrollbar-width: none;
}

.alresiny-nd-card::-webkit-scrollbar {
    display: none;
}

#alresiny-national-day-popup.is-visible
.alresiny-nd-card {
    transform:
        translateY(0)
        scale(1);

    opacity: 1;
}


/* زر الإغلاق */

.alresiny-nd-close {
    position: absolute;

    top: 15px;
    left: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #f1f4ef !important;
    color: #2d7501 !important;

    font-family: Arial, sans-serif !important;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;

    box-shadow: none !important;

    -webkit-tap-highlight-color: transparent;
}

.alresiny-nd-close:active {
    transform: scale(0.92);
}


/* زخرفة */

.alresiny-nd-decoration {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    height: 6px;

    margin: -6px auto 20px;
}

.alresiny-nd-decoration span {
    display: block;

    height: 4px;

    border-radius: 20px;

    background: #2d7501;
}

.alresiny-nd-decoration span:nth-child(1),
.alresiny-nd-decoration span:nth-child(3) {
    width: 18px;

    opacity: 0.35;
}

.alresiny-nd-decoration span:nth-child(2) {
    width: 46px;
}


/* الشعار */

.alresiny-nd-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 76px;

    margin-bottom: 5px;
}

.alresiny-nd-logo {
    display: block;

    width: auto;
    max-width: 170px;

    height: auto;
    max-height: 76px;

    object-fit: contain;
}


/* كود الخصم */

.alresiny-nd-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: fit-content;

    margin: 7px auto 5px;
    padding: 6px 7px 6px 12px;

    border: 1px dashed rgba(45, 117, 1, 0.38);
    border-radius: 12px;

    background: #f5faf2;

    direction: ltr;
}

.alresiny-nd-coupon-code {
    color: #2d7501;

    font-family: Arial, sans-serif !important;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.alresiny-nd-copy {
    height: 28px;
    min-width: 46px;

    padding: 0 8px;

    border: 0 !important;
    border-radius: 8px !important;

    background: #2d7501 !important;
    color: #ffffff !important;

    font-family: inherit !important;
    font-size: 10px !important;
    font-weight: 700 !important;

    cursor: pointer;

    box-shadow: none !important;
}


/* العنوان */

.alresiny-nd-title {
    margin: 3px 0 4px !important;

    color: #2d7501 !important;

    font-family: inherit !important;
    font-size: 27px !important;
    font-weight: 900 !important;
    line-height: 1.45 !important;
}


/* النص الصغير */

.alresiny-nd-subtitle {
    margin: 0 !important;

    color: #4f5a49 !important;

    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.8 !important;
}


/* الفاصل */

.alresiny-nd-divider {
    display: flex;
    align-items: center;

    gap: 10px;

    margin: 18px 0 13px;

    color: #2d7501;
}

.alresiny-nd-divider span {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(45, 117, 1, 0.35)
        );
}

.alresiny-nd-divider span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(45, 117, 1, 0.35),
            transparent
        );
}

.alresiny-nd-divider strong {
    flex: 0 0 auto;

    color: #2d7501;

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;
}


/* النص */

.alresiny-nd-text {
    max-width: 330px;

    margin:
        0 auto
        20px !important;

    color: #565d52 !important;

    font-size: 13.5px !important;
    font-weight: 500 !important;
    line-height: 1.9 !important;
}


/* زر العروض */

.alresiny-nd-offers {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 9px;

    width: 100%;
    min-height: 53px;

    padding: 12px 18px !important;

    border: 0 !important;
    border-radius: 16px !important;

    background: #2d7501 !important;
    color: #ffffff !important;

    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;

    text-decoration: none !important;

    box-shadow:
        0 12px 28px
        rgba(45, 117, 1, 0.22) !important;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease !important;

    -webkit-tap-highlight-color: transparent;
}

.alresiny-nd-offers:hover {
    color: #ffffff !important;

    transform: translateY(-1px);

    box-shadow:
        0 15px 32px
        rgba(45, 117, 1, 0.27) !important;
}

.alresiny-nd-offers:active {
    transform: scale(0.985);
}

.alresiny-nd-arrow {
    font-family: Arial, sans-serif !important;

    font-size: 18px;
    line-height: 1;
}


/* متابعة التسوق */

.alresiny-nd-continue {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    margin: 8px auto 0;
    padding: 5px 15px;

    border: 0 !important;

    background: transparent !important;
    color: #6c7468 !important;

    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: 600 !important;

    cursor: pointer;

    box-shadow: none !important;

    -webkit-tap-highlight-color: transparent;
}

.alresiny-nd-continue:hover {
    color: #2d7501 !important;
}


/* ==========================
   الجوال
   ========================== */

@media (max-width: 768px) {

    #alresiny-national-day-popup {
        align-items: flex-end;

        padding:
            12px
            12px
            calc(
                80px +
                env(safe-area-inset-bottom, 0px)
            );
    }

    .alresiny-nd-card {
        width: 100%;

        max-height:
            calc(
                100dvh -
                105px -
                env(safe-area-inset-bottom, 0px)
            );

        padding:
            27px
            21px
            19px;

        border-radius: 25px;
    }

    .alresiny-nd-logo {
        max-width: 145px;
        max-height: 66px;
    }

    .alresiny-nd-logo-wrap {
        min-height: 66px;

        margin-bottom: 2px;
    }

    .alresiny-nd-flag {
        font-size: 27px;
    }

    .alresiny-nd-title {
        font-size: 24px !important;
    }

    .alresiny-nd-subtitle {
        font-size: 13px !important;
    }

    .alresiny-nd-divider {
        margin:
            15px 0
            11px;
    }

    .alresiny-nd-text {
        margin-bottom: 17px !important;

        font-size: 13px !important;
    }

    .alresiny-nd-offers {
        min-height: 51px;

        border-radius: 15px !important;

        font-size: 14px !important;
    }

}


/* الشاشات الصغيرة جداً */

@media (max-width: 360px) {

    .alresiny-nd-card {
        padding:
            24px
            17px
            16px;
    }

    .alresiny-nd-title {
        font-size: 22px !important;
    }

    .alresiny-nd-text {
        font-size: 12px !important;
    }

}


/* تقليل الحركة */

@media (prefers-reduced-motion: reduce) {

    #alresiny-national-day-popup,
    .alresiny-nd-card,
    .alresiny-nd-offers {
        transition-duration: 0.01ms !important;
    }

}










/* =========================================================
   الرسيني | تثبيت عرض المتجر على الجوال ومنع الانزلاق الأفقي
   ========================================================= */

html {
    width: 100%;
    max-width: 100%;
    overflow-x: clip !important;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip !important;
}

/* توافق مع المتصفحات التي لا تدعم overflow: clip */
@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden !important;
    }
}


/* =========================================================
   إصلاح تقوس الفوتر بدون الخروج عن حدود الشاشة
   ========================================================= */

footer.store-footer.nq-modern-footer {
    width: 100% !important;
    max-width: 100% !important;

    overflow: hidden !important;
}

footer.store-footer.nq-modern-footer::before {
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;

    background: #2d7501 !important;

    -webkit-clip-path:
        ellipse(62% 100% at 50% 100%) !important;

    clip-path:
        ellipse(62% 100% at 50% 100%) !important;
}


/* =========================================================
   الجوال
   ========================================================= */

@media (max-width: 768px) {

    footer.store-footer.nq-modern-footer::before {
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;
        max-width: 100% !important;

        height: 58px !important;

        -webkit-clip-path:
            ellipse(64% 100% at 50% 100%) !important;

        clip-path:
            ellipse(64% 100% at 50% 100%) !important;
    }


    /* منع أي عنصر عام من توسيع صفحة المتجر */
    #app,
    .app-inner,
    main,
    footer,
    header {
        max-width: 100% !important;
    }


    /* الشريط السفلي يظل داخل حدود الشاشة */
    #nq-mobile-nav {
        right: 0 !important;
        left: 0 !important;

        width: 100% !important;
        max-width: 100% !important;
    }


    /* نافذة اليوم الوطني */
    #alresiny-national-day-popup {
        right: 0 !important;
        left: 0 !important;

        width: 100% !important;
        max-width: 100% !important;

        overflow-x: hidden !important;
    }

    .alresiny-nd-card {
        max-width: 100% !important;
    }
}










/* =========================================
   بنرات الرئيسية - تنقل بالنقاط
   ========================================= */

/* إخفاء أسهم اليمين واليسار */
.s-block--default-home-slider .s-slider-block__title-nav {
    display: none !important;
}

/* ترتيب نقاط التنقل */
.s-block--default-home-slider .swiper-pagination {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;

    position: relative !important;
    bottom: auto !important;
    margin-top: 10px !important;
}

/* النقاط العادية */
.s-block--default-home-slider .swiper-pagination-bullet {
    width: 7px !important;
    height: 7px !important;

    margin: 0 !important;
    border-radius: 50px !important;

    background: #c9c9c9 !important;
    opacity: 1 !important;

    transition: all .25s ease !important;
}

/* البنر الحالي */
.s-block--default-home-slider .swiper-pagination-bullet-active {
    width: 22px !important;
    height: 7px !important;

    border-radius: 50px !important;
    background: #2c7403 !important;
}








/* إخفاء أسهم التنقل */
.s-block--default-home-slider .s-slider-block__title-nav {
    display: none !important;
}

/* نقاط البنرات */
.alresiny-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    margin-top: 9px;
}

/* النقطة العادية */
.alresiny-slider-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: #c9c9c9;
    cursor: pointer;
    transition: all .3s ease;
}

/* البنر الحالي */
.alresiny-slider-dot.active {
    width: 24px;
    background: #2c7403;
}




















/* ==========================================================
   ALRESINY - HEADER CATEGORIES
   الإصدار الموحد
   ========================================================== */

@media (min-width: 1024px) {

    /* ======================================================
       1. أعلى الصفحة
       ====================================================== */

    body:not(.alresiny-scrolled) .header-components-home {
        position: relative !important;

        height: 78px !important;
        min-height: 78px !important;

        background: #ffffff !important;

        overflow: visible !important;
    }


    body:not(.alresiny-scrolled)
    .header-components-home .header-components-inner {

        position: relative !important;

        height: 78px !important;
        min-height: 78px !important;

        background: #ffffff !important;

        overflow: visible !important;
    }


    /* ======================================================
       2. الشعار
       نحركه للداخل حتى يكون للأيقونة مكان على يمينه
       ====================================================== */

    body:not(.alresiny-scrolled)
    .header-components-home .navbar-brand {

        position: absolute !important;

        right: 72px !important;
        left: auto !important;

        top: 50% !important;

        transform: translateY(-50%) !important;

        width: 145px !important;

        margin: 0 !important;
        padding: 0 !important;

        z-index: 100 !important;
    }


    body:not(.alresiny-scrolled)
    .header-components-home .navbar-brand img {

        width: 145px !important;
        height: auto !important;

        max-width: 145px !important;
        max-height: 58px !important;

        object-fit: contain !important;
    }


    /* ======================================================
       3. نخفي الأقسام أعلى الصفحة
       ====================================================== */

    body:not(.alresiny-scrolled)
    .header-components-home .main-menu {

        display: none !important;
    }


    /* ======================================================
       4. زر الأقسام - الأربع مربعات
       يمين الشعار باتجاه حافة الشاشة
       ====================================================== */

    body:not(.alresiny-scrolled)
    .header-components-home .alresiny-menu-dots {

        position: absolute !important;

        right: 18px !important;
        left: auto !important;

        top: 50% !important;

        transform: translateY(-50%) !important;

        width: 40px !important;
        height: 40px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        background: #ffffff !important;

        border: 1px solid #d9e8d3 !important;
        border-radius: 10px !important;

        box-shadow: 0 2px 7px rgba(0,0,0,.05) !important;

        font-size: 0 !important;
        color: transparent !important;

        cursor: pointer !important;

        z-index: 1000000 !important;

        transition:
            background .2s ease,
            border-color .2s ease,
            transform .2s ease !important;
    }


    /* رسم الأربع مربعات */
    body:not(.alresiny-scrolled)
    .header-components-home .alresiny-menu-dots::before {

        content: "" !important;

        display: block !important;

        width: 6px !important;
        height: 6px !important;

        background: #2c7403 !important;

        border-radius: 1.5px !important;

        box-shadow:
            10px 0 0 #2c7403,
            0 10px 0 #2c7403,
            10px 10px 0 #2c7403 !important;

        transform: translate(-5px, -5px) !important;
    }


    /* Hover */
    body:not(.alresiny-scrolled)
    .header-components-home .alresiny-menu-dots:hover {

        background: #2c7403 !important;
        border-color: #2c7403 !important;
    }


    body:not(.alresiny-scrolled)
    .header-components-home .alresiny-menu-dots:hover::before {

        background: #ffffff !important;

        box-shadow:
            10px 0 0 #ffffff,
            0 10px 0 #ffffff,
            10px 10px 0 #ffffff !important;
    }


    /* ======================================================
       5. نافذة الأقسام عند الضغط على الأيقونة
       ====================================================== */

    body:not(.alresiny-scrolled)
    .header-components-home.alresiny-menu-open .main-menu {

        display: grid !important;

        grid-template-columns:
            repeat(3, minmax(0, 1fr)) !important;

        align-items: start !important;

        column-gap: 7px !important;
        row-gap: 5px !important;


        position: absolute !important;

        top: 68px !important;

        right: 18px !important;
        left: auto !important;


        width: 570px !important;

        height: auto !important;
        min-height: 0 !important;

        max-height: 500px !important;


        padding: 14px !important;
        margin: 0 !important;


        background: #ffffff !important;


        border: 1px solid #eeeeee !important;
        border-radius: 15px !important;


        box-shadow:
            0 18px 45px rgba(0,0,0,.16) !important;


        overflow-x: hidden !important;
        overflow-y: auto !important;


        z-index: 999999 !important;
    }


    /* ======================================================
       6. كل قسم داخل النافذة
       ====================================================== */

    body:not(.alresiny-scrolled)
    .header-components-home.alresiny-menu-open
    .main-menu > li {

        position: relative !important;

        display: block !important;

        width: 100% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        background: transparent !important;
    }


    /* رابط القسم */
    body:not(.alresiny-scrolled)
    .header-components-home.alresiny-menu-open
    .main-menu > li > a {

        position: relative !important;

        width: 100% !important;

        height: 43px !important;
        min-height: 43px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;


        padding: 0 11px !important;
        margin: 0 !important;


        color: #333333 !important;
        background: transparent !important;


        border: 0 !important;
        border-radius: 8px !important;


        font-size: 13px !important;
        font-weight: 500 !important;


        white-space: nowrap !important;


        transition:
            color .2s ease,
            background .2s ease !important;
    }


    /* Hover */
    body:not(.alresiny-scrolled)
    .header-components-home.alresiny-menu-open
    .main-menu > li > a:hover {

        color: #2c7403 !important;

        background: #f1f7ee !important;
    }


    /* أسهم الأقسام */
    body:not(.alresiny-scrolled)
    .header-components-home.alresiny-menu-open
    .main-menu > li > a svg,

    body:not(.alresiny-scrolled)
    .header-components-home.alresiny-menu-open
    .main-menu > li > a i {

        color: #999999 !important;

        fill: currentColor !important;
    }


    /* ======================================================
       7. القوائم الفرعية
       لا نسمح لها بالتداخل فوق الأقسام
       ====================================================== */

    body:not(.alresiny-scrolled)
    .header-components-home.alresiny-menu-open
    .main-menu .sub-menu {

        display: none !important;

        position: static !important;

        top: auto !important;
        right: auto !important;
        left: auto !important;

        transform: none !important;


        width: 100% !important;
        min-width: 0 !important;

        height: auto !important;


        padding: 5px !important;
        margin: 2px 0 5px !important;


        background: #f7faf5 !important;


        border: 0 !important;
        border-radius: 8px !important;


        box-shadow: none !important;
    }


    /* إظهار الفروع عند المرور */
    body:not(.alresiny-scrolled)
    .header-components-home.alresiny-menu-open
    .main-menu > li:hover > .sub-menu {

        display: block !important;
    }


    /* روابط الفروع */
    body:not(.alresiny-scrolled)
    .header-components-home.alresiny-menu-open
    .main-menu .sub-menu a {

        display: block !important;

        width: 100% !important;

        padding: 7px 9px !important;


        color: #666666 !important;
        background: transparent !important;


        font-size: 12px !important;


        border-radius: 6px !important;


        white-space: normal !important;
    }


    body:not(.alresiny-scrolled)
    .header-components-home.alresiny-menu-open
    .main-menu .sub-menu a:hover {

        color: #2c7403 !important;

        background: #ffffff !important;
    }


    /* ======================================================
       8. إخفاء زر المزيد القديم أعلى الصفحة
       لأن زر الأربع مربعات أصبح بديله
       ====================================================== */

    body:not(.alresiny-scrolled)
    .header-components-home .alresiny-more {

        display: none !important;
    }


    /* ======================================================
       9. عند النزول
       نخفي زر الأربع مربعات
       ====================================================== */

    body.alresiny-scrolled
    .header-components-home .alresiny-menu-dots {

        display: none !important;
    }


    /* ======================================================
       10. عند النزول تظهر القائمة الأصلية
       ====================================================== */

    body.alresiny-scrolled
    .header-components-home .main-menu {

        display: flex !important;
    }

}















/* ==========================================
   هيدر عائم فوق البنر
   ========================================== */

@media (min-width: 1024px) {

    body:not(.alresiny-scrolled) .header-components-home {
        position: absolute !important;
        top: auto !important;
        right: 0 !important;
        left: 0 !important;

        width: 100% !important;

        background: transparent !important;

        border: none !important;
        box-shadow: none !important;

        z-index: 9999 !important;
    }

    body:not(.alresiny-scrolled)
    .header-components-home .header-components-inner {
        background: transparent !important;

        border: none !important;
        box-shadow: none !important;
    }
}








/* ==================================================
   إصلاح السلة + العداد في الجوال
   ================================================== */

@media (max-width: 1023px) {

    /* زر الأقسام المخصص للديسكتوب فقط */
    .alresiny-menu-dots {
        display: none !important;
    }


    /* الهيدر يرجع طبيعي بالجوال */
    .header-components-home {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;

        width: 100% !important;

        background: #ffffff !important;
    }


    /* لا نستخدم تموضع الديسكتوب للأيقونات */
    .header-components-home .left-side {
        position: static !important;

        top: auto !important;
        right: auto !important;
        left: auto !important;

        width: auto !important;
        height: auto !important;

        transform: none !important;

        margin: 0 !important;

        display: flex !important;
        align-items: center !important;

        gap: 8px !important;
    }


    /* ==========================================
       مهم: حاوية السلة هي المرجع للعداد
       ========================================== */

    .header-components-home salla-cart-summary {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        left: auto !important;

        transform: none !important;

        width: auto !important;
        height: auto !important;

        margin: 0 !important;
    }


    .header-components-home .s-cart-summary-wrapper {
        position: relative !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 40px !important;
        height: 40px !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* أيقونة السلة */
    .header-components-home #s-cart-icon {
        position: relative !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 26px !important;
        height: 26px !important;

        top: auto !important;
        right: auto !important;
        left: auto !important;

        transform: none !important;

        margin: 0 !important;
    }


    /* ==========================================
       عداد السلة مربوط بالسلة نفسها
       ========================================== */

    .header-components-home .s-cart-summary-count {
        position: absolute !important;

        top: -3px !important;
        right: -3px !important;
        left: auto !important;

        min-width: 18px !important;
        height: 18px !important;

        padding: 0 4px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        transform: none !important;

        border-radius: 20px !important;

        font-size: 10px !important;
        line-height: 18px !important;

        z-index: 10 !important;
    }
}









/* شعار الرسيني في الفوتر فقط - أبيض */
footer.store-footer .footer-logo img {
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
}






















/* =========================================================
   الرسيني للأعشاب
   PREMIUM CUSTOMER REVIEWS — FINAL / STABLE
   لا يعتمد على رقم السلايدر
   ========================================================= */

.s-block--testimonials {
    --resiny-green: #2c7403;
    --resiny-green-light: #398a0d;
    --resiny-green-dark: #205b02;
    --resiny-gold: #ffbf24;

    background: #f6f8f4 !important;
    padding: 48px 0 42px !important;
}


/* =========================================================
   عنوان القسم
   ========================================================= */

.s-block--testimonials .s-block__title {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 0 32px !important;
    padding: 0 !important;

    background: transparent !important;
}


.s-block--testimonials .s-block__title h2 {
    position: relative !important;

    margin: 0 !important;
    padding: 0 0 14px !important;

    background: transparent !important;

    color: #1e291b !important;

    font-size: 27px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;

    text-align: center !important;
}


/* الخط الأخضر تحت العنوان */

.s-block--testimonials .s-block__title h2::after {
    content: "" !important;

    position: absolute !important;

    right: 50% !important;
    bottom: 0 !important;

    transform: translateX(50%) !important;

    width: 42px !important;
    height: 3px !important;

    background: var(--resiny-green) !important;

    border-radius: 20px !important;
}


/* =========================================================
   السلايدر
   ========================================================= */

.s-block--testimonials .relative.lg\:overflow-hidden {
    min-height: 0 !important;
    height: auto !important;

    padding: 5px 0 10px !important;

    background: transparent !important;
}


/* إزالة حدود سلة القديمة */

.s-block--testimonials .swiper-slide {
    border: 0 !important;
}


/* =========================================================
   البطاقة الرئيسية
   ========================================================= */

.s-block--testimonials
.p-2\.5.md\:p-5.h-full.text-center {

    position: relative !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;

    box-sizing: border-box !important;

    width: auto !important;

    height: 285px !important;
    min-height: 285px !important;

    margin: 8px 11px !important;
    padding: 27px 27px 25px !important;

    background:
        linear-gradient(
            145deg,
            var(--resiny-green-light) 0%,
            var(--resiny-green) 48%,
            var(--resiny-green-dark) 100%
        ) !important;

    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 21px !important;

    color: #fff !important;

    text-align: right !important;

    overflow: hidden !important;

    box-shadow:
        0 8px 18px rgba(44,116,3,.10),
        0 16px 35px rgba(44,116,3,.12) !important;

    transition:
        transform .25s ease,
        box-shadow .25s ease !important;
}


/* حركة البطاقة */

.s-block--testimonials
.p-2\.5.md\:p-5.h-full.text-center:hover {

    transform: translateY(-4px) !important;

    box-shadow:
        0 12px 25px rgba(44,116,3,.15),
        0 20px 42px rgba(44,116,3,.18) !important;
}


/* =========================================================
   زخرفة البطاقة
   ========================================================= */

.s-block--testimonials
.p-2\.5.md\:p-5.h-full.text-center::after {

    content: "" !important;

    position: absolute !important;

    left: -70px !important;
    bottom: -95px !important;

    width: 180px !important;
    height: 180px !important;

    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 50% !important;

    box-shadow:
        0 0 0 34px rgba(255,255,255,.018),
        0 0 0 68px rgba(255,255,255,.012) !important;

    pointer-events: none !important;
}


/* =========================================================
   علامة الاقتباس
   ========================================================= */

.s-block--testimonials
.p-2\.5.md\:p-5.h-full.text-center::before {

    content: "“" !important;

    position: absolute !important;

    top: 19px !important;
    left: 24px !important;

    font-family: Georgia, serif !important;
    font-size: 60px !important;
    font-weight: 700 !important;
    line-height: .8 !important;

    color: rgba(255,255,255,.12) !important;

    pointer-events: none !important;

    z-index: 1 !important;
}


/* =========================================================
   إخفاء الاقتباس الأصلي الخاص بسلة
   ========================================================= */

.s-block--testimonials
.p-2\.5.md\:p-5.h-full.text-center > svg,

.s-block--testimonials
.p-2\.5.md\:p-5.h-full.text-center > i {

    display: none !important;
}


/* =========================================================
   الحاويات الداخلية
   ========================================================= */

.s-block--testimonials
.p-2\.5.md\:p-5.h-full.text-center > div {

    position: relative !important;

    width: 100% !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;

    border: 0 !important;

    z-index: 3 !important;
}


/* =========================================================
   اسم العميل
   ========================================================= */

.s-block--testimonials
.p-2\.5.md\:p-5.h-full.text-center h4 {

    order: -3 !important;

    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    width: 100% !important;

    margin: 0 0 6px !important;
    padding: 0 !important;

    color: #fff !important;

    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.5 !important;

    text-align: right !important;

    background: transparent !important;

    z-index: 5 !important;
}


/* =========================================================
   علامة التوثيق
   ========================================================= */

.s-block--testimonials
.p-2\.5.md\:p-5.h-full.text-center h4::before {

    content: "✓" !important;

    flex: 0 0 20px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 20px !important;
    height: 20px !important;

    margin-left: 7px !important;

    color: var(--resiny-green) !important;
    background: #fff !important;

    border: 2px solid rgba(255,255,255,.25) !important;
    border-radius: 50% !important;

    box-sizing: border-box !important;

    font-size: 10px !important;
    font-weight: 900 !important;
    line-height: 1 !important;

    box-shadow: 0 2px 7px rgba(0,0,0,.08) !important;
}


/* =========================================================
   النجوم
   ========================================================= */

.s-block--testimonials
.p-2\.5.md\:p-5.h-full.text-center salla-rating-stars {

    order: -2 !important;

    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    width: fit-content !important;

    margin: 0 0 20px !important;
    padding: 0 !important;

    opacity: 1 !important;
    visibility: visible !important;

    z-index: 6 !important;
}


/* =========================================================
   الخط الفاصل
   ========================================================= */

.s-block--testimonials
.p-2\.5.md\:p-5.h-full.text-center h4::after {

    content: "" !important;

    position: absolute !important;

    right: 0 !important;
    top: 60px !important;

    width: 100% !important;
    height: 1px !important;

    background: rgba(255,255,255,.13) !important;

    pointer-events: none !important;
}


/* =========================================================
   نص رأي العميل
   ========================================================= */

.s-block--testimonials #item-text {

    order: 5 !important;

    position: relative !important;

    display: -webkit-box !important;

    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 4 !important;

    width: 100% !important;

    height: auto !important;
    min-height: 90px !important;
    max-height: 115px !important;

    margin: 15px 0 0 !important;
    padding: 0 !important;

    color: rgba(255,255,255,.96) !important;

    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.95 !important;

    text-align: right !important;

    overflow: hidden !important;

    background: transparent !important;

    z-index: 5 !important;
}


.s-block--testimonials #item-text,
.s-block--testimonials #item-text * {

    color: rgba(255,255,255,.96) !important;
}


/* =========================================================
   أسهم التنقل
   ========================================================= */

.s-block--testimonials .s-slider-prev,
.s-block--testimonials .s-slider-next {

    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;

    background: rgba(255,255,255,.96) !important;

    border: 1px solid #e2e8df !important;
    border-radius: 50% !important;

    color: var(--resiny-green) !important;

    box-shadow: 0 5px 15px rgba(0,0,0,.08) !important;
}


/* =========================================================
   زر عرض الكل
   ========================================================= */

.s-block--testimonials .pt-10.text-center.grid {

    padding-top: 22px !important;
}


.s-block--testimonials .pt-10.text-center.grid a {

    min-width: 150px !important;
    height: 46px !important;

    margin: 0 auto !important;
    padding: 0 22px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: var(--resiny-green) !important;

    background: #fff !important;

    border: 1px solid rgba(44,116,3,.18) !important;
    border-radius: 13px !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    box-shadow: 0 5px 15px rgba(44,116,3,.05) !important;

    transition: .2s ease !important;
}


.s-block--testimonials .pt-10.text-center.grid a:hover {

    color: #fff !important;

    background: var(--resiny-green) !important;
    border-color: var(--resiny-green) !important;
}


/* =========================================================
   الجوال
   ========================================================= */

@media (max-width: 767px) {

    .s-block--testimonials {

        padding: 32px 0 28px !important;
    }


    .s-block--testimonials .s-block__title {

        margin-bottom: 22px !important;
    }


    .s-block--testimonials .s-block__title h2 {

        font-size: 22px !important;
    }


    .s-block--testimonials
    .p-2\.5.md\:p-5.h-full.text-center {

        height: 265px !important;
        min-height: 265px !important;

        margin: 6px !important;
        padding: 23px 21px 21px !important;

        border-radius: 18px !important;
    }


    .s-block--testimonials
    .p-2\.5.md\:p-5.h-full.text-center h4 {

        font-size: 14px !important;
    }


    .s-block--testimonials
    .p-2\.5.md\:p-5.h-full.text-center salla-rating-stars {

        margin-bottom: 17px !important;
    }


    .s-block--testimonials #item-text {

        min-height: 85px !important;

        margin-top: 13px !important;

        font-size: 13px !important;
        line-height: 1.9 !important;
    }


    .s-block--testimonials
    .p-2\.5.md\:p-5.h-full.text-center::before {

        top: 20px !important;
        left: 20px !important;

        font-size: 52px !important;
    }
}






/* =========================================================
   الرسيني | ترتيب أسهم آراء العملاء على الجوال
   ========================================================= */

@media (max-width: 767px) {

    /* حاوية السلايدر */
    .s-block--testimonials .relative.lg\:overflow-hidden {
        position: relative !important;
        overflow: visible !important;
    }


    /* السهمين */
    .s-block--testimonials .s-slider-prev,
    .s-block--testimonials .s-slider-next {

        position: absolute !important;

        top: 50% !important;
        bottom: auto !important;

        transform: translateY(-50%) !important;

        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        background: rgba(255,255,255,.96) !important;

        border: 1px solid rgba(44,116,3,.14) !important;
        border-radius: 50% !important;

        color: #2c7403 !important;

        box-shadow: 0 4px 14px rgba(0,0,0,.10) !important;

        z-index: 50 !important;
    }


    /* سهم اليمين */
    .s-block--testimonials .s-slider-next {
        right: 10px !important;
        left: auto !important;
    }


    /* سهم اليسار */
    .s-block--testimonials .s-slider-prev {
        left: 10px !important;
        right: auto !important;
    }


    /* نخلي زر عرض الكل بعيد عن البطاقة */
    .s-block--testimonials .pt-10.text-center.grid {
        padding-top: 20px !important;
        margin-top: 0 !important;
    }

}








/* الرسيني - تكبير صور المنتجات وتقليل الفراغ */
.product-entry__image {
    height: 240px !important;
    min-height: 240px !important;
    overflow: hidden !important;
}

.product-entry__image img.s-product-card-image-contain {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
}



/* خلفية منطقة صورة المنتج فقط */
.product-entry__image,
.product-entry__image a,
.product-entry__image img,
img.s-product-card-image-contain {
    background-color: #ffffff !important;
}




/* لون عناوين الأقسام - هوية الرسيني */
.s-slider-block__title h2 {
    color: #2f730b !important;
}