/* Add custom CSS styles below */ 
<div class="sbc-verify-seal" data-token="eDF0NS85QkRNUkVVcDJHeW5XMDdyZz09" data-position="bottom-left"></div>


/* =========================================
   RUKN OFRA - Enhanced Features Cards
   ========================================= */

.mini-features {
    padding: 20px 0;
}

/* شبكة البطاقات */
.mini-features .enhanced-features__grid {
    gap: 18px !important;
}

/* البطاقة */
.mini-features .s-block--enhanced-features__item {
    position: relative !important;
    background: #F7ECE3 !important;
    border: 1px solid rgba(137, 93, 130, 0.14) !important;
    border-radius: 22px !important;
    padding: 28px 20px !important;
    min-height: 230px !important;

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

    overflow: hidden !important;

    box-shadow:
        0 8px 25px rgba(137, 93, 130, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.55) !important;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease !important;
}

/* لمسة زخرفية ناعمة */
.mini-features .s-block--enhanced-features__item::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: -55px;
    right: -45px;
    background: rgba(137, 93, 130, 0.08);
    border-radius: 50%;
    transition: transform 0.4s ease, background 0.4s ease;
}

/* دائرة زخرفية ثانية */
.mini-features .s-block--enhanced-features__item::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    bottom: -45px;
    left: -35px;
    background: rgba(137, 93, 130, 0.05);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

/* إلغاء خطوط الـ hover الأصلية */
.mini-features .s-block--enhanced-features__item > .absolute {
    display: none !important;
}

/* Hover */
.mini-features .s-block--enhanced-features__item:hover {
    transform: translateY(-7px) !important;

    background: #fffaf7 !important;

    border-color: rgba(137, 93, 130, 0.35) !important;

    box-shadow:
        0 18px 40px rgba(137, 93, 130, 0.17),
        0 5px 12px rgba(137, 93, 130, 0.08) !important;
}

/* حركة الدوائر */
.mini-features .s-block--enhanced-features__item:hover::before {
    transform: scale(1.35);
    background: rgba(137, 93, 130, 0.11);
}

.mini-features .s-block--enhanced-features__item:hover::after {
    transform: scale(1.25);
}

/* =========================================
   الأيقونة
   ========================================= */

.mini-features .feature-icon {
    position: relative !important;
    z-index: 2 !important;

    width: 72px !important;
    height: 72px !important;

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

    margin-bottom: 18px !important;

    background: #895D82 !important;
    border-radius: 50% !important;

    box-shadow:
        0 8px 18px rgba(137, 93, 130, 0.22) !important;

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

/* خلفية الأيقونة */
.mini-features .feature-icon::before {
    content: "";
    position: absolute;
    inset: -6px;

    border: 1px solid rgba(137, 93, 130, 0.18);
    border-radius: 50%;
}

/* صورة الأيقونة */
.mini-features .feature-icon img {
    max-width: 48px !important;
    max-height: 48px !important;
    object-fit: contain !important;
    position: relative !important;
    z-index: 2 !important;

    transition: transform 0.35s ease !important;
}

/* حركة الأيقونة */
.mini-features .s-block--enhanced-features__item:hover .feature-icon {
    transform: translateY(-3px) scale(1.06) !important;

    box-shadow:
        0 12px 25px rgba(137, 93, 130, 0.30) !important;
}

.mini-features .s-block--enhanced-features__item:hover .feature-icon img {
    transform: scale(1.08) !important;
}

/* =========================================
   العنوان
   ========================================= */

.mini-features .s-block--enhanced-features__item h2 {
    position: relative !important;
    z-index: 2 !important;

    margin: 0 0 9px !important;

    color: #895D82 !important;

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

    line-height: 1.5 !important;

    transition: color 0.3s ease !important;
}

/* =========================================
   الوصف
   ========================================= */

.mini-features .s-block--enhanced-features__item p {
    position: relative !important;
    z-index: 2 !important;

    margin: 0 !important;

    color: rgba(58, 45, 55, 0.72) !important;

    font-size: 13px !important;
    line-height: 1.8 !important;

    max-width: 250px !important;

    transition: color 0.3s ease !important;
}

/* =========================================
   تأثير العنوان عند Hover
   ========================================= */

.mini-features .s-block--enhanced-features__item:hover h2 {
    color: #6f4869 !important;
}

.mini-features .s-block--enhanced-features__item:hover p {
    color: rgba(58, 45, 55, 0.82) !important;
}


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

@media (max-width: 767px) {

    .mini-features {
        padding: 12px 0;
    }

    .mini-features .enhanced-features__grid {
        gap: 12px !important;
    }

    .mini-features .s-block--enhanced-features__item {
        min-height: 205px !important;
        padding: 22px 14px !important;
        border-radius: 18px !important;
    }

    .mini-features .feature-icon {
        width: 58px !important;
        height: 58px !important;
        margin-bottom: 14px !important;
    }

    .mini-features .feature-icon img {
        max-width: 38px !important;
        max-height: 38px !important;
    }

    .mini-features .s-block--enhanced-features__item h2 {
        font-size: 15px !important;
    }

    .mini-features .s-block--enhanced-features__item p {
        font-size: 11px !important;
        line-height: 1.7 !important;
    }
}


/* =========================================
   تحسين الحركة للأجهزة التي تدعم Hover
   ========================================= */

@media (hover: hover) {
    .mini-features .s-block--enhanced-features__item {
        cursor: default;
    }
}


// قسم الماركات
/* =========================================
   RUKN OFRA - Brands Section
   تكبير شعارات العلامات التجارية
   ========================================= */

.s-block--brands .brands__grid {
    align-items: center !important;
}

/* بطاقات الشعارات */
.s-block--brands .brands__item {
    min-height: 115px !important;
    padding: 15px !important;
    transition: all 0.3s ease !important;
}

/* تكبير الشعارات */
.s-block--brands .brands__logo {
    max-height: 6.5rem !important;
    width: auto !important;
    max-width: 190px !important;
    object-fit: contain !important;

    transition:
        transform 0.35s ease,
        filter 0.35s ease !important;
}

/* تأثير عند المرور */
.s-block--brands .brands__item:hover .brands__logo {
    transform: scale(1.08) !important;
}

/* =========================================
   تحسين المسافات
   ========================================= */

.s-block--brands .brands__grid {
    column-gap: 35px !important;
    row-gap: 35px !important;
}

/* =========================================
   العنوان
   ========================================= */

.s-block--brands .brands__title {
    color: #895D82 !important;
}

/* الخط أسفل العنوان */
.s-block--brands .enhanced-title-border {
    background-color: #895D82 !important;
}


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

@media (max-width: 767px) {

    .s-block--brands .brands__grid {
        column-gap: 15px !important;
        row-gap: 25px !important;
    }

    .s-block--brands .brands__item {
        min-height: 90px !important;
        padding: 8px !important;
    }

    .s-block--brands .brands__logo {
        max-height: 5rem !important;
        max-width: 150px !important;
    }
}

/* =========================================================
   RUKN OFRA | PREMIUM FOOTER
   Colors:
   Purple  : #895D82
   Cream   : #F7ECE3
   ========================================================= */

/* الفوتر بالكامل */
.store-footer {
    position: relative !important;
    background: #895D82 !important;
    color: #F7ECE3 !important;
    overflow: hidden !important;
}

/* لمسة زخرفية ناعمة */
.store-footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    right: -160px;
    border-radius: 50%;
    background: rgba(247, 236, 227, 0.06);
    pointer-events: none;
}

.store-footer::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: -120px;
    border-radius: 50%;
    background: rgba(247, 236, 227, 0.05);
    pointer-events: none;
}


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

.store-footer__inner {
    position: relative !important;
    z-index: 2 !important;
    background: transparent !important;
}

.store-footer__container {
    padding-top: 55px !important;
    padding-bottom: 45px !important;
}


/* =========================================================
   شبكة الفوتر
   ========================================================= */

.store-footer__grid {
    align-items: start !important;
    gap: 45px 35px !important;
}


/* =========================================================
   الشعار
   ========================================================= */

.store-footer .footer-logo {
    display: inline-flex !important;
    align-items: center !important;
    margin-bottom: 18px !important;
}

.store-footer .footer-logo img {
    height: 78px !important;
    width: auto !important;
    object-fit: contain !important;

    filter: brightness(0) invert(1) !important;

    transition: transform 0.3s ease !important;
}

.store-footer .footer-logo:hover img {
    transform: scale(1.04) !important;
}


/* =========================================================
   وصف المتجر
   ========================================================= */

.store-footer .footer-description {
    color: rgba(247, 236, 227, 0.82) !important;
    font-size: 13px !important;
    line-height: 2 !important;
    max-width: 390px !important;
    margin-top: 15px !important;
}


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

.store-footer .footer-title {
    position: relative !important;

    color: #F7ECE3 !important;

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

    margin-bottom: 22px !important;
    padding-bottom: 12px !important;
}

/* الخط الصغير أسفل العنوان */
.store-footer .footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;

    width: 38px;
    height: 2px;

    border-radius: 10px;

    background: #F7ECE3;
    opacity: 0.75;
}


/* =========================================================
   روابط الفوتر
   ========================================================= */

.store-footer .store-footer__menu-link {
    position: relative !important;

    display: inline-block !important;

    color: rgba(247, 236, 227, 0.78) !important;

    font-size: 13px !important;
    line-height: 1.8 !important;

    padding: 4px 0 !important;

    transition:
        color 0.25s ease,
        transform 0.25s ease !important;
}

/* إزالة النقاط الافتراضية */
.store-footer .links_with_bullits li::before {
    display: none !important;
}

/* حركة الروابط */
.store-footer .store-footer__menu-link:hover {
    color: #FFFFFF !important;
    transform: translateX(-5px) !important;
}


/* =========================================================
   الحساب
   ========================================================= */

.store-footer .store-footer__account-column {
    color: #F7ECE3 !important;
}

.store-footer .footer-user-menu {
    color: rgba(247, 236, 227, 0.82) !important;
}


/* =========================================================
   الرقم الضريبي والشارات
   ========================================================= */

.store-footer .footer-badges {
    margin-top: 25px !important;
}

.store-footer .footer-tax {
    color: #F7ECE3 !important;
}

.store-footer .footer-tax__number p {
    color: rgba(247, 236, 227, 0.65) !important;
}

.store-footer .footer-tax__number b {
    color: #F7ECE3 !important;
    font-weight: 600 !important;
}

.store-footer .footer-tax__certificate img {
    transition:
        transform 0.3s ease,
        opacity 0.3s ease !important;
}

.store-footer .footer-tax__certificate:hover img {
    transform: scale(1.05) !important;
}


/* =========================================================
   اللغة
   ========================================================= */

.store-footer .store-footer__locale-row {
    margin-top: 28px !important;
}

.store-footer .store-footer__language-btn {
    min-height: 42px !important;

    padding: 8px 17px !important;

    color: #895D82 !important;
    background: #F7ECE3 !important;

    border: 1px solid rgba(247, 236, 227, 0.5) !important;
    border-radius: 12px !important;

    font-size: 13px !important;

    transition:
        background 0.3s ease,
        transform 0.3s ease !important;
}

.store-footer .store-footer__language-btn:hover {
    background: #FFFFFF !important;
    transform: translateY(-2px) !important;
}


/* =========================================================
   قسم التواصل
   ========================================================= */

.store-footer .store-footer__contacts-column {
    color: #F7ECE3 !important;
}

.store-footer .store-footer__contacts-column a {
    color: rgba(247, 236, 227, 0.82) !important;

    transition:
        color 0.25s ease,
        transform 0.25s ease !important;
}

.store-footer .store-footer__contacts-column a:hover {
    color: #FFFFFF !important;
}


/* =========================================================
   السوشيال ميديا
   ========================================================= */

.store-footer .store-footer__bottom-social {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* الأيقونات */
.store-footer .rounded_contacts a,
.store-footer .rounded_contacts button {
    width: 40px !important;
    height: 40px !important;

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

    margin: 4px !important;

    color: #895D82 !important;
    background: #F7ECE3 !important;

    border-radius: 50% !important;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease !important;
}

.store-footer .rounded_contacts a:hover,
.store-footer .rounded_contacts button:hover {
    background: #FFFFFF !important;

    transform: translateY(-4px) !important;

    box-shadow:
        0 8px 18px rgba(40, 20, 40, 0.18) !important;
}


/* =========================================================
   الجزء السفلي
   ========================================================= */

.store-footer .footer-bottom {
    position: relative !important;
    z-index: 2 !important;

    background: rgba(60, 38, 56, 0.20) !important;

    border-top: 1px solid rgba(247, 236, 227, 0.14) !important;
}

.store-footer .store-footer__bottom-inner {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.store-footer .store-footer__bottom-row {
    gap: 15px !important;
}


/* الحقوق */
.store-footer .footer-rights {
    color: rgba(247, 236, 227, 0.65) !important;
    font-size: 12px !important;
}

.store-footer .footer-rights a {
    color: #F7ECE3 !important;
    font-weight: 600 !important;
}

.store-footer .footer-rights a:hover {
    color: #FFFFFF !important;
}


/* =========================================================
   تحسين المساحات الناتجة عن <br>
   ========================================================= */

.store-footer br {
    display: none !important;
}


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

@media (max-width: 767px) {

    .store-footer__container {
        padding-top: 40px !important;
        padding-bottom: 30px !important;
    }

    .store-footer__grid {
        gap: 30px 18px !important;
    }

    .store-footer .store-footer__brand {
        text-align: center !important;
    }

    .store-footer .footer-logo {
        justify-content: center !important;
    }

    .store-footer .footer-logo img {
        height: 68px !important;
    }

    .store-footer .footer-description {
        max-width: 100% !important;
        font-size: 12px !important;
        line-height: 1.9 !important;
    }

    .store-footer .footer-title {
        font-size: 15px !important;
        margin-bottom: 15px !important;
    }

    .store-footer .store-footer__menu-link {
        font-size: 12px !important;
    }

    .store-footer .store-footer__bottom-row {
        flex-direction: column !important;
        text-align: center !important;
    }

    .store-footer .store-footer__bottom-social {
        margin-top: 5px !important;
    }

    .store-footer .rounded_contacts a,
    .store-footer .rounded_contacts button {
        width: 36px !important;
        height: 36px !important;
    }
}



/* =========================================================
   RUKN OFRA
   Marquee + Double Banner
   Brand Colors:
   #895D82
   #F7ECE3
   ========================================================= */



/* =========================================================
   2. المسافة بين الشريط والبانرات
   ========================================================= */

.s-block--double-banner {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}


/* =========================================================
   3. حاوية البانرات
   ========================================================= */

.s-block--double-banner .double-banner__row {
    gap: 20px !important;
}


/* =========================================================
   4. البانرات
   ========================================================= */

.s-block--double-banner .banner {
    position: relative !important;

    border-radius: 22px !important;

    overflow: hidden !important;

    background: #F7ECE3 !important;

    border: 1px solid rgba(137,93,130,0.12) !important;

    box-shadow:
        0 8px 25px rgba(137,93,130,0.10) !important;

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


/* الصورة */
.s-block--double-banner .double-banner__image {
    display: block !important;

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

    object-fit: cover !important;

    transition:
        transform 0.6s ease,
        filter 0.4s ease !important;
}


/* =========================================================
   5. طبقة إضاءة عند Hover
   ========================================================= */

.s-block--double-banner .banner::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(247,236,227,0.08),
        transparent 45%,
        rgba(137,93,130,0.10)
    );

    opacity: 0;

    transition: opacity 0.4s ease;

    pointer-events: none;
}


/* =========================================================
   6. Hover
   ========================================================= */

.s-block--double-banner .banner:hover {
    transform: translateY(-5px) !important;

    box-shadow:
        0 18px 38px rgba(137,93,130,0.18) !important;
}


.s-block--double-banner .banner:hover .double-banner__image {
    transform: scale(1.025) !important;
}


.s-block--double-banner .banner:hover::after {
    opacity: 1;
}


/* =========================================================
   7. حواف فاخرة خفيفة
   ========================================================= */

.s-block--double-banner .banner::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 22px;

    border: 1px solid rgba(247,236,227,0.35);

    z-index: 2;

    pointer-events: none;

    opacity: 0;

    transition: opacity 0.35s ease;
}


.s-block--double-banner .banner:hover::before {
    opacity: 1;
}


/* =========================================================
   8. الجوال
   ========================================================= */

@media (max-width: 767px) {

    .s-block--bundle-marquee {
        padding-top: 9px !important;
        padding-bottom: 9px !important;
    }

    .s-block--double-banner {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .s-block--double-banner .double-banner__row {
        gap: 12px !important;
    }

    .s-block--double-banner .banner {
        border-radius: 16px !important;
    }

    .s-block--double-banner .banner::before {
        border-radius: 16px;
    }

    /* إلغاء الحركة القوية على الجوال */
    .s-block--double-banner .banner:hover {
        transform: none !important;
    }

    .s-block--double-banner .banner:hover .double-banner__image {
        transform: none !important;
    }
}


/* =========================================================
   9. شاشات كبيرة
   ========================================================= */

@media (min-width: 1200px) {

    .s-block--double-banner .double-banner__row {
        gap: 24px !important;
    }

    .s-block--double-banner .banner {
        border-radius: 24px !important;
    }
}