/* Add custom CSS styles below */ 
.banner-entry{
    width: 42vw;
    min-height: 100px;
}


.lazy__bg {
  background-size: 90% 100%!important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}


.gap-3{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    
}

@media(max-width:768px) {
.banner-entry {
  height: 230px !important;
  }
}
@media(min-width:991px) {
.banner-entry {
  height: 500px;
  }

  .lazy__bg {
    background-size: 90% 100% !important;
  }

}
@media (min-width: 768px){
.two-row .banner-entry:first-child {
    height: auto !important;
}

}
/* Add custom CSS styles below */ 
/* Add custom CSS styles below */ 
/* Add custom CSS styles below */ 
:root{--color-primary:#c79bea;--color-primary-dark:#c187dd;--color-primary-light:#8e3fb5;--color-primary-reverse:#FFF4E5;--c:#ffffff;
--logo:url(https://cdn.salla.sa/xAmBmY/7QJcmS98a3GTkZE1oJrIk75IX9EvcmNsWtKHxUof.png)}.main-menu li.root-level>a{font-weight:700;font-size:16px;color:var(--color-primary-reverse)}.bg-gray-50{background-color:#fff!important}
.mm-spn.mm-spn--navbar.mm-spn--main {
    cursor: default;
    border-radius: 2rem 0 0 2rem;
    color: var(--color-primary);
       background: linear-gradient(to left, var(--c), var(--color-primary-light));

}
@media only screen and (max-width: 1024px) {
    .mm-spn.mm-spn--light {
        color: var(--color-primary);
        background:var(--color-primary-reverse);
        
    }
}
.mm-spn li{
  overflow: hidden;
  animation: typing 1.5s steps(30) forwards, fadeIn 0.5s ease-in-out;
}

/* Typing Effect */
@keyframes typing {
  from {
    width: 0; /* Start hidden */
  }
  to {
    width: 100%; /* Reveal text gradually */
  }
}
/* Subtle Fade-in Effect */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#mainnav {
    position: fixed;
    top: -100%;
    left: -100%;
    width: 400px; /* Adjust width */
    height: 100%;
    background: var(--color-primary-dark); /* Darker background */
    backdrop-filter: blur(12px);
    color: var(--c);
    padding: 50px;
    border-radius: 0px 30px 30px 0px; /* Rounded right-side edges */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
    z-index: 1000;
}
/* Show menu when active */
#mainnav.active {
    top: 0;
    left: 0;
    transform: scale(1);
}
@media (max-width: 768px){
   #mainnav.active {
     left: 0; /* Slide in */
     right: 0;
     height: auto;
     width: auto;
   }
}
@media only screen and (min-width: 1024px) {
  @media (min-width: 1024px) {
    .main-menu {
      display: grid;
      justify-content: space-between;
      position: sticky;
      right: 30px;
    }
  }
}
.main-menu {
  margin-right: 5rem !important;
}
#mainnav .flex{
  display: block;
  top: 50px;
}
@media (max-width: 768px){
  #mainnav .flex{
  display: flex;
  top: 10px;
  }
}


/* Menu Title */
#mainnav h2 {
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--color-primary-reverse);
}

/* Navigation Links */
#mainnav ul {
    list-style: none;
    padding: 20px;
}

#mainnav ul li {
    margin: 15px 0;
}

#mainnav ul li a {
    text-decoration: none;
    font-size: 18px;
    color: var(--c);
    font-weight: bold;
    padding: 10px 0;
    transition: color 0.3s ease-in-out;
  
}
#mainnav ul li a:hover {
    color: var(--color-primary-dark);
    transform: translateY(-2px) scale(1.1); /* Adds upward movement and slight enlargement */
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease; /* Smooth transition for all */
}


/* Updated Button (Bigger & Rectangular) */
.toggle-btn {
    position: fixed;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: linear-gradient(to left, var(--color-primary-dark), var(--color-primary-light));

    border-radius: 15px; /* Rounded rectangle */
    border: none;
    display: block;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: var(--c);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    z-index: 1100;
}

/* Button Hover Effect */
.toggle-btn:hover {
    box-shadow:1px 2px 15px var(--color-primary-dark);
}

/* Hide button when menu is active */
#mainnav.active ~ .toggle-btn {
    display: none;
}
/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    color: black;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

/* Close Button Hover Effect */
.close-btn:hover {
    transform: scale(1.1);
    background: #ff4d4d;
    color: white;
}

.navbar-brand img {
  max-height: 5rem;
  width: auto;
  max-width: 120px;
  right: 100px;
  position: absolute;
}
@media (max-width: 768px){
  .navbar-brand img{
    right:20px;
  }
}

.topnav-link-item {
    display: none;
}
.s-contacts-topnav-link {
-webkit-text-decoration: none;
    text-decoration: none;
    transition: color .2s;
    display: none;
}   
.s-breadcrumb-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: .875rem;
    line-height: 1.25rem;
    color:var(--color-primary);
} 
@media (max-width: 768px){
  .s-search-input-wrapper {
  position: relative;
  display: flex;
  flex-grow: 1;
  align-items: center;
  margin-top: 25%;
 }
}
.s-comments-product {
    margin-bottom: 0rem;
    --tw-bg-opacity: 1;
    background-color: #f3f4f6;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
    padding-top:0rem;
    padding-bottom: 0rem;
}
.main-nav-container.fixed-pinned .navbar-brand img {
    max-height: 80px;
}

 .s-block.s-block--banners > .grid .banner-entry {
    height: 20rem;
     background:none;
}


.s-block {
    margin-top: 2rem;
      background:none;
}
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body {
  margin: 0;
  height: 100vh;
  background: radial-gradient(circle at center, #2b1963, #2b1963);
  background-attachment: fixed;
  background-size: cover;
}
.index:before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: url(https://cdn.salla.sa/xAmBmY/7QJcmS98a3GTkZE1oJrIk75IX9EvcmNsWtKHxUof.png) no-repeat center/contain;
    transform: translate(-50%, -50%);
    animation: slice-fade 3s ease forwards;
    z-index: 999999;
      pointer-events:none;

}
@keyframes slice-fade {
    0%   { clip-path: inset(0% 0% 0% 0%); opacity: 1; }
    100% { clip-path: inset(50% 50% 50% 50%); opacity: 0; }
}


.header-btn__icon{display:flex;height:2.5rem;width:2.5rem;align-items:center;justify-content:center;border-radius:25% / 50%;border-width:1px;border-color:var(--color-primary-reverse);color:var(--color-primary-reverse);font-size:20px}.s-slider-block__title h2{background:var(--color-primary-reverse);border-radius:2rem 0rem 0rem 1rem;font-size:20px!important;font-weight:700;color:#fff;padding-right:10px;padding-bottom:10px}.s-product-card-image{background-color:#fff!important}.s-product-card-vertical{flex-direction:column;border-radius:30px;border:none;box-shadow:2px 2px 8px #c8b0726e}

.store-footer__inner::before{content:"";background:linear-gradient(180deg,transparent 38%,94%),url(https://cdn.salla.sa/form-builder/x4dohADLLZbEzd4LMIy3FzzRMtPxcikeYlbgeo8D.png);background-size:418%;display:block;background-repeat:round;transform:rotate(180deg);height:104px;margin:-65px -32px 1px 1px}.footer-is-light .store-footer{background: linear-gradient(to left, #773ea4, #773ea3, #773ea4);padding-right:10px;box-shadow: 0 0 15px #d8baf6;}.footer-is-light
.store-footer .store-footer__inner{background: linear-gradient(to right, #cd9ee6, #7d29a7, #bb79db);color:#fff}.store-footer h3{color:var(--color-primary)}.footer-is-light .store-footer .social-link{line-height:32px!important;display:block;width:36px;height:36px;font-size:18px;transition:all .2s ease-out;color:rgb(255,255,255);border-radius:25% / 50%;border:1px solid var(--color-primary)}p.text-gray-400.mb-2\.5.md\:mb-0{color:var(--color-primary-reverse)!important;font-weight:800;padding-bottom:10px}h2.mb-4.text-lg.font-bold.leading-\[1\.2\]{text-align:center}.product__description.p-2.sm\:p-1.leading-7.mb-3{color:var(--color-primary-reverse);margin-bottom:1.25rem;background-color:var(--color-primary);border-radius:25px;padding:20px}.product__description ul,.product__description li{padding-right:10px}.carousel-slider .swiper{margin-left:0rem;margin-right:0rem;padding-left:0;padding-right:0}salla-slider.photos-slider .swiper{margin-left:0;margin-right:0;width:100%}[dir=rtl] salla-slider[type]:not(.hydrated)>div,[dir=rtl] salla-slider[type]:not(.hydrated) .swiper>div>div,[dir=rtl] .carousel-slider .swiper{padding-left:0rem}.s-slider-swiper-wrapper{width:100%!important}salla-slider.photos-slider .swiper-slide{width:100%!important}p.leading-6.mb-2.mt-4.sm\:mt-0{margin-top:30px}.s-product-card-entry{box-shadow:0 2px 10px 0 var(--color-primary);border:1px solid var(--color-primary)}.s-product-card-content-title a{font-size:16px;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:#5a5a5a}.s-product-card-content-subtitle{font-size:14px}.s-product-card-content-title{margin-bottom:0rem}.s-product-card-promotion-title{background-color:var(--color-primary-reverse)!important;padding:1px 5px 3px!important}.s-product-card-content-footer{margin-bottom:10px}.s-button-wide{width:100%;border-radius:15px}.s-block__title h2{position:relative;line-height:1.2;background:var(--color-primary-reverse);border-radius:2rem 0rem 0rem 1rem;font-size:20px!important;font-weight:700;color:#fff;padding-right:10px;padding-bottom:10px;padding-left:20px}ul.hidden.lg\:flex.items-center.rtl\:pl-4.ltr\:pr-4.whitespace-nowrap{display:none}.hidden.lg\:flex.items-center{display:none}.btn--rounded-gray{background-color:rgb(255 255 255);box-shadow:0 1px 5px 0 var(--color-primary);border:1px solid var(--color-primary)}.s-search-input{background-color:#fff!important;box-shadow:0 1px 5px 0 var(--color-primary);border:1px solid var(--color-primary)!important;width:20%!important}.main-menu li.root-level>a{font-size:18px}


span.s-cart-summary-count{background-color:var(--color-primary-reverse);color:var(--color-primary)}.s-product-card-content-title a{font-size:17px}.s-product-card-content-subtitle{font-size:15px}.footer-is-light .store-footer .store-footer__inner{border-bottom-color:var(--color-primary-reverse)!important}section.cart-item.bg-white.p-5.xs\:p-7.rounded-md.mb-5.relative{--tw-shadow:5px 10px 30px #2B2D340D;--tw-shadow-colored:5px 10px 30px var( --tw-shadow-color);box-shadow:0 0 transparent,0 0 transparent,5px 10px 30px #2b2d340d;box-shadow:var(--tw-ring-offset-shadow,0 0 var(--color-primary-reverse)0),var(--tw-ring-shadow,0 0 var(--color-primary-reverse)0),var(--tw-shadow);background-color:#fff;border:1px solid var(--color-primary-reverse)45}

.footer-is-light .store-footer .contact-social{border-color:var(--color-primary)!important}@media (max-width:650px){.s-search-input{width:100%!important}}i.sicon-twitter{padding-right:6px}i.sicon-snapchat{padding-right:8px}i.sicon-instagram{padding-right:8px}.s-slider-block__title{margin-right:5px}h2.mb-4.text-lg.font-bold.leading-\[1\.2\]{background:var(--color-primary);border-radius:2rem 0rem 0rem 1rem;font-size:20px!important;font-weight:700;color:#fff;padding-right:10px;padding-bottom:10px;padding-left:20px;margin-right:15px}@media (min-width:1200px){.s-slider-block__title h2{background:var(--color-primary);border-radius:2rem 2rem 1rem 1rem;font-size:20px!important;font-weight:700;color:#fff;padding-right:30px;text-align:center;padding-bottom:10px}.s-block--slider-with-bg .slider-bg{height:360px!important}h3.text-lg.font-bold.leading-12{border-radius:2rem 2rem 1rem 1rem!important;padding-right:40px!important;margin-left:540px!important;margin-right:560px!important;padding-left:25px}.s-block__title{margin-bottom:2rem;padding-right:560px}.s-block__title h2{position:relative;line-height:1.2;background:var(--color-primary);font-size:20px!important;font-weight:700;color:#fff;padding-right:40px;border-radius:2rem 2rem 1rem 1rem!important;padding-bottom:10px;padding-left:35px}.s-products-list-horizontal-cards{grid-template-columns:repeat(1,minmax(0,1fr))}.s-products-list-wrapper.s-products-list-horizontal-cards{width:50%}.s-products-list-wrapper.s-products-list-horizontal-cards{margin-right:300px}h2.mb-4.text-lg.font-bold.leading-\[1\.2\]{background:var(--color-primary);font-size:20px!important;font-weight:700;color:#fff;padding-right:30px;padding-bottom:10px;padding-left:30px;border-radius:2rem 2rem 1rem 1rem!important;margin-right:560px;margin-bottom:30px}[dir=ltr] .s-slider-block__title h2{padding-left:1rem!important}salla-slider#slider-with-bg-3{margin-left:150px}#slider-with-bg-2{margin-left:475px}salla-slider#slider-with-bg-1{margin-left:140px}.s-slider-block__title-right{margin-left:275px}h2.mb-4.text-lg.font-bold.leading-\[1\.2\]{margin-left:20px}.sicon-snapchat:before{margin-left:7px}.sicon-twitter:before{margin-left:7px}.sicon-instagram:before{margin-left:7px}}.s-block--slider-with-bg .s-slider-block__title-left{display:none}.leading-12{line-height:2rem}h3.text-lg.font-bold.leading-12{background:var(--color-primary);border-radius:2rem 0rem 0rem 1rem;font-size:20px!important;font-weight:700;color:#fff;padding-right:10px;margin-left:250px;margin-right:5px}p.text-sm.mb-8.line-clamp-2.max-w-lg{display:none}.s-block--slider-with-bg .slider-bg{height:320px}.s-block--slider-with-bg .slider-bg:before{display:none}.s-block--slider-with-bg{background-color:#fff}@media (max-width:650px){ul.main-menu.mm-spn--open{margin-top:100px}}.mm-spn.mm-spn--navbar ul:before{margin-top:100px}.mm-spn li{position:relative;background:inherit;cursor:pointer;color:var(--color-primary);font-size:18px;border-bottom:1px solid var(--color-primary-reverse)1c}.mm-ocd--open .mm-ocd__content{transform:translate3d(0,0,0);box-shadow:-4px 0 7px 0 rgb(0 0 0 / 26%);border-radius:0rem 0rem 0rem 2rem}.mm-spn.mm-spn--navbar.mm-spn--main{cursor:default;border-radius:2rem 0rem 0rem 2rem}.mm-ocd-opened .btn--close-sm{opacity:1;visibility:visible;transform:translateY(0);z-index:99999999;border-radius:15px 0 0 15px}@media (max-width:370px){h3.text-lg.font-bold.leading-12{background:var(--color-primary-reverse);border-radius:2rem 0rem 0rem 1rem;font-size:20px!important;font-weight:700;color:#fff;padding-right:10px;margin-left:200px;margin-right:5px}}h2.text-lg.font-bold.text-gray-500.mb-8{display:none}.product__description.p-2.sm\:p-1.leading-7.mb-3{padding:40px}@media (min-width:1200px){[dir=ltr] salla-slider#slider-with-bg-1{margin-left:140px}[dir=ltr] .s-slider-block__title-right{margin-left:110px}[dir=ltr] salla-slider#slider-with-bg-3{margin-left:300px}[dir=ltr] salla-slider#slider-with-bg-4{margin-left:140px}[dir=ltr] h2.mb-4.text-lg.font-bold.leading-\[1\.2\]{margin-left:550px}}@media (max-width:650px){[dir=ltr] i.sicon-snapchat{padding-left:8px}[dir=ltr] i.sicon-twitter{padding-left:8px}[dir=ltr] i.sicon-instagram{padding-left:8px}[dir=ltr] h2.mb-4.text-lg.font-bold.leading-\[1\.2\]{background:var(--color-primary-reverse);border-radius:0rem 2rem 1rem 0rem;font-size:20px!important;font-weight:700;color:#fff;padding-right:10px;padding-bottom:10px;padding-left:10px;margin-left:15px}[dir=ltr] h3.text-lg.font-bold.leading-12{background:var(--color-primary-reverse);border-radius:0rem 2rem 1rem 0rem;font-size:20px!important;font-weight:700;color:#fff;padding-left:10px;padding-right:20px;margin-left:5px;margin-right:200px}[dir=ltr] .s-slider-block__title h2{background:var(--color-primary-reverse);border-radius:0rem 2rem 1rem 0rem;font-size:20px!important;font-weight:700;color:#fff;padding-bottom:10px;padding-left:10px}}@media (max-width:318px){h3.text-lg.font-bold.leading-12{background:var(--color-primary-reverse);border-radius:2rem 0rem 0rem 1rem;font-size:20px!important;font-weight:700;color:#fff;padding-right:10px;margin-left:150px;margin-right:5px}}@media (max-width:270px){h3.text-lg.font-bold.leading-12{background:var(--color-primary-reverse);border-radius:2rem 0rem 0rem 1rem;font-size:20px!important;font-weight:700;color:#fff;padding-right:10px;margin-left:115px;margin-right:5px}}@media (min-width:640px){.sm\:pt-20{padding-top:3rem}}@media (min-width:1200px){.s-slider-block__title{margin-right:380px}}@media (min-width:1200px){[dir=ltr] .s-slider-block__title-right{margin-left:380px}}@media only screen and (max-width:700px){.navbar-brand{width:20vw}}::-webkit-scrollbar{width:10px;height:10px}::-webkit-scrollbar-track-piece{background-color:rgba(0,0,0,0.2);-webkit-border-radius:0}::-webkit-scrollbar-thumb:vertical{height:200px;background-color:var(--color-primary-reverse);-webkit-border-radius:0}

::-webkit-scrollbar-thumb:vertical:hover{background-color:var(--color-primary)}::-webkit-scrollbar-thumb:horizontal{width:200px;background-color:rgba(125,125,125,0.7);-webkit-border-radius:0}body{max-width:2000px;margin:auto;background:#fdfbfbfff1f1;background-size:cover;background-repeat:repeat}

div#mainnav.bg-white{ background: linear-gradient(to left, var(--color-primary-dark), var(--color-primary-light),var(--color-primary));box-shadow: 0 0 15px var(--color-primary);
}

h2.mb-4.text-lg.font-bold.leading-\[1\.2\],.s-block__title h2,.s-slider-block__title h2,.s-slider-block__title h2,.s-button-primary-outline,.s-block--features__item .feature-icon{background:linear-gradient(to right,var(--color-primary-dark),var(--color-primary-light),var(--color-primary))!important}.s-button-primary-outline{fill:var(--color-primary);color:#fff}.main-nav-container.fixed-pinned .inner{position:unset}.main-menu span{font-size:17px}salla-product-card{border-radius:.75rem;box-shadow:0 0 12px 0 #4242423d}button.undefined.s-button-element.s-button-btn.s-button-outline.s-button-wide.s-button-primary-outline.s-button-loader-center{background:var(--color-primary);color:var(--infinte-color);box-shadow:0 0 12px 0 var(--main-text-color)}

.text-gray-800{color:var(--color-primary);}text-2xl.leading-10.font-bold.mb-6.text-gray-800,.main-content.md\:sticky.top-24.w-full.md\:w-2\/4.md\:pb-16{color:black!important}.main-content.md\:sticky.top-24.w-full.md\:w-2\/4.md\:pb-16{color:black!important}footer.store-footer{border-radius:20px;margin:15px}.store-footer__inner{background:transparent}@media (max-width:600px){footer.store-footer{padding-bottom:50px}}footer.store-footer *{text-align:center;justify-content:center}footer.store-footer *{color:var(--color-primary-reverse)}
footer.store-footer:hover *{color:var(--color-primary-reverse)}


.store-footer .unicode{}.store-footer__inner .container > div:nth-child(3) > div:nth-child(1) a{width:fit-content;margin:0!important;display:inline-block}.max-w-sm{border-bottom:1px solid;padding-bottom:1rem;border-image:linear-gradient(244deg,var(--color-primary),var(--color-primary) )}.footer-list.store-links-items{column-count:2}footer.store-footer{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2526.61 1640.64'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill:none;%7D .cls-1,.cls-2 %7B stroke-width:0;%7D .cls-2 %7B fill:%23191919;opacity:.05;%7D %3C/style%3E%3C/defs%3E%3Crect class='cls-1' x='609.93' y='602.08' width='1440' height='560'/%3E%3Cpath class='cls-2' d='m609.93,1139.24c118.89,15.98,249.69,73.14,352.4,11.18,102.69-61.95,119.22-202.24,154.4-316.9,31.14-101.5,52.51-204.6,37.86-309.76-14.69-105.48-59.82-201.59-121.21-288.62C966.7,140.6,900.85,17.54,786.26,1.55c-116.01-16.19-204.74,98.76-306.77,156.31-77.35,43.63-149.02,87.12-219.82,140.72-90.3,68.35-221.51,107.92-252.55,216.83-30.92,108.51,45.64,217.49,100.73,315.96,51.48,92.03,115.83,176.71,205.72,231.84,88.74,54.41,193.19,62.17,296.35,76.04'/%3E%3Cpath class='cls-2' d='m2049.93,1638.39c94.91-2.47,198.87,8.28,274.78-48.76,74.76-56.17,84.33-160.86,119.52-247.49,33.52-82.5,87.42-159.67,82.01-248.55-5.61-92.14-43.4-185.47-112.17-247.04-66.03-59.12-161.34-63.71-249.06-76.38-76.8-11.09-152.73-11.55-227.95,7.49-77.58,19.64-151.08,50.77-211.13,103.66-66.23,58.33-121.1,128.88-148.26,212.85-30.42,94.05-48.67,197.44-14.45,290.18,35.2,95.42,112.45,172.74,202.61,219.8,86.31,45.05,186.78,36.76,284.11,34.23'/%3E%3C/svg%3E");background-size:cover;background-position:1rem;background-color: #5e4d94 !important;}@media (max-width:600px){footer.store-footer{background-position:38rem 18rem}}.footer-is-light .store-footer .store-footer__inner{background-color:transparent}#app > div.app-inner.flex.flex-col.min-h-full > footer > div.store-footer__inner > div:before{display:block!important;content:'';background:var(--logo);background-size:contain;background-repeat:no-repeat;background-position:center;width:100%;height:153px}



@keyframes glowEffect {
    0%, 100% {
        box-shadow: 0 0 5px #C0EBA6;
        background-color: #347928;
    }
    50% {
        box-shadow: 0 0 15px #ECFFE6;
        background-color: #31511E;
    }
}

.s-contacts-list > div:nth-child(1) > a:nth-child(1) > span:nth-child(1) {
    animation: glowEffect 1.5s infinite ease-in-out;
    border-radius: 5px; /* Optional for a smoother effect */
}
.s-contacts-list > div:nth-child(2) > a:nth-child(1) > span:nth-child(1) {
    animation: glowEffect 1.5s infinite ease-in-out;
    border-radius: 5px; /* Optional for a smoother effect */
}
.s-contacts-list > div:nth-child(3) > a:nth-child(1) > span:nth-child(1) {
    animation: glowEffect 1.5s infinite ease-in-out;
    border-radius: 5px; /* Optional for a smoother effect */
}
.s-contacts-list > div:nth-child(4) > a:nth-child(1) > span:nth-child(1) {
    animation: glowEffect 1.5s infinite ease-in-out;
    border-radius: 5px; /* Optional for a smoother effect */
}
.s-contacts-list > div:nth-child(5) > a:nth-child(1) > span:nth-child(1) {
    animation: glowEffect 1.5s infinite ease-in-out;
    border-radius: 5px; /* Optional for a smoother effect */
}

@keyframes flipIn {
    0% {
        transform: rotateY(-180deg);
        opacity: 0;
    }
    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

.store-footer::after {
    animation: flipIn 15s ease-out;
}



.store-footer::after{
content:"برمجةوتطويرADFAZ";
top:0;
color:var(--color-primary-reverse)!important;
font-size:17px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
opacity:0.5;
text-align: center;
}
.flex.mb-6,
.md\:flex,
.s-product-card-content-sub,
.store-footer a,
.s-product-card-content-title a,
.store-footer .contact-social ul,
.footer-is-light .store-footer .store-footer__inner {
    text-align: center !important;
    justify-content: center !important;
}

/*==statrt categories==*/
s-block.s-block--banners > .grid {
    grid-template-columns: 1fr 1fr;
}

.s-block.s-block--banners > .grid .banner-entry {
    padding-top: 0%;
}

.two-row .banner-entry:first-child {
    grid-column: auto;
    grid-row: auto;
    
}

.s-block.s-block--banners:nth-of-type(19) {
    margin-bottom: 1rem;
}

.s-block.s-block--banners > .grid .banner-entry {
    height: 170px;
}

@media (max-width: 2001px) {
    .s-block.s-block--banners > .grid {
        grid-template-columns: 1fr 1fr 1fr !important ;
    }

    .s-block.s-block--banners:nth-of-type(19) > .grid .banner-entry:last-child, .s-block.s-block--banners:nth-of-type(21) > .grid .banner-entry:last-child, .s-block.s-block--banners:nth-of-type(22) > .grid .banner-entry:last-child {
        grid-column: 1 ;
    }
}

/*categories responsive*/
/*phones screen*/
@media (max-width: 600px) {
    .s-block.s-block--banners > .grid .banner-entry {
        height: 110px;
    }
}

/*ipad air, ipad mini screen*/
@media screen and (max-width: 900px) and (min-width:600px) {
    .s-block.s-block--banners > .grid .banner-entry {
        height: 210px;
    }
}

/*ipad pro and laptop screen*/
@media screen and (min-width: 900px) {
    .s-block.s-block--banners > .grid .banner-entry {
        height: 280px;
    }
}

section:nth-of-type(1).s-block.s-block--fixed-banner.wide-placeholder .container {
    padding: 0;
    margin: 0;
    max-width: 100%;
}

/*
section.s-block.s-block--fixed-banner.wide-placeholder .container:hover,.lazy__bg.lazy.entered.loaded:hover {
    transform: translateY(-8px);
}*/
section.s-block.s-block--fixed-banner.wide-placeholder .container,:hover {
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 991px) {
    section.s-block.s-block--fixed-banner.wide-placeholder .container {
        padding: 0;
    }
}

/*توسيط عنوان اقسام المتجر*/
.s-block.s-block--banners.container .s-block__title {
    justify-content: center !important;
}


.unicode {
    unicode-bidi: plaintext;
    display:none;
}
.s-contacts-list-vertical{flex-direction:row;
padding-right:30px;
}

.unicode {
    unicode-bidi: plaintext;
    display: none;
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for color and movement */
}

.unicode:hover {
    transform: translateY(-5px); /* Slightly move up when hovered */
    color: #ff6347; /* Change color to tomato on hover */
}
.top-navbar {
  display: flex;
  min-height: 90px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

[class*=" sicon-"], [class^=sicon-] {
    font-family: sallaicons !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color:var(--color-primary-dark);
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
       
    }
    50% {
        transform: scale(1.1);
        
    }
}

.header-btn__icon {
    color: var(--color-primary-reverse);
    border-radius: 9px;
    border: none; /* Fixed invalid syntax */
    animation: pulse 2s infinite;
}



.product__description.p-2.sm\:p-1.leading-7.mb-3 {
    color: var(--color-primary-reverse);
    margin-bottom: 1.25rem;
    background-color: var(--color-primary-dark);
    border-radius: 25px;
    padding: 20px;
}





/*حركة اقسام*/

@keyframes slideDown {
    0% {
        transform: translateY(-50px); /* Start above */
        opacity: 0; /* Fully transparent */
    }
    100% {
        transform: translateY(0); /* Normal position */
        opacity: 1; /* Fully visible */
    }
}

.banner--fixed img{
    opacity: 0; /* Hidden initially */
    transform: translateY(-50px); /* Initial position */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.banner--fixed img.visible {
    animation: slideDown 1s ease-out;
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset to normal position */
}
@keyframes slideDown {
    0% {
        transform: translateY(-50px); /* Start above */
        opacity: 0; /* Fully transparent */
    }
    100% {
        transform: translateY(0); /* Normal position */
        opacity: 1; /* Fully visible */
    }
}

.banner-entry {
    opacity: 0; /* Hidden initially */
    transform: translateY(-50px); /* Initial position */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.banner-entry.visible {
    animation: slideDown 1.5s ease-out;
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset to normal position */
}
.banner--fixed img {
  background: none;
  transition: transform 0.5s ease-in-out; /* Transition effect for smooth movement */
}

.banner--fixed img:hover {
  transform: translateY(-10px); /* Move image up by 10 pixels on hover */
}

section.s-block.s-block--fixed-banner.wide-placeholder .container {
  padding: 0;
  margin: 0;
  max-width: 100%;
}





.s-block.s-block--banners > .grid .banner-entry:hover {
    transform: scale(1.08) rotate(1deg); /* Slight rotation */
    filter: brightness(1.1); /* Slightly brighter effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}

.s-block.s-block--banners > .grid .banner-entry:active {
    transform: scale(0.95); /* Shrink effect on click */
    filter: brightness(1.2); /* Slightly more brightness */
}
.s-product-card-vertical {
    border: none;
    background:none;
    box-shadow: none;
     background: linear-gradient(to left, var(--color-primary-reverse), var(--c));
}
.s-product-card-vertical:hover{
    border: none;
    background:none;
    box-shadow: none;
     background:none;
}
[dir="rtl"] .carousel-slider .swiper {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    border: none;
    background:none;
    box-shadow: none;
}

[dir="rtl"] .carousel-slider .swiper.animate-card {
    opacity: 1;
    transform: scale(1);
}
.s-product-card-fit-height {
    position: relative;
    width: 15rem;
   height: 22rem;
}
@media (max-width: 768px) {
    .s-product-card-fit-height {
        height: auto; /* Adjust height for mobile screens */
        width: auto;
    }

    .s-product-card-fit-height .s-product-card-image {
        height: auto;
        width: auto; /* Smaller size for mobile */
    }
}

button.undefined.s-button-element.s-button-btn.s-button-outline.s-button-wide.s-button-primary-outline.s-button-loader-center {
    position: absolute;
    top: 60%;
    left:1%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease-in-out;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 0 10px var(--color-primary);
    padding: 6px 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    
    transform: translateY(20px);
}

.s-product-card-fit-height:hover button.undefined.s-button-element.s-button-btn.s-button-outline.s-button-wide.s-button-primary-outline.s-button-loader-center {

    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/*اراء العملاء*/
.s-reviews-testimonial {
  position: relative;
  display: flex;
  height: 100%;
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-radius: 100px 0 0 100px;
  background: linear-gradient(to left, var(--c), var(--color-primary-reverse), var(--color-primary-dark));
  transition: all 0.3s ease-in-out; /* انتقال سلس */
}
@keyframes squeeze {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.95); }
}

.s-reviews-testimonial:hover {
  border-radius: 0px 100px 100px 0px;
  background: linear-gradient(to left, var(--color-primary-dark), var(--color-primary-reverse), var(--c));
   animation: squeeze 0.4s ease-in-out;
  cursor: pointer; /* تغيير شكل الماوس */
}

/*مميزات المتجر*/
.s-block--features__item{
 background: none;
}

/* إخفاء الأيقونة الأصلية (مثل SVG أو FontAwesome) */
@keyframes shakeX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* العنصر الأول */
.s-block--features__item:nth-of-type(1) .feature-icon {
  animation: shakeX 2.5s ease-in-out infinite;
}

/* العنصر الثاني */
.s-block--features__item:nth-of-type(2) .feature-icon {
  animation: shakeX 2.5s ease-in-out infinite;
}

/* العنصر الثالث */
.s-block--features__item:nth-of-type(3) .feature-icon {
  animation: shakeX 2.5s ease-in-out infinite;
}

/* إعداد الخلفية */
.s-block--features__item .feature-icon {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent; /* أو لون احتياطي */
  border-radius:50px;
  width:4rem;
  height:4rem;
}
@keyframes gradientText-left {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes gradientText-right {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.s-block--features__item p {
  background: linear-gradient(270deg, var(--color-primary), var(--color-primary-reverse), var(--color-primary-light));
  background-size: 400% 400%;
  animation: gradientText-left 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.s-block--features__item h2 {
   background: linear-gradient(270deg, var(--color-primary), var(--color-primary-reverse), var(--color-primary-light));
  background-size: 400% 400%;
  animation: gradientText-right 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.s-slider-block__display-all {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
    background: linear-gradient(270deg, var(--color-primary), var(--color-primary-reverse), var(--color-primary-light));
  background-size: 400% 400%;
  animation: gradientText-left 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.s-reviews-header {
  margin-bottom: 1rem;
  margin-right: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
   background: linear-gradient(270deg, var(--color-primary), var(--color-primary-reverse), var(--color-primary-light));
  background-size: 400% 400%;
  animation: gradientText-right 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.VIpgJd-ZVi9od-ORHb-OEVmcd {
  right: 0;
  top: 0;
  height: 39px;
  width: 100%;
  z-index: 10000001;
  position: fixed;
  border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
  border-bottom: 1px solid #6B90DA;
  margin: 0;
  box-shadow: 0 0 8px 1px #999;
  display:none;
}

.VIpgJd-yAWNEb-L7lbkb > div {
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  font-family: "Google Sans",Arial,sans-serif;
  display:none;
}
body.dark-mode *,.dark-mode div * {
    color: #fff !important;
    border-color: rgb(42 42 42);
}

body.dark-mode .bg-white,.dark-mode .s-comments-product,.dark-mode .tamara-product-widget, .dark-mode .spotii-wrapper,
.dark-mode #tabbyPromoWrapper {
    border-color: rgb(42 42 42)  !important;  background-color: #000000 !important;
}

.dark-mode .s-filters-widget-container,body.dark-mode .slide--cat-entry, body.dark-mode .s-product-card-entry, body.dark-mode .s-block--features__item, .dark-mode .brand-item , .dark-mode .s-reviews-testimonial, .dark-mode .store-footer {
    color: #fff !important;
    background-color: none
}

.dark-mode .form-input,.dark-mode .s-price-range-number-input,.dark-mode .bg-gray-100,.dark-mode .s-modal-body {
    color: #fff !important;
    border-color: #000000;
    background-color: none;
}

.dark-mode .s-button-primary-outline {
    background-color: #000000
}

.dark-mode .store-footer__inner, .dark-mode .s-button-light-outline,.dark-mode .s-login-modal-input {
    background-color: #000000 !important;
    color: #fff;
}


@media only screen and (min-width: 1024px) {
    .dark-mode .main-menu li>a {
        background-color: #000000
    }

    .dark-mode .main-menu .has-children li a:hover, .dark-mode .main-menu .has-children .has-children:hover>a {
        color: #f7eeff;
        color: var(--color-primary);
        background-color: #000000;
    }
}

.dark-mode .s-modal-body * {
    color: #f7eeff !important;
}

.dark-mode {
    --color-primary: #000000;
    --color-primary-dark: #000000;
    --color-primary-light: #000000;
    --color-primary-reverse: #000000;
    --c: #000000;
}

.dark-mode p.text-gray-400.mb-2\.5.md\:mb-0 {
    color: #fff !important;
    font-weight: 800;
    padding-bottom: 10px;
}
.dark-mode .store-footer::after {
    content: "برمجةوتطويرADFAZ";
    top: 0;
    color: transparent; /* Make the text color transparent for gradient */
    font-size: 20px; /* Adjust font size */
    font-family: 'Arial', cursive; /* Changed to 'Pacifico' font */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.9; /* Adjust opacity for visibility */
    text-align: center;
    background:#fff;
    -webkit-background-clip: text; /* Clips the background to the text */
    -webkit-text-fill-color: transparent; /* Makes text transparent so the gradient shows */
    
    color: #fff;

    padding: 12px 25px; /* Padding around the text */
    width: auto; /* Makes the width auto to fit content */
    border-radius: 8px; /* Optional: rounded corners for the background */
    margin-top: 10px; /* Adds some space at the top */
    
}
@media (min-width: 480px) {
  .dark-mode .btn--collapse:where([dir="rtl"], 
  [dir="rtl"] *) {
        padding-right: 1.75rem;
        padding-left: 1.25rem;
        background: #000000;
    }
}

.dark-mode .s-product-options-wrapper {
    margin-bottom: 1.25rem;
    display: block;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color:var(--color-primary);
    
    padding: 1.25rem;
}

.dark-mode .s-quantity-input-input {
    width: 3rem;
    border-width: 1px;
    border-top-width: 0px;
    border-bottom-width: 0px;
    background: #000000;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
    font-weight: 700;
    --tw-shadow: 0 0 rgba(0, 0, 0, 0);
    --tw-shadow-colored: 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}