/* Add custom CSS styles below */

/* بداية كود القائمة فوووق */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");
        /* --- التعديلات الأساسية --- */
        #nav-section-wrapper {
            font-family: sans-serif;
            direction: rtl;
        }

        /* 1. تثبيت الهيدر بشكل صحيح */
        .main-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background: #050a12;
            color: #fff;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            /* تم التعديل هنا */
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .brand-group {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-info {
            text-align: left;
        }

        .brand-name {
            display: block;
            font-weight: 800;
            font-size: 1.1rem;
            text-align: right;
        }

        .brand-sub {
            display: block;
            font-size: 0.65rem;
            color: #00ffcc;
            font-weight: bold;
            text-align: right;
        }

        .coach-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 2px solid #00ffcc;
            overflow: hidden;
        }

        .coach-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .menu-icon {
            cursor: pointer;
            transition: 0.3s;
        }

        .menu-icon:hover {
            color: #00ffcc;
        }

        #sidebar-menu {
            position: fixed;
            top: 0;
            /* نغير الـ left ليكون خارج الشاشة بناءً على العرض */
            left: -100%;
            width: 100%;
            /* العرض الافتراضي للجوال */
            height: 100%;
            background: #0d1117;
            z-index: 9999;
            transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }

        /* عندما تكون القائمة نشطة */
        #sidebar-menu.active {
            left: 0;
        }

        /* تنسيق أزرار الرجوع لتظهر بشكل احترافي */
        .back-btn {
            background: rgba(0, 255, 204, 0.1);
            border: none;
            color: #00ffcc;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .back-btn::before {
            content: '←';
        }

        /* سهم الرجوع */

        #sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            z-index: 9998;
            display: none;
        }

        #sidebar-overlay.active {
            display: block;
        }

        /* View Management */
        .side-view {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 25px;
            display: flex;
            flex-direction: column;
            opacity: 0;
            pointer-events: none;
            transform: translateX(-30px);
            transition: 0.3s ease;
        }

        .side-view.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateX(0);
        }

        /* Headers */
        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .close-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
        }

        .back-btn {
            background: none;
            border: none;
            color: #00ffcc;
            font-size: 22px;
            cursor: pointer;
            transform: rotate(180deg);
        }

        .view-title {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 800;
            margin: 0;
            flex: 1;
            text-align: center;
        }

        .logo-box-brand {
            background: #212429;
            color: #000;
            height: 32px;
            width: 32px;
            padding: 4px;
            border-radius: 8px;
            font-weight: 900;
        }

        /* Scroll Area */
        .view-scroll-content {
            flex: 1;
            overflow-y: auto;
            padding-bottom: 40px;
            scrollbar-width: thin;
            scrollbar-color: #00ffcc transparent;
        }

        .view-scroll-content::-webkit-scrollbar {
            width: 3px;
        }

        .view-scroll-content::-webkit-scrollbar-thumb {
            background: #00ffcc;
            border-radius: 10px;
        }

        /* Navigation Links */
        .side-nav {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .side-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
        }

        .side-link:hover {
            background: rgba(0, 255, 204, 0.05);
            border-color: #00ffcc;
        }

        .link-icon {
            background: rgba(255, 255, 255, 0.05);
            width: 35px;
            color: #00ffcc;
            height: 35px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* About Us Styles */
        .about-card {
            text-align: right;
        }

        .highlight-name {
            color: #00ffcc;
            font-size: 1.8rem;
            margin-bottom: 5px;
        }

        .specialty-tag {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 25px;
        }

        .content-body p {
            color: #ccc;
            line-height: 1.7;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .target-badge {
            background: rgba(0, 255, 204, 0.08);
            padding: 15px;
            border-radius: 15px;
            border-right: 4px solid #00ffcc;
            color: #fff;
        }

        .neon-text {
            color: #00ffcc;
            font-weight: bold;
        }

        /* FAQ Styles */
        .faq-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 18px;
            border-radius: 18px;
            margin-bottom: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .faq-card h4 {
            color: #00ffcc;
            margin: 0 0 10px 0;
            font-size: 1rem;
        }

        .faq-card p {
            color: #ccc;
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.5;
        }

        /* Footer Links */
        .sidebar-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
        }

        .footer-label {
            color: #555;
            font-size: 0.75rem;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .footer-link {
            display: block;
            color: #999;
            text-decoration: none;
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .footer-link:hover {
            color: #00ffcc;
        }

        .clickable {
            cursor: pointer;
        }

        @media (min-width: 768px) {
            #sidebar-menu {
                width: 380px;
                /* العرض الذي تريده على اللابتوب */
                left: -380px;
                /* نخفيه بمقدار عرضه فقط */
                border-right: 1px solid rgba(0, 255, 204, 0.2);
            }

            #sidebar-menu.active {
                left: 0;
            }
        }





 /* نهاية كود القائمة فوووق */






/* تخصيص الشات */

.s-add-product-button-main {
    background: #00ffcc !important;
    color: #050a12 !important;
    width: 100% !important;
    padding: 16px !important;
    border-radius: 15px !important;
    border: none !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: 0.3s !important;
    font-size: 1rem !important;
    text-align: center !important;
    flex: 3 !important;
    margin-top: 0 !important;
}

.s-add-product-button-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 204, 0.3);
}

/* نهاية تخصيص الشات */



/* اللودر*/

/* حاوية اللودر الرئيسية */
#elite-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #050a12;
    /* الأسود العميق الخاص بهويتك */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    perspective: 1000px;
}

/* حاوية الشعار مع تأثير 3D */
.logo-3d-container {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    animation: floating3d 3s infinite ease-in-out;
}

.main-loader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.3));
    animation: neonPulse 1.6s infinite alternate ease-in-out;
}

/* حلقة النيون المحيطة */
.neon-ring {
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px solid #00ffcc;
    border-radius: 50%;
    opacity: 0.1;
    animation: ringExpand 2s infinite ease-out;
    z-index: 1;
}

/* أنميشن الوميض النيون */
@keyframes neonPulse {
    0% {
        filter: drop-shadow(0 0 5px #00ffcc) brightness(1);
        transform: scale(0.95);
    }

    100% {
        filter: drop-shadow(0 0 25px #00ffcc) drop-shadow(0 0 45px rgba(0, 255, 204, 0.5)) brightness(1.2);
        transform: scale(1.05);
    }
}

/* أنميشن الحركة الثلاثية الأبعاد */
@keyframes floating3d {

    0%,
    100% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(10deg) rotateX(-5deg) translateY(-10px);
    }
}

/* أنميشن توسع الحلقة */
@keyframes ringExpand {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* إخفاء السكرول بار أثناء التحميل */
body:has(#elite-loader-wrapper) {
    overflow: hidden;
}


/* نهاية اللودر */



.s-block {
    margin-top: 0px;
}

header.store-header {
    display: none;
}

footer.store-footer {
    display: none;
}

:root {
    --color-primary-reverse: #050a12;
}

.salla-checkout-01 salla-mini-checkout-widget {
    width: 100%;
    padding: 16px;
    border-radius: 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
    background: #00ffcc;
    color: #050a12;
}

.salla-checkout-01 salla-mini-checkout-widget:hover {
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
}


/* صفحة المنتجات*/

body {
        background: radial-gradient(circle at top, #1a2a3a 0%, #1b1f2f 100%) !important;
        /* color: #fff !important; */
    }

body.special-design-active.product-single {
    padding: 0px;

    h1.text-xl.md\:text-2xl.leading-10.font-bold.mb-6.text-gray-800 {
        text-align: center;
    }

    .flex.whitespace-nowrap.gap-4.items-center {
        display: none;
    }

    .product__description.p-2.px-5.sm\:p-1.leading-7.mb-3 {
        display: none;
    }

    

    /* إخفاء عناصر سلة الأصلية التي لا نحتاجها */
  .s-product-options-option-container .s-product-options-option-label small {
        display: black;
    }

  .s-product-options-option-label[for="option-363367902"],
  .s-product-options-option-label[for="option-663602694"],
  .s-product-options-option-label[for="option-1655969210"],

  
.s-product-options-option-label[for="option-752721077"] {
    display: block !important;
}

    /* صورة المنتج */
    .sidebar.md\:sticky.top-24.w-full.md\:\!w-2\/4.rtl\:ml-8.ltr\:mr-8.pb-8.md\:pb-16.overflow-hidden.shrink-0 {
        display: none;
    }

    /* ايثونة المفضلة */
    .flex.rtl\:space-x-reverse.space-x-3 {
        display: none;
    }

    /* لون الخلفية */
    salla-product-options.s-product-options-wrapper.hydrated {
        background-color: #191c2b;
    }

    section.flex.bg-white.p-5.sm\:pb-0.rounded-md.rounded-b-none {
        display: none;
    }

    nav.breadcrumbs.w-full.py-5 {
        display: none;
    }

    salla-products-slider.s-products-slider-wrapper.hydrated {
        display: none;
    }

    salla-comments.hydrated {
        display: none;
    }

    .sticky-product-bar__quantity.center-between.mb-5 {
        display: none;
    }

    .container {
        padding: 0;
    }


    /* إعدادات الخلفية العامة للمنتج */
    #product-612373850,
    #product-89284855,
    #product-927696879 {
        background: radial-gradient(circle at top, #1a1e2e 0%, #1b1f2f 100%) !important;
        color: #fff !important;
        padding: 20px;

    }

    /* تغيير العناوين */
    #product-612373850 h1,
    #product-89284855 h1,
    #product-927696879 h1,
    .s-product-options-option-label b {
        color: #fff !important;
    }

    /* تعديل الليبل ليظهر كترقيم 01, 02 */
    /* label[for="option-427350634"] b {
      color: #5dd5c4 !important;
      font-size: 1.1rem;
  } */


    .s-product-options-option-container[data-option-id="427350634"]::before,
    .s-product-options-option-container[data-option-id="687433429"]::before,
    .s-product-options-option-container[data-option-id="1542596351"]::before {
        content: "01.نظام الاشتراك والاسعار";
        color: #5dd5c4;
        margin-left: 5px;
    }


    /* حاوية الباقات الجديدة */
    .custom-plans-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }

    /* تنسيق أزرار الجنس */
    .gender-custom-wrapper {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .gender-btn {
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        padding: 12px;
        text-align: center;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: bold;
    }

    .gender-btn:hover {
        background: rgba(93, 213, 196, 0.1);
    }

    .gender-btn.active {
        border-color: #5dd5c4;
        background: rgba(93, 213, 196, 0.2);
        color: #5dd5c4;
    }



    /* ترقيم الأقسام مثل 01. 02. */
    .s-product-options-option-label b::before {
        content: attr(data-index);
        /* إذا أردت تفعيله برمجياً */
        color: #5dd5c4;
        margin-left: 5px;
    }

    /* تصميم بطاقة الباقة */
    .custom-btn-plan {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        padding: 18px;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        /* لجعل السعر على اليسار والنص على اليمين */
        align-items: center;
        margin-bottom: 10px;
        cursor: pointer;
    }

    .custom-btn-plan:hover {
        background: rgba(93, 213, 196, 0.1);
    }

    .custom-btn-plan.active {
        border-color: #5dd5c4;
        background: rgba(93, 213, 196, 0.15);
        box-shadow: 0 0 15px rgba(93, 213, 196, 0.2);
    }

    /* النصوص داخل البطاقة */
    .plan-price {
        font-size: 1.4rem;
        font-weight: 800;
        color: #5dd5c4;
    }

    .plan-price span {
        font-size: 0.75rem;
        color: #fff;
        margin-right: 3px;
    }

    .plan-info {
        display: flex;
        flex-direction: column;
    }

    .plan-title {
        font-size: 1.1rem;
        font-weight: bold;
        color: #fff;
    }

    .plan-sub {
        font-size: 0.8rem;
        color: #5dd5c4;
        margin-top: 2px;
    }

    /* تعديل الحقول النصية (الاسم، الجوال، الخ) */
    .s-form-control {
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        color: #fff !important;
        padding: 12px 15px !important;
        font-size: 0.95rem !important;
    }

    .s-form-control:focus {
        border-color: #5dd5c4 !important;
        background: rgba(93, 213, 196, 0.05) !important;
    }

    /* زر الإضافة للسلة */
    .s-button-btn.s-button-primary {
        background-color: #5dd5c4 !important;
        color: #000 !important;
        font-weight: bold !important;
        border-radius: 12px !important;
        height: 55px !important;
        font-size: 1.1rem !important;
    }



    /* تنسيق حاوية أيام التمرين */
    .custom-wrapper-days {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .custom-btn-days {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        border-radius: 24%;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: bold;
    }

    .custom-btn-days:hover {
        background: rgba(93, 213, 196, 0.1);
    }

    .custom-btn-days.active {
        background: #5dd5c4;
        color: #000;
        border-color: #5dd5c4;
        box-shadow: 0 0 10px rgba(93, 213, 196, 0.4);
    }



    /* تنسيق أزرار الجنس (نفس نمط الأيام ولكن مستطيلة) */
    .custom-wrapper-gender {
        display: flex;
        gap: 10px;
    }

    .custom-btn-gender {
        flex: 1;
        padding: 12px;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        border-radius: 10px;
        cursor: pointer;
        font-weight: bold;
        transition: 0.3s;
    }

    .custom-btn-gender.active {
        background: rgba(93, 213, 196, 0.2);
        border-color: #5dd5c4;
        color: #5dd5c4;
    }

    /* تنسيق زر الموافقة على الشروط */
    .custom-wrapper-terms {
        margin-top: 10px;
    }

    .custom-btn-terms {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        padding: 15px;
        border-radius: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: 0.3s;
        margin-bottom: 40px;
    }

    .custom-btn-terms .check-icon {
        width: 22px;
        height: 22px;
        border: 2px solid #5dd5c4;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: transparent;
        font-size: 14px;
    }

    .custom-btn-terms.active {
        background: rgba(93, 213, 196, 0.1);
        border-color: #5dd5c4;
    }

    .custom-btn-terms.active .check-icon {
        background: #5dd5c4;
        color: #000;
    }


    /* إخفاء الليبل الأصلي فوق الملف لجعل التصميم أنظف */
    [data-option-id="81777600"] .s-product-options-option-label {
        color: #5dd5c4;
    }



    /* زر اشتري الان */

    /* تنسيق الزر الرئيسي ليملأ كامل العرض */
    salla-mini-checkout-widget {
        width: 100% !important;
        display: block !important;
        background-color: #00ffcc !important;
    }

    .s-add-product-button-mini-checkout-content {
        color: black;
        font-size: 1.3rem;
    }

    /* استهداف هيكلية الزر الداخلية بدقة */
    /* salla-mini-checkout-widget .s-mini-checkout-widget-label,
salla-mini-checkout-widget button.s-button-element {
    background: #5dd5c4 !important; 
    color: #0d0d0d !important;     
    width: 100% !important;
    height: 60px !important;        
    border-radius: 15px !important; 
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(93, 213, 196, 0.3) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
} */

    /* إخفاء الأيقونات المزعجة (المحفظة) */
    salla-mini-checkout-widget svg,
    salla-mini-checkout-widget i {
        display: none !important;
    }

    /* تأثير التوهج عند التمرير */
    salla-mini-checkout-widget:hover .s-mini-checkout-widget-label {
        box-shadow: 0 0 30px rgba(93, 213, 196, 0.6) !important;
        background: #4dbfb0 !important;
    }

    /* إخفاء أيقونة المحفظة الافتراضية إذا أردت */
    salla-mini-checkout-widget svg {
        display: none !important;
    }

    /* إخفاء زر "إضافة للسلة" الأصلي ليظهر فقط زر "إرسال البيانات والاشتراك" */
    salla-add-product-button .s-button-wrap {
        display: none !important;
    }

    section.sticky-product-bar.bg-white.p-5.rounded-md.rounded-b-none {
        background-color: #191c2b !important;
    }




    /* اخفائ عنوان المدخلات */

    /* إخفاء الليبل الأصلي */
    .s-product-options-option-container .s-product-options-option-label {
        display: none;
    }

    .s-product-options-text {
        position: relative;
    }

    .s-product-options-text::before {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        color: #999;
        pointer-events: none;
        font-size: 14px;
        transition: all 0.2s;
    }

    /* ثانياً: تحديد النص لكل حقل بناءً على الـ ID الخاص به */

[data-option-id="1593842256"] .s-product-options-option-content::before, 
[data-option-id="2059896278"] .s-product-options-option-content::before, 
[data-option-id="2040302115"] .s-product-options-option-content::before {
    color: #5dd5c4;
    content: "02. البيانات الشخصية";
}

    /* حقل الاسم */
    [data-option-id="1593842256"] .s-product-options-text::before {
        content: "الاسم ثلاثي";
    }

    /* حقل رقم الهاتف - مثال */
    [data-option-id="645760604"] .s-product-options-option-content::before {
        content: " رقم الجوال (واتساب)";
    }

    /* حقل المقاس - مثال */
    [data-option-id="1076786604"] .s-product-options-text::before {
        content: "البريد الالكتروني";
    }
    [data-option-id="1384816688"] .s-product-options-option-content::before,
     [data-option-id="1524823355"] .s-product-options-option-content::before,
     [data-option-id="767434032"] .s-product-options-option-content::before
    {
        color: #5dd5c4;
        content: "03. الملف الرياضي";
    }

    [data-option-id="1384816688"] .s-product-options-text::before {
        content: "نوع الرياضة";
    }

    [data-option-id="1494586822"] .s-product-options-text::before {
        content: "التركيز على";
    }


    [data-option-id="1655969210"] , [data-option-id="663602694"], [data-option-id="1231051570"] .s-product-options-option::before {
        content: "عدد ايام التمرين اسبوعيا";
    }

    .s-product-options-option-container[data-option-id="81777600"]::before,
    .s-product-options-option-container[data-option-id="1002598109"]::before, 
    .s-product-options-option-container[data-option-id="706110011"]::before {
        content: "04.القياسات الحيوية";
        color: #5dd5c4;
        margin-left: 5px;
    }

    [data-option-id="720549063"] {
        display: none;
    }


    /* ثالثاً: إخفاء النص عند الكتابة (لكي لا يتداخل مع نص المستخدم) */
    .s-product-options-text:focus-within::before,
    .s-product-options-text:has(input:not(:placeholder-shown))::before {
        opacity: 0;
        visibility: hidden;
    }

  ,
#option-2105798151 {
    display: block !important;
}

/* أو استهداف الليبل الذي يسبقه أو يليه مباشرة */
label[for="option-2105798151"] {
    display: block !important;
}


}

/* صفحة المنتج على الويب */

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: column !important;
    }
  .items-start {
    align-items: center !important;
}
}

@media (min-width: 640px) {
    .s-product-options-option {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
}

/* صفحة المنتج على الويب */






/* صفحة المنتج */