/* تغيير خلفية التطبيق */
.app-inner.flex.flex-col.min-h-full {
    background: #F5F5F5 !important; /* خلفية بيضاء مائلة للرصاصي */
}

/* تغيير خلفية الشريط العلوي */
section.s-block.s-block--fixed-banner.wide-placeholder {
    background: #F5F5F5 !important; /* خلفية بيضاء مائلة للرصاصي */
} 

/* تغيير خلفية الصفحة العامة */
body {
    background-color: #F5F5F5 !important; /* خلفية بيضاء مائلة للرصاصي */
}

/* تعديلات على الأقسام الداخلية */
#app > div.app-inner.flex.flex-col.min-h-full > section:nth-child(3) > .container {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
}

/* تعديل خلفية السلايدر */
salla-slider#photos-0-slider {
    background-color: #F5F5F5; /* خلفية بيضاء مائلة للرصاصي */
}

/*************** تعديل اللوجو ***********/
.navbar-brand img {
    max-height: 3rem;
    width: auto;
    max-height: 55px; /* الحد الأقصى لحجم اللوجو */
}
.main-nav-container.fixed-pinned .navbar-brand img {
    max-height: 55px !important;
}

/* تعديل ألوان النصوص في قسم الميزات */
section.s-block.s-block--features.container .grid.grid-cols-\[repeat\(2\,minmax\(0\,1fr\)\)\].md\:grid-cols-\[repeat\(3\,minmax\(0\,1fr\)\)\].gap-4.sm\:gap-6.xl\:gap-8 .s-block--features__item h2 {
    color: #003366 !important; /* لون كحلي */
}
section.s-block.s-block--features.container .grid.grid-cols-\[repeat\(2\,minmax\(0\,1fr\)\)\].md\:grid-cols-\[repeat\(3\,minmax\(0\,1fr\)\)\].gap-4.sm\:gap-6.xl\:gap-8 .s-block--features__item p {
    color: #003366 !important; /* لون كحلي */
}

/* تغيير لون النصوص عند التمرير فوقها */
.s-product-card-content-title a:hover {
    color: #003366 !important; /* لون كحلي */
}

/******** تغيير ألوان عناصر القائمة الأساسية ********/
nav#mobile-menu .main-menu li.root-level > a {
    color: #003366; /* لون كحلي */
}
.s-slider-block__display-all {
    color: #003366 !important; /* لون كحلي */
}

/********** تغيير لون كلمة "تخفيضات" **********/
a.offers-link {
    color: red !important;
}

/* تعديل ألوان النصوص في الصفحة */
h1.font-bold.text-2xl.mb-6 {
    color: #003366 !important; /* لون كحلي */
}

/* تخصيص بطاقات المنتج */
.s-product-card-vertical {
  border: 3px solid #003366; /* إطار بلون كحلي */
  box-shadow: none; /* إزالة الظل */
}

/* تعديل ألوان النصوص في السلايدر */
.s-search-icon svg {
    fill: #003366; /* لون كحلي */
}

/* تعديل ألوان النصوص في قسم الميزات */
.s-block--features__item .feature-icon i.sicon-badge:before,
.s-block--features__item .feature-icon i.sicon-ship:before,
.s-block--features__item .feature-icon i.sicon-man-fancy:before {
    filter: invert(17%) sepia(91%) saturate(3436%) hue-rotate(213deg) brightness(96%) contrast(103%); /* لون كحلي */
}

/* تعديل ألوان الروابط الاجتماعية */
.store-footer .contact-social ul li:first-child a {
    background: #cc38a5;
    color: #fff;
}
.store-footer .contact-social ul li:nth-child(2) a {
    background: #5098fd;
    color: #fff;
}
.store-footer .contact-social ul li:nth-child(3) a {
    background: #d8c837;
    color: #fff;
}
.store-footer .contact-social ul li:nth-child(4) a {
    background: #333;
    color: #fff;
}
.store-footer .contact-social ul li:nth-child(5) a {
    background: #F50000;
    color: #fff;
}
.store-footer .contact-social ul li:nth-child(6) a {
    background: #0084ff;
    color: #fff;
}

/* تعديل زر الشراء */
.s-button-wide {
    font-size: 1.15rem;
    color: #fff;
    text-align: center;
    box-shadow: RGB(200, 255, 255) 0px 50px 100px -20px, rgb(200, 255, 255 / 30%) 0px 30px 60px -30px;
    background: linear-gradient(45deg, #003366, #004080, #003366, #004080); /* لون كحلي متدرج */
    background-size: 150%;
    animation: glowing 20s linear infinite;
    opacity: 1;
    transition: opacity .3s ease-in-out;
}