/* Add custom CSS styles below */ 
body , #mainnav {
    background:#f3efef;
}
.store-footer{
  background: linear-gradient(45deg, #151f19, #a5b472);
}
.store-footer__inner{
  background: transparent !important;
}
.store-footer *{
  color: #fff !important;
}

.s-user-menu-login-btn , .header-btn__icon{
  background: linear-gradient(45deg, #151f19, #a5b472);
  border: none;
  color: #fff;
  border-radius: 10px;
}
.s-user-menu-login-btn svg{
  fill: #fff;
}
.s-button-btn{
  background: linear-gradient(45deg, #151f19, #a5b472);
  border: none;
  color: #fff;
  border-radius: 30px !important;
}
/***********fixed banner*******/
#main-content > section:nth-child(2){
  margin-top: 0px !important;
}

.s-block--fixed-banner  .container {
  padding-left:0px !important ;
  padding-right:0px !important;
}
.banner--fixed img{
  border-radius: 0px !important;
}

.navbar-brand img {
    max-height: 4.5rem;
}
.slide--cat-entry{
    border: none;
    border-radius: 31px;
}
.s-block--bundle-announcement-marquee{
  margin-top: 0px !important;
}

/********* تصميم المنتج ********/
custom-salla-product-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    transition: all .4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    position: relative;
transition: .3S ;
}



/* الصورة */
.s-product-card-image {
    padding: 15px;
    background: linear-gradient(180deg,#fafafa,#fff);
}

.s-product-card-image-cover {
    border-radius: 16px;
    transition: all .5s ease;
}

custom-salla-product-card:hover .s-product-card-image-cover {
    transform: scale(1.06);
  transition: .3S ;
}

/* محتوى البطاقة */
.s-product-card-content {
    padding: 0 20px 20px;
}

/* عنوان المنتج */
.s-product-card-content-title a {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    line-height: 1.6;
    transition: .3s;
}

.s-product-card-content-title a:hover {
    color: var(--color-primary);
}

/* السعر */
.s-product-card-price {
    font-size: 24px !important;
    font-weight: 800;
    color: var(--color-primary);
    margin: 10px 0;
}

/* زر المفضلة */
.s-product-card-wishlist-btn {
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,.9) !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.s-product-card-wishlist-btn:hover {
    transform: scale(1.1);
}

/* زر إضافة للسلة */
.s-product-card-content-footer .s-button-element {
    border-radius: 14px !important;
    height: 50px;
    font-weight: 700;
    transition: .3s;
}

.s-product-card-content-footer .s-button-element:hover {
    transform: translateY(-2px);
}





/* قسم مميزات المتجر*************************** */
.s-block--features .grid {
    gap: 25px;
}

/* تصميم البطاقات */
.s-block--features__item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all .4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
    position: relative;
    overflow: hidden;
}

/* تأثير عند المرور */
.s-block--features__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

/* شريط علوي */
.s-block--features__item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
        var(--color-primary),
        #d4af37);
}

/* الأيقونات */
.feature-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        var(--color-primary),
        #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.feature-icon i {
    font-size: 32px;
    color: #fff;
}

/* العنوان  */
.s-block--features__item h2 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

/* الوصف */
.s-block--features__item p {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    margin: 0;
}

/* الجوال */
@media (max-width: 768px) {
    .s-block--features__item {
        padding: 25px 15px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
    }

    .feature-icon i {
        font-size: 28px;
    }
}

/************************uعنوان قسم المنتجات*****************/
/* الحاوية الرئيسية للعنوان */
.s-slider-block__title , .s-block__title{
    padding: 20px 25px;
    margin-bottom: 25px;
}

/* عنوان القسم */
.s-slider-block__title h2, .s-block__title h2 {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    position: relative;
    padding-right: 18px;
    margin: 0;
}

/* خط جانبي فاخر */
.s-slider-block__title h2::before , .s-block__title h2::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    border-radius: 30px;
    background: linear-gradient(
        180deg,
        var(--color-primary),
        #d4af37
    );
}

/* زر عرض الكل */
.s-slider-block__display-all {
    background: var(--color-primary);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s ease;
}

.s-slider-block__display-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* أزرار التنقل */
.s-slider-nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #eee !important;
    transition: all .3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,.06);
}

.s-slider-nav-arrow:hover {
    background: var(--color-primary) !important;
    transform: translateY(-3px);
}

.s-slider-nav-arrow:hover svg {
    fill: #fff;
}

.s-slider-nav-arrow svg {
    width: 18px;
    height: 18px;
    fill: #333;
    transition: .3s;
}

/* الجوال */
@media (max-width:768px) {
    .s-slider-block__title {
        padding: 15px;
    }

    .s-slider-block__title h2 {
        font-size: 19px;
    }

    .s-slider-block__display-all {
        padding: 8px 16px;
        font-size: 13px;
    }
}