/* ✅ جعل الخلفية تغطي كامل الصفحة */
html, body {
    height: 100% !important; /* تغطية الارتفاع بالكامل */
    width: 100% !important;  /* تغطية العرض بالكامل */
    margin: 0 !important;
    padding: 0 !important;
    background-image: url('https://e.top4top.io/p_33638yphn1.png'); /* رابط الصورة */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: repeat !important;
    background-attachment: cover !important; /* يثبت الخلفية عند التمرير */
}

/* ✅ التأكد من أن جميع الأقسام شفافة لتظهر الخلفية */
.container, .main-container, .inner, .store-footer, .s-block, .s-products-list-wrapper {
    background: transparent !important; /* جعل الخلفية شفافة */
}


/* تحسين صورة الشعار */
.navbar-brand img {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

/* تأثير النبض لشعار الموقع */
.navbar-brand {
    animation: heartbeat 2.5s ease-in-out infinite both;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    10% { transform: scale(0.92); }
    20% { transform: scale(0.97); }
    30% { transform: scale(0.90); }
    40% { transform: scale(1); }
}

/* تحسين تصميم الروابط */
.navbar a {
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover {
    color: #fffff;
}

/* جعل القائمة متجاوبة على الهواتف */
.navbar-menu {
    display: flex;
    gap: 15px;
}

/* تحسين زر القائمة للهاتف */
.navbar-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* تحسين توافق القائمة مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        padding: 10px;
        text-align: center;
    }

    .navbar-menu a {
        display: white;
        padding: 10px;
    }

    .navbar-toggle {
        display: block;
    }
}

/* إعدادات البطاقات */
.s-product-card-vertical {
    flex-direction: column;
    border-radius: 30px;
    border: none;
    box-shadow: 2px 2px 8px #717171;
    transition: transform 0.3s ease-in-out;
}

.s-product-card-vertical:hover {
    transform: scale(1.05); /* تكبير بسيط عند التمرير */
}

/* تحسين نصوص البطاقات */
.s-product-card-content-title a {
    font-size: 17px;
    line-height: 1.25rem;
    font-weight: 500;
    color: #5a5a5a;
    transition: color 0.3s ease-in-out;
}

.s-product-card-content-title a:hover {
    color: #3a1176;
}

.s-product-card-content-subtitle {
    font-size: 15px;
    color: #777;
}

.s-product-card-promotion-title {
    background-color: var(--color-primary-reverse) !important;
    padding: 2px 8px !important;
    border-radius: 8px;
    font-weight: bold;
}

/* تحسين الروابط في الفوتر */
.footer-is-light .store-footer a {
    color: white;
    transition: color 0.3s ease-in-out;
}

.footer-is-light .store-footer a:hover {
    color: #FFA500;
}

/* تحسين مظهر البطاقة عند التمرير */
custom-salla-product-card:hover {
    box-shadow: inset 0 0 0 3px #ffcc00, 0 4px 12px rgba(0, 0, 0, 0.15) !important; /* يتحول اللون إلى برتقالي مع ظل */
    transform: scale(1.00); /* تأثير تكبير بسيط */
}

/* الحفاظ على تناسق الصور */
.s-product-card-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* تحسين مظهر اسم المنتج */
.s-product-card-content-title a {
    font-size: 18px;
    font-weight: bold;
    color: #000 !important;
    text-decoration: none;
}

/* تحسين عرض السعر */
.s-product-card-price {
    font-size: 20px;
    font-weight: bold;
    color: #e60023 !important; /* لون السعر الأحمر */
}



/* ✅ تأثير القلب النابض على زر "إضافة للسلة" */
.s-button-element {
  
    transition: transform 0.3s ease-in-out;
}

/* ✅ تعريف حركة النبض */
@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.05); }
    50% { transform: scale(1); }
    75% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* عند تمرير الماوس، يصبح النبض أسرع */
.s-button-element:hover {
    animation: heartbeat 0.8s infinite ease-in-out;
}


/* ✅ تحسين مظهر الفوتر بالكامل */
.store-footer {
    background: linear-gradient(to bottom, #1a1a1a, #000000) !important; /* تدرج لوني أنيق */
    padding: 40px 0 !important;
    text-align: center !important;
    color: #ffffff !important;
    border-top: 3px solid #ffcc00 !important; /* خط علوي بلون مميز */
    font-family: "Tajawal", sans-serif !important;
}

/* ✅ تحسين توزيع المحتوى داخل الفوتر */
.store-footer__inner {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* ✅ تحسين مظهر العناوين */
.store-footer h3 {
    font-size: 18px !important;
    font-weight: bold !important;
    margin-bottom: 15px !important;
    color: #ffcc00 !important; /* لون مميز */
}

/* ✅ تحسين النصوص والوصف */
.store-footer p, 
.store-footer a {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #d4d4d4 !important;
    transition: all 0.3s ease-in-out !important;
}

.store-footer a:hover {
    color: #ffcc00 !important; /* لون مميز عند التمرير */
}

/* ✅ تحسين أيقونات التواصل الاجتماعي */
.s-social-list .s-social-link a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease-in-out !important;
}

.s-social-list .s-social-link a:hover {
    background-color: #ffcc00 !important;
    transform: scale(1.1) !important;
}

/* ✅ تحسين روابط الفوتر */
.s-menu-footer-item {
    font-size: 14px !important;
    color: #FFFFF !important;
    transition: color 0.3s ease-in-out !important;
}

.s-menu-footer-item:hover {
    color: #000 !important; /* لون مميز عند التمرير */
}

/* ✅ تحسين أيقونات التواصل */
.s-contacts-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out !important;
}

.s-contacts-item:hover {
    color: #ffcc00 !important;
    transform: scale(1.05) !important;
}

/* ✅ تحسين قسم وسائل الدفع */
.s-payments-list {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    margin-top: 20px !important;
}

.s-payments-list img {
    width: 50px !important;
    height: auto !important;
    filter: grayscale(20%) brightness(1.2) !important; /* تحسين التباين */
    transition: all 0.3s ease-in-out !important;
}

.s-payments-list img:hover {
    filter: grayscale(0%) brightness(1.5) !important;
    transform: scale(1.1) !important;
}

/* ✅ تحسين عبارة "صنع بإتقان على منصة سلة" */
.copyright-text {
    color: black !important;
    font-size: 14px !important;
    font-weight: bold !important;
    padding-top: 15px !important;
}

/* ✅ إزالة المساحة الإضافية */
body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh !important;
    overflow-x: hidden !important;
}

/* ✅ التأكد من عدم وجود عناصر إضافية فارغة */
.store-footer + div {
    display: none !important;
}

/* ✅ تحسين الفوتر للأجهزة الصغيرة */
@media (max-width: 768px) {
    .store-footer__inner {
        flex-direction: column !important;
        text-align: center !important;
    }

    .s-social-list {
        justify-content: center !important;
    }

    .s-contacts-list {
        justify-content: center !important;
    }
}


}

/* ✅ توسيط معلومات التواصل */
.s-contacts-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.s-contacts-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}

/* ✅ تحسين مظهر الهيدر ليطابق الفوتر */
.inner {
    background: linear-gradient(to bottom, #1a1a1a, #000000) !important; /* تدرج أسود أنيق */
    padding: 5px 25px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important; /* لضمان ظهوره فوق المحتوى */
    backdrop-filter: blur(10px) !important; /* تأثير زجاجي */
    -webkit-backdrop-filter: blur(10px) !important; /* دعم Safari */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2) !important; /* ظل خفيف */
    border-bottom: 2px solid #000 !important; /* خط سفلي اسود*/
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* ✅ تحسين صورة الشعار */
.navbar-brand img {
    width: 150px !important;
    height: auto !important;
    transition: transform 0.3s ease-in-out !important;
}

.navbar-brand:hover img {
    transform: scale(1.1) !important;
}

/* ✅ تحسين روابط الهيدر */
.navbar a {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #ffffff !important; /* نص أبيض */
    text-decoration: none !important;
    margin-right: 20px !important;
    transition: color 0.3s ease-in-out !important;
}

.navbar a:hover {
    color: #ffcc00 !important; /* لون ذهبي عند التمرير */
}

/* ✅ تحسين الأيقونات في الهيدر */
.navbar .header-btn i {
    font-size: 20px !important;
    color: #ffffff !important;
    transition: all 0.3s ease-in-out !important;
}

.navbar .header-btn i:hover {
    color: #ffcc00 !important;
    transform: scale(1.1) !important;
}

/* ✅ تحسين زر القائمة (للأجهزة الصغيرة) */
.navbar-toggle {
    display: none;
    font-size: 24px !important;
    cursor: pointer;
    color: white !important;
    background: none !important;
    border: none !important;
}

/* ✅ تحسين القائمة عند الأجهزة الصغيرة */
@media (max-width: 768px) {
    .navbar-menu {
        display: none !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 60px !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(0, 0, 0, 0.9) !important;
        padding: 15px !important;
        text-align: center !important;
        transition: all 0.3s ease-in-out !important;
    }

    .navbar-menu a {
        display: block !important;
        padding: 10px !important;
    }

    .navbar-toggle {
        display: block !important;
    }

    /* ✅ إظهار القائمة عند الضغط */
    .navbar-menu.active {
        display: flex !important;
    }
}


/* ✅ جعل جميع النصوص في الهيدر باللون الأبيض */
.inner, 
.inner a, 
.navbar a, 
.navbar-brand, 
.navbar .header-btn i, 
.navbar .s-cart-summary-icon, 
.navbar .sicon-user-circle, 
.navbar .s-cart-summary-count, 
.navbar .s-cart-summary-total, 
.navbar .s-menu-footer-item, 
.navbar .s-menu-footer-item a {
    color: #ffffff !important; /* اللون الأبيض */
    fill: #ffffff !important; /* للأيقونات */
}

/* ✅ تحسين ظهور الروابط عند التمرير */
.navbar a:hover, 
.navbar .header-btn i:hover {
    color: #ffcc00 !important; /* اللون الذهبي عند التمرير */
    fill: #ffcc00 !important;
}

/* ✅ التأكد من أن الأيقونات مرئية */
.navbar .header-btn i, 
.navbar .s-cart-summary-icon, 
.navbar .sicon-user-circle {
    filter: brightness(100%) !important; /* يضمن بقاء الأيقونات باللون الأبيض */
}

/* ✅ التأكد من ظهور نصوص القائمة */
.navbar-menu a {
    color: #000 !important;
}

/* ✅ دعم الأجهزة الصغيرة */
@media (max-width: 768px) {
    .navbar a, 
    .navbar .header-btn i, 
    .s-cart-summary-icon, 
    .sicon-user-circle {
        color: #ffffff !important;
        fill: #ffffff !important;
    }
}


/* ✅ تغيير لون العدد بجوار أيقونة السلة */
.s-cart-summary-count {
    background-color: #FFFFF !important; /* لون الخلفية ذهبي */
    color: #FFFFF !important; /* اللون أسود */
    font-weight: bold !important; /* جعل النص سميك */
    padding: 4px 8px !important; /* تحسين المساحة الداخلية */
    border-radius: 12px !important; /* جعل الحواف دائرية */
    font-size: 14px !important; /* حجم النص */
}

/* ✅ تغيير لون إجمالي السعر بجوار أيقونة السلة */
.s-cart-summary-total {
    color: #FFFFF !important; /* اللون الذهبي */
    font-weight: bold !important; /* جعل النص سميك */
    font-size: 16px !important; /* حجم النص */
}

/* ✅ جعل أيقونة السلة باللون الذهبي */
.sicon-shopping-bag {
    color: #FFFFF !important; /* اللون الذهبي */
    fill: #FFFFF !important; /* دعم SVG */
    font-size: 22px !important; /* تحسين الحجم */
    transition: color 0.3s ease-in-out !important;
}

/* ✅ عند التمرير، تصبح بيضاء */
.sicon-shopping-bag:hover {
    color: #ffffff !important; /* اللون الأبيض عند التمرير */
    fill: #ffffff !important;
}
/* ✅ جعل أيقونة المستخدم باللون الذهبي */
.sicon-user-circle {
    color: #fffff !important; /* اللون الذهبي */
    fill: #FFFFF !important; /* دعم SVG */
    font-size: 22px !important; /* تحسين الحجم */
    transition: color 0.3s ease-in-out !important;
}

/* ✅ عند التمرير، تصبح بيضاء */
.sicon-user-circle:hover {
    color: #ffffff !important; /* اللون الأبيض عند التمرير */
    fill: #ffffff !important;
}




/* ✅ عند التمرير يصبح اللون ذهبي */
.main-menu li a:hover span {
    color: #000 !important; /* اللون الذهبي عند التمرير */
}

/* ✅ جعل النص يتحرك بشكل "تجوال" عند التمرير */
@keyframes textScroll {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

/* ✅ تطبيق التأثير على التصنيفات */
.main-menu li a span:hover {
    animation: textScroll 0.6s ease-in-out infinite;
}


/* ✅ جعل أيقونة التوصيل باللون الذهبي */
.s-block--features__item .feature-icon i {
    color: #fffff !important; /* اللون الذهبي */
    font-size: 28px !important; /* تكبير حجم الأيقونة */
    transition: color 0.3s ease-in-out !important;
}

/* ✅ عند التمرير يصبح اللون أكثر إشراقًا */
.s-block--features__item:hover .feature-icon i {
    color: #ffd700 !important; /* لون ذهبي أكثر إشراقًا عند التمرير */
}

/* ✅ تقليل ارتفاع الهيدر */
#mainnav {
    height: 0px !important; /* تصغير ارتفاع الهيدر */
}


/* ✅ تغيير لون أيقونة القائمة إلى الذهبي */
.sicon-menu {
    color: #ffcc00 !important; /* اللون الذهبي */
    fill: #ffcc00 !important;  /* دعم SVG */
}

/* ✅ عند تمرير الماوس، يصبح لونها أبيض */
.sicon-menu:hover {
    color: #ffffff !important; /* اللون الأبيض عند التمرير */
    fill: #ffffff !important;
}


/* ✅ جعل الفوتر شفاف بالكامل */
.store-footer {
    background: rgba(0, 0, 0, 0.5) !important; /* شفافية بنسبة 50% */
    backdrop-filter: blur(8px) !important; /* تأثير زجاجي ناعم */
    -webkit-backdrop-filter: blur(8px) !important; /* دعم لمتصفح Safari */
    padding: 40px 0 !important;
    text-align: center !important;
    color: #ffffff !important;
    border-top: 3px solid #fff !important; /* خط علوي ذهبي */
    font-family: "Tajawal", sans-serif !important;
}

/* ✅ جعل خلفية محتوى الفوتر شفافة */
.store-footer__inner {
    background: transparent !important;
}

/* ✅ جعل النصوص والأيقونات بيضاء */
.store-footer h3,
.store-footer p,
.store-footer a,
.s-menu-footer-item {
    color: #ffffff !important;
    transition: color 0.3s ease-in-out !important;
}

/* ✅ تحويل الروابط إلى اللون الذهبي عند التمرير */
.store-footer a:hover,
.s-menu-footer-item:hover {
    color: #ffcc00 !important; /* لون ذهبي */
}

/* ✅ جعل أيقونات وسائل التواصل شفافة */
.s-social-list .s-social-link a {
    background-color: rgba(255, 255, 255, 0.1) !important; /* خلفية شفافة */
    transition: all 0.3s ease-in-out !important;
}

/* ✅ عند التمرير تصبح الأيقونات ذهبية */
.s-social-list .s-social-link a:hover {
    background-color: #ffcc00 !important;
    transform: scale(1.1) !important;
}

/* ✅ جعل وسائل الدفع شفافة */
.s-payments-list {
    background: transparent !important;
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
}

/* ✅ جعل أيقونات الدفع أكثر وضوحًا */
.s-payments-list img {
    filter: brightness(120%) contrast(110%) !important;
    transition: all 0.3s ease-in-out !important;
}

.s-payments-list img:hover {
    transform: scale(1.1) !important;
}

/* ✅ تحسين ظهور عبارة "صنع بإتقان على منصة سلة" */
.copyright-text {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: bold !important;
}

/* ✅ دعم الأجهزة الصغيرة */
@media (max-width: 768px) {
    .store-footer__inner {
        flex-direction: column !important;
        text-align: center !important;
    }

    .s-social-list {
        justify-content: center !important;
    }

    .s-contacts-list {
        justify-content: center !important;
    }
}


/* ✅ جعل خلفية عنصر الميزات شفافة جزئياً */
.s-block--features__item {
    background: rgba(0, 0, 0, 0.4) !important; /* شفافية بنسبة 40% */
    backdrop-filter: blur(6px) !important; /* تأثير زجاجي ناعم */
    -webkit-backdrop-filter: blur(6px) !important; /* دعم لمتصفح Safari */
    padding: 20px !important;
    border-radius: 15px !important; /* جعل الحواف دائرية */
    text-align: center !important;
    transition: all 0.3s ease-in-out !important;
}

/* ✅ تحسين النصوص لتكون واضحة */
.s-block--features__item h2,
.s-block--features__item p {
    color: #ffffff !important; /* جعل النصوص بيضاء */
}

/* ✅ جعل الأيقونات ذهبية */
.s-block--features__item .feature-icon i {
    color: #FFFFF !important; /* لون ذهبي */
    font-size: 32px !important;
    transition: all 0.3s ease-in-out !important;
}

/* ✅ عند التمرير يصبح العنصر أكثر وضوحًا */
.s-block--features__item:hover {
    background: rgba(0, 0, 0, 0.6) !important; /* تقليل الشفافية قليلاً */
    transform: scale(1.05) !important; /* تكبير بسيط */
}

/* ✅ عند تمرير الماوس تصبح الأيقونة أكبر */
.s-block--features__item:hover .feature-icon i {
    transform: scale(1.2) !important;
}


/* ✅ جعل الهيدر شفافًا أو مطابقًا للفوتر */
#mainnav {
    background: transparent !important; /* إزالة الخلفية البيضاء */
    backdrop-filter: blur(10px) !important; /* تأثير زجاجي */
    -webkit-backdrop-filter: blur(10px) !important; /* دعم لمتصفح Safari */
    box-shadow: none !important; /* إزالة الظل */
    border-bottom: 3px solid #000 !important; /* خط سفلي ذهبي مثل الفوتر */
}
  border-bottom: none !important; /* إزالة الحد السفلي الذهبي */
/* ✅ إزالة أي بقايا خلفية بيضاء من المحتوى الداخلي */
.inner {
    background: transparent !important;
}

/* ✅ تحسين لون الروابط والنصوص في الهيدر */
.navbar a,
.navbar-brand,
.navbar .header-btn i,
.navbar .s-cart-summary-icon,
.navbar .sicon-user-circle,
.navbar .s-cart-summary-count,
.navbar .s-cart-summary-total {
    color: #ffffff !important; /* جعل النصوص والأيقونات بيضاء */
}

/* ✅ عند تمرير الماوس على العناصر، تصبح ذهبية */
.navbar a:hover,
.navbar .header-btn i:hover,
.navbar .s-cart-summary-icon:hover,
.navbar .sicon-user-circle:hover {
    color: #ffcc00 !important; /* تغيير اللون عند التمرير */
}

/* ✅ إزالة أي فراغات غير ضرورية داخل الهيدر */
#mainnav .container {
    padding: 0px !important;
    margin: 0 auto !important;
    width: 100% !important;
}


img.w-full.object-contain.rounded-md {
    opacity: 0.8 !important; /* تعديل نسبة الشفافية (يمكنك ضبطها بين 0.5 و 1 حسب الحاجة) */
    transition: opacity 0.3s ease-in-out; /* تأثير سلس عند التغيير */
}

/* ✅ عند تمرير الماوس، تعود الشفافية لوضعها الطبيعي */
img.w-full.object-contain.rounded-md:hover {
    opacity: 1 !important; /* الصورة تعود إلى وضعها الطبيعي عند التمرير */
}


.s-menu-topnav-item.topnav-link-item {
    color: #fffff !important; /* اللون الذهبي */
    font-weight: bold !important; /* جعل النص أكثر سمكًا */
    transition: color 0.3s ease-in-out; /* تأثير سلس عند التغيير */
}

/* ✅ عند تمرير الماوس فوق النص، يصبح أكثر إشراقًا */
.s-menu-topnav-item.topnav-link-item:hover {
    color: #ffd700 !important; /* درجة ذهبية أفتح عند التمرير */
}



#page-main-title {
    color: #fff !important; /* اللون الذهبي */
    font-weight: bold !important; /* جعل النص أكثر سمكًا */
    transition: color 0.3s ease-in-out; /* تأثير سلس عند التغيير */
}

/* ✅ عند تمرير الماوس فوق العنوان، يصبح أكثر إشراقًا */
#page-main-title:hover {
    color: #ffd700 !important; /* درجة ذهبية أفتح عند التمرير */
}


/* ✅ جعل عنوان القسم باللون الذهبي */
.s-block__title h2 {
    color: #fff !important; /* اللون الذهبي */
    font-weight: bold !important; /* جعل النص سميك */
    transition: color 0.3s ease-in-out; /* تأثير سلس عند التغيير */
}

/* ✅ جعل زر "عرض الكل" باللون الذهبي */
.s-block__display-all {
    color: #fff !important; /* اللون الذهبي */
    font-weight: bold !important; /* جعل النص سميك */
    transition: color 0.3s ease-in-out; /* تأثير سلس */
}

/* ✅ تغيير لون السهم أيضًا */
.s-block__display-all i {
    color: #fff !important;
}

/* ✅ عند تمرير الماوس، يصبح اللون أكثر إشراقًا */
.s-block__title h2:hover, 
.s-block__display-all:hover,
.s-block__display-all i:hover {
    color: #ffd700 !important; /* درجة ذهبية أفتح عند التمرير */
}

.s-products-list-wrapper {
    display: flex !important;
    justify-content: center !important; /* توسيط أفقي */
    align-items: center !important; /* توسيط عمودي */
    flex-wrap: wrap !important;
    text-align: center !important; /* محاذاة النصوص للوسط */
}

.s-product-card-entry {
    margin: 15px !important; /* إضافة تباعد بين البطاقات */
    max-width: 300px !important; /* تحديد الحد الأقصى لحجم البطاقة */
}



/* جعل الخلفية شفافة بيضاء */
.main-content {
    background: rgba(255, 255, 255, 0.6) !important; /* شفافية 60% */
    backdrop-filter: blur(10px); /* تأثير ضبابي خفيف */
    border-radius: 10px; /* زوايا دائرية */
    padding: 20px !important;
}

/* تحسين العناوين داخل الصفحة */
.main-content h1, 
.main-content h2, 
.main-content h3, 
.main-content p {
    color: #333 !important; /* لون نص غامق */
}

/* تحسين حدود العناصر داخل الصفحة */
.main-content .product__description {
    background: rgba(255, 255, 255, 0.4) !important; /* شفافية 40% */
    border-radius: 8px;
    padding: 15px;
}

/* تحسين شكل أزرار السلة والشراء */
.s-button-element.s-button-btn.s-button-solid.s-button-primary {
    background: rgba(255, 204, 0, 0.8) !important; /* لون ذهبي شفاف */
    border: none !important;
    color: black !important;
    font-weight: bold !important;
}

/* تحسين مظهر المربعات */
.bg-white {
    background: rgba(255, 255, 255, 0.7) !important; /* شفافية 70% */
    border-radius: 10px;
    padding: 15px;
}


/* إزالة الحد الكبير الذي يمتد بعرض الصفحة */
.s-comments-product {
    border: none !important;
    background: transparent !important; /* إزالة الخلفية الافتراضية */
}

/* تصميم صندوق التعليقات بخلفية غامقة وحدود ذهبية */
.s-comments-container {
    background: rgba(255, 255, 255, 0.6) !important; /* خلفية غامقة */
    border: 1px solid white !important; /* حدود بيضاء */
    border-radius: 10px !important; /* زوايا ناعمة */
    padding: 15px !important; /* تباعد داخلي */
    backdrop-filter: blur(6px); /* تأثير ضبابي */
}

/* تحسين مربع إدخال التعليق */
.s-comment-form-input {
    background: rgba(255, 255, 255, 0.1) !important; /* خلفية داكنة شفافة */
    border: 1px solid white !important; /* حدود ذهبية */
    color: BLACK !important; /* لون الخط أبيض */
    padding: 12px !important;
    border-radius: 8px !important; /* زوايا ناعمة */
}

/* تحسين زر الإرسال */
.s-button-element.s-button-btn.s-button-solid.s-button-primary {
    background: black !important;
    border: 1px solid white !important;
    color: white !important;
    font-weight: bold !important;
    transition: 0.3s ease-in-out;
}

/* تأثير عند تمرير الماوس على زر الإرسال */
.s-button-element.s-button-btn.s-button-solid.s-button-primary:hover {
    background: gold !important;
    color: black !important;
}


/* جعل عنوان "منتجات قد تعجبك" باللون الذهبي */
.s-slider-block__title h2 {
    color: white !important;
    font-weight: bold !important;
}

/* جعل أزرار التنقل باللون الذهبي */
.s-slider-button-icon svg path {
    fill: black !important;
}

/* تحسين لون النصوص داخل السلايدر */
.s-slider-block__title-right, 
.s-slider-block__title-left {
    color: gold !important;
}

/* شاشة الافتتاح */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #FFFFF; /* خلفية داكنة */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-in-out;
}

/* محتوى الشاشة */
#splash-screen::before {
    content: "";
    background-image: url('https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/VBAwx/8pIrxRsq0PMJJJYqPaAfg0uZFUSMIBirX9yBN3fa.png'); /* استبدل بالرابط الفعلي لشعار متجرك */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 150px;
    height: 150px;
}

/* نص الترحيب */
#splash-screen::after {
    content: "مرحباً بك في مجازف";
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-top: 180px;
    position: absolute;
}

/* إخفاء الشاشة بعد التحميل */
.hide-splash {
    opacity: 0;
    pointer-events: none;
}


/* تحسين عرض بطاقة المنتجات لتظهر بشكل كامل */
.s-product-card-entry {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* يجعل البطاقة تأخذ العرض بالكامل */
    max-width: 300px; /* تحديد الحد الأقصى للعرض */
    min-height: 450px; /* منع تقصير البطاقات */
    padding: 15px;
    background: #fff; /* خلفية بيضاء */
    border-radius: 10px; /* زوايا دائرية */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* إضافة ظل خفيف */
    transition: all 0.3s ease-in-out;
}

/* تكبير الصورة داخل البطاقة بدون اقتصاص */
.s-product-card-image img {
    width: 100%;
    height: auto; /* يجعل الصورة تتناسب مع البطاقة */
    max-height: 254px; /* منع تمدد الصورة أكثر من اللازم */
    object-fit: contain; /* يمنع اقتصاص الصورة */
    border-radius: 10px;
}

/* تحسين النصوص داخل البطاقة */
.s-product-card-content {
    text-align: center;
    padding: 10px;
    width: 100%;
}

/* تكبير اسم المنتج */
.s-product-card-content-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* تحسين وصف المنتج */
.s-product-card-content-subtitle {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

/* تحسين سعر المنتج */
.s-product-card-price {
    font-size: 20px;
    font-weight: bold;
    color: #d4a017; /* لون ذهبي */
}

/* تحسين زر الشراء */
.s-button-element {
    width: 100%;
    max-width: 250px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    background: #000; /* لون ذهبي */
    color: white;
    border-radius: 8px;
    transition: background 0.3s;
}

/* تأثير عند تمرير الماوس */
.s-product-card-entry:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}



/* إزالة خلفية البانر */
img[src*="qL5a5tDBrShdcRsXSOgL6Y7fHndah3ggaeQhlaTY.png"] {
    background: transparent !important;
}

/* إزالة أي لون خلفية حول الصورة */
.s-banner {
    background: none !important;
}

/* إزالة أي حدود أو تأثيرات خلفية */
.s-banner img {
    border: none !important;
    box-shadow: none !important;
}


/* إزالة خلفية البانر */
img[src*="PhRSfWCNRjTdPDv6KGDAXXgnsoKCAQzMDr4sI2fF.png"] {
    background: transparent !important;
}

/* إزالة أي لون خلفية حول الصورة */
.s-banner {
    background: none !important;
}

/* إزالة أي حدود أو تأثيرات خلفية */
.s-banner img {
    border: none !important;
    box-shadow: none !important;
}


.s-product-card-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important; /* يجعل الصورة تغطي المساحة بدون فقدان التناسق */
    display: block !important;
}

.s-product-card-image {
    max-height: 100% !important;
    padding-bottom: 0 !important; /* يقلل الفراغ بين الصورة والمحتوى أسفلها */
    margin-bottom: 0 !important;
}


@media (max-width: 768px) { /* تنطبق هذه التعديلات فقط على شاشات الهواتف */
    .s-product-card-image {
        height: auto !important;
        max-height: 100% !important;
        padding-bottom: 0 !important;
    }

    .s-product-card-image img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important; /* يجعل الصورة تملأ المساحة بشكل متناسق */
        display: block !important;
    }

    .s-product-card {
        padding: 10px !important; /* تقليل الهوامش لجعل الصورة أكبر */
        max-width: 100% !important; /* يضمن تناسب البطاقة مع شاشة الجوال */
    }

    .s-product-card .s-product-card-content {
        padding-top: 10px !important; /* يقلل الفراغ بين الصورة والمحتوى */
    }
}


/* تطبيق التعديلات فقط على الشاشات الصغيرة (الهواتف) */
@media (max-width: 768px) {
    /* جعل خلفية القائمة سوداء */
    .main-menu {
        background-color: #fffff !important;
        padding: 10px;
        border-radius: 10px;
    }

    /* جعل النصوص ذهبية */
    .main-menu a span {
        color: #000 !important; /* اللون الذهبي */
        font-weight: bold;
        font-size: 16px; /* تكبير النص قليلاً للهواتف */
    }

    /* تغيير اللون عند التمرير */
    .main-menu a:hover span {
        color: #000 !important; /* ذهبي فاتح عند التمرير */
    }

    /* تعديل تصميم القائمة لتناسب الهواتف */
    .main-menu li {
        border-bottom: 1px solid #000 !important; /* خط فاصل ذهبي بين العناصر */
        padding: 12px 0;
        text-align: center; /* جعل النصوص في المنتصف */
    }

    /* تكبير حجم الروابط */
    .main-menu a {
        display: block;
        padding: 10px;
        text-align: center;
    }
}


/* تطبيق التعديلات فقط على الهواتف */
@media (max-width: 768px) {
    body {
        background-color: #fffff !important; /* جعل الخلفية سوداء */
        background-image: url('https://e.top4top.io/p_33638yphn1.png'); /* استبدل برابط الخلفية التي تريدها */
        background-size: contain; /* تغطية كاملة للشاشة */
        background-position: center; /* جعل الخلفية متوسطة */
        background-attachment: fixed; /* تثبيت الخلفية عند التمرير */
    }

    /* تحسين عرض المحتوى على الهواتف */
    .container, .main-content {
        max-width: 100% !important;
        margin: 0 auto;
        padding: 10px;
    }

    /* إذا كنت تريد إضافة شفافية */
    .main-content {
        background: rgba(0, 0, 0, 0.8); /* خلفية شفافة سوداء بنسبة 80% */
        border-radius: 10px;
        padding: 15px;
    }
}


/* جعل الهيدر شفاف بدون خلفية */
.inner.bg-inherit {
    background: #fff !important;
    box-shadow: none !important; /* إزالة الظل */
}

/* التأكد من أن الأيقونات والنصوص تبقى مرئية */
.inner .sicon-menu,
.inner .navbar-brand img,
.inner .header-btn__icon,
.inner .s-cart-summary-icon {
    color: black !important; /* تعديل لون الأيقونات */
}

/* تعديل لون النصوص لضمان وضوحها */
.inner a,
.inner h1 {
    color: black !important;
}

/* ✅ تكبير خط التصنيفات */
.main-menu li a span {
    font-size: 18px !important; /* تكبير حجم النص */
    font-weight: bold !important; /* جعل الخط سميك */
    color: black !important; /* اللون الأبيض */
    text-transform: uppercase !important; /* تحويل النص إلى أحرف كبيرة */
    transition: color 0.3s ease-in-out !important;
}