body {
      /*background: linear-gradient(135deg, #b4a96a, #c6a97b, #b4a96a);
*/
    background: #fff;  
    color: #333; 
    background-attachment: fixed;
    animation: backgroundMove 10s infinite alternate ease-in-out;
    color: #333;
}


@keyframes backgroundMove {
    0% {
        background-position: left;
    }
    100% {
        background-position: right;
    }
}

/*----------------- Header Menu -----------------*/

/* قائمة الـ Menu */
.main-menu li {
    padding: 10px 15px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1em;
    position: relative;
    transition: color 0.3s ease-in-out;
    overflow: hidden;
}

.main-menu li::after {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    top: 50%;
    left: 50%;
    background: rgba(168, 160, 123, 0.3); /* لون شفاف بسيط */
    border-radius: 50%; /* الشكل الدائري */
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    z-index: -1;
    opacity: 0.8;
}


.main-menu li:hover::after {
    transform: translate(-50%, -50%) scale(1); /* تكبير الشكل ليصبح دائري */
    opacity: 1;
    background: #c6a97b; /* نفس اللون الذي نستخدمه في الأزرار عند التمرير */
}



/*----------------- Store Footer -----------------*/
.store-footer {
    background: #b4a96a;
    padding: 20px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1em;
}


/*----------------- Responsive Design -----------------*/
@media (max-width: 768px) {
    .s-cart-summary-content {
        display: none;
    }
    .main-menu {
        flex-direction: column;
        text-align: center;
    }
    
        
    .main-menu li:hover {
        color: #fff;
        background: #c4aa79;
  }
}

/* button */


.s-button-element {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 2px solid #a7a07a;
    color: #a7a07a;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.s-button-element::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: #c6a97b;
    transition: all 0.3s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.s-button-element:hover::before {
    width: 0;
    height: 0;
    opacity: 1;
}

.s-button-element:hover {
    color: #fff;
    background: #a8a07b;
    border-color: #c6a97b;
}

.s-button-text {
    position: relative;
    z-index: 2;
}
#shadow-root{
  background: red;
}

/* ----------- nav bar ----------- */
/*.s-search-modal {
    max-width: 350px;
    margin-right: 20px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}*/


.top-navbar .s-search-input{
  background: white;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.s-menu-topnav-list{
  color:white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


/* إخفاء الإيميل */
.s-contacts-topnav-link {
    display: none;
}

/*----------------*/
.s-block--tabs-produtcs .tab-trigger.is-active button {
    background-color: transparent; /* الخلفية فارغة */
    border: 2px solid #a8a07b; /* اللون الذي طلبته للحدود */
    color: #a8a07b; /* اللون للنص */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.s-block--tabs-produtcs .tab-trigger.is-active button {
    background-color: #a8a07b; /* تغيير الخلفية عند التمرير */
    color: white; /* تغيير لون النص عند التمرير */
}



/*---  logo  -------*/

.navbar-brand{
    width: auto;
    height: 6rem;
}

.navbar-brand img{
    max-height: 5rem
}
.main-nav-container.fixed-pinned .navbar-brand img {
    
    width: 100%;
    max-height: 5rem;
}


[class^=sicon-], [class*=" sicon-"] {
  color:#c4aa79;
}


/*----------------- Header -----------------*/
header {
    background: linear-gradient(135deg, #b4a96a, #c6a97b, #b4a96a);
    background-attachment: fixed;
    animation: backgroundMove 10s infinite alternate ease-in-out;
}

/*----------------- Footer -----------------*/
.store-footer {
    /*background: linear-gradient(135deg, #b4a96a, #c6a97b, #b4a96a);
    */padding: 20px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1em;
        direction: rtl;
    text-align: right;
}
.s-social-list{
      padding-top: 1.5rem;
}
.s-social-link a {
    background: #c4aa79;
    color: white;
    opacity: 0.5;
    width: 3rem;
    height: 3rem;
}
.s-contacts-icon{
  background: #c4aa79;
    color: white;
    opacity: 0.5;
    width: 3rem;
    height: 3rem;
}
/*----------------- Animation -----------------*/
@keyframes backgroundMove {
    0% {
        background-position: left;
    }
    100% {
        background-position: right;
    }
}


body {
    user-select: none;
}


salla-mini-checkout-widget::part(button) {
    background-color: red !important;
}


/*---------------*/
/*.loader-init::after {
    font-family: "sallaicons" !important;
    content: "\f072";
    font-size: 25px;
    color: darkorange;
}*/