/* Add custom CSS styles below */ 
/* Roots */
:root {
    --mainColor: #1C4836;
    --gradient:linear-gradient(82deg,rgba(28, 72, 54, 1) 0%, rgba(30, 105, 74, 1) 51%, rgba(56, 148, 110, 1) 100%);
    --url:url("https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/WlKQRn/HbwUagWDPs5MFIyWTYdRZaVnsPWd2CbLM2z4HD0N.png");
}
/* Start Loading open */
@keyframes pupup {
0%{
    transform:scale(1)
    }
18%{
    transform:scale(1)
    }
80%{
    transform:scale(1)
    }
100%{
    transform:scale(0)
    }
}

@keyframes pupup_logo{
0%{
    transform:scale(0)
    }
18%{
    transform:scale(1)
    }
75%{
    transform:scale(1)
    }
95%{
    transform:scale(0)
    }
100%{
    transform:scale(0)
    }
}

body:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--mainColor);
    background: var(--gradient);
    position: fixed;
    z-index: 999999;
    transform: scale(0);
    animation-name: pupup;
    animation-duration: 2s;
}

body:after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    z-index: 999999;
    background: var(--url);
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 165px;
    transform: scale(0);
    animation-name: pupup_logo;
    animation-duration: 2s;
}
/* End Loading open */
/* For animation in all the body  */
.auto-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease;
}

.auto-reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* End For animation in all the body  */
/* Scroll bar */
body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #F9FAFB;
    border-radius: 12px;
}

body::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}

@supports not selector(::-webkit-scrollbar) {
    body {
        scrollbar-color: var(--color-primary) #F9FAFB;
    }
}
/* End Scroll bar */
/* Top-navbar */
.top-navbar {
    background: var(--color-primary);
    background: var(--gradient);
}

.topnav-link-item, .s-contacts-topnav-link {
    color: white;
    opacity:1;
}
.top-navbar .s-search-input-wrapper {
    background-color: white;
    border-radius:18px
}
/* End top-navbar */
/* Start Navbar */
.navbar-brand img {
    max-height: 4rem;
}
@media (max-width: 1024px) {
    .navbar-brand img {
        max-height: 3rem;
    }
}

.header-btn:hover .header-btn__icon,
.s-cart-summary-wrapper:hover .header-btn__icon.icon,
.s-cart-summary-wrapper:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.header-btn__icon,
.header-btn__icon.icon {
    transition: all 0.3s ease;
}
.s-cart-summary-wrapper {
    width: max-content;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding-inline-end: 8px; /* يتحول تلقائيًا بين اليمين واليسار حسب اللغة */
}

@media (min-width: 1024px) {
    .main-nav-container {
        min-height: 84px;
        max-height: fit-content;
    }
}
@media only screen and (max-width: 1024px) {
    .mm-spn.mm-spn--navbar.mm-spn--main:where([dir="rtl"], [dir="rtl"] *):after, 
    .mm-spn.mm-spn--navbar:where([dir="rtl"], [dir="rtl"] *):after{
        color: var(--color-primary);
    }
}

.btn--close-sm:where([dir="rtl"], [dir="rtl"] *) {
    left: 78.5px;
}
.mm-spn a:hover {
    font-size: 16px;;
    background: #eeeeee;
    color: var(--color-primary);
}
#mainnav {
    top: 45px !important;
    border-bottom-right-radius: 90px;
    border-bottom-left-radius: 90px;
}
@media (min-width: 1024px) {
    #mainnav > div.inner.bg-inherit {
    border-bottom-right-radius: 90px;
    border-bottom-left-radius: 90px;
    }   
}
.mobile-menu a span {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.mobile-menu a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.mobile-menu a span:hover::after {
  width: 100%;
}
/* End navbar */
/* Start banners */
@media (min-width: 1280px) {
    .s-block--fixed-banner .container {
    max-width:100% !important;
    }
}
/* End banners */

/* Start Sections */
.sicon-heart:before {
    color: #f35944;
}
.s-button-icon .s-button-text {
    padding: 4px;
}
/* Start Products Section Heading */
.s-slider-block__title h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
}
@media (min-width: 1024px) {
    .s-slider-block__title h2 {
    font-size: 2rem;
    } 
}
.s-slider-block__title-right {
  display: flex;
  flex-direction: column;
  align-items: center; 
  width: 100%;
}

.enhanced-title-border {
  border: 2px solid var(--color-primary);
  border-radius: 100%;
  display: block;
  height: 14px;
  margin: 10px 0;
  position: relative;
  width: 14px;
}

.enhanced-title-border::before,
.enhanced-title-border::after {
  background: var(--color-primary);
  content: "";
  height: 2px;
  position: absolute;
  top: 45%;
  width: 90px;
}

.enhanced-title-border::before {
  right: 160%;
}
.enhanced-title-border::after {
  left: 160%;
}
.s-slider-block__title-left {
    display: none;
}
.s-slider-block__title-right:where([dir=rtl],[dir=rtl] *) {
    padding-left: 0;
}
.s-slider-block__title h2:where([dir=rtl],[dir=rtl] *) {
    padding-left: 0;
}
/* End Products Section Heading */
/* Start Products Section Image */

.s-product-card-image {
    overflow: hidden;
    position: relative;
}

.s-product-card-image img {
    transition: transform 0.5s ease;
}

.s-product-card-entry:hover .s-product-card-image img {
    transform: scale(1.1);
}

.s-product-card-entry .s-product-card-image::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.s-product-card-entry:hover .s-product-card-image::before {
    animation: shine 0.75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}
/* End Products Section Image */
/* Start Product Card */

@media (min-width: 1024px) {
    .s-products-list-vertical-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.s-product-card-fit-height .s-product-card-image {
    height: 11rem;
    max-height: 25rem;
}
.s-product-card-fit-height .s-product-card-image {
    height: 15rem;
    max-height: 27rem;
}
@media (min-width: 1024px) {
    .s-products-slider-card {
        width: 32%;
        max-width: 34%;
    }
    .swiper-wrapper {
    justify-content: center;
}
}

.s-slider-block__title {
    display: none;
}
.carousel-slider .swiper:where([dir=rtl],[dir=rtl] *) {
    padding-left: 0;
}
/* End Product Card */
/* End Sections */
/* Start Reviews Setions */
.s-reviews-header-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.s-reviews-header {
    text-align: center;
    margin: 0;
    font-size: 1.5rem;
    color: var(--color-primary);
}
@media (min-width: 1024px) {
    .s-reviews-header {
    font-size: 2rem;
    } 
}
.enhanced-title-border-reviews {
    border: 2px solid var(--color-primary);
    border-radius: 100%;
    display: block;
    height: 14px;
    margin: 15px auto;
    position: relative;
    width: 14px;
}
.enhanced-title-border-reviews:after, .enhanced-title-border-reviews:before {
    background: var(--color-primary);
    content: " ";
    height: 2px;
    position: absolute;
    top: 45%;
    width: 110px;
}
.enhanced-title-border-reviews:before {
    right: 251%;
}
.enhanced-title-border-reviews:after {
    left: 251%;
}
/* End Reviews Setions */
/* Start Feedback Secction */
.s-reviews-container {
    padding: 12px 0;
}
.s-slider-container {
    padding-bottom: 31px;
}
.s-reviews-container .swiper-slide-active {
    margin: 0 10px;
}
.s-reviews-swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 2rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.s-reviews-swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.s-reviews-swiper-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px #0000001a;
}
.s-reviews-testimonial__avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--color-primary); 
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.s-reviews-testimonial__text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-top: 1rem;
    font-weight: 500;
}
.s-reviews-testimonial__name_wrapper {
    margin-top: 1rem;
}
.s-reviews-testimonial__info h2 {
    font-size: 1.2rem;
    color: var(--color-primary); 
    margin-left:1rem;
    margin-bottom: 0.5rem;
}
.s-rating-stars-btn-star svg {
    fill: #fbbf24 !important;
    width: 22px;
    height: 22px;
}


.s-reviews-testimonial__icon svg {
    fill: var(--color-primary);
    opacity: 0.8;
}
.s-block--testimonials .s-slider-block__title-nav {
    top: 50% !important;
}
.s-block--testimonials .s-slider-block__title-nav button {
    background-color:var(--color-primary);
}
.s-block--testimonials .s-slider-block__title-nav button:hover {
    background-color:var(--color-primary);
    top:49% !important;
}
.s-block--testimonials .s-slider-block__title-nav .s-slider-nav-arrow svg {
    width: 22px;
    fill: white;
}
.s-slider-container {
    box-shadow: none;
}
.s-reviews-container .swiper-slide-active {
    margin: 0 10px;
}
/* End Feedback Secction */
/* Start Features Section */
.s-block--features__item {
  background-color: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 0.25rem 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 1.2rem;
  display: flex;
  flex-direction: row;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.s-block--features__item .feature-icon {
    margin-bottom: 0;
}
.s-block--features__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* Icon */
.s-block--features__item .feature-icon {
    align-self: flex-start;
    background-color: var(--color-primary);
    background: transparent;
    border: 2px solid var(--color-primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-block--features__item .feature-icon i {
  color: #fff;
  font-size: 1.1rem;
    color: var(--color-primary);
}

/* Title */
.s-block--features__item h2 {
  width: 100%;
  color: var(--color-primary);
  font-size: 1.2rem;
  margin: 0.75rem 0 0.4rem;
  font-weight: 600;
}

/* Description */
.s-block--features__item p {
    display: none;
}

/* End Features Section */
/* Start Footer */

.store-footer {
  position: relative;
  background-color: var(--mainColor) !important;
  overflow: visible;
}

.store-footer .store-footer__inner {
  background-color: var(--mainColor) !important;
  color: #c49c44;
}

.store-footer a {
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.store-footer h3 {
    position: relative;
    padding-bottom: 12px;
    font-size: 2rem;
    width: 100%;
}


.s-social-list {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  justify-content: center;
}

.s-social-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.s-social-icon svg {
  width: 20px;
  height: 20px;
  fill: #5c5c5c;
  transition: fill 0.3s ease;
}

.s-social-link a:hover {
  background-color: var(--color-primary);
  transform: translateY(-4px);
}

.s-social-link a:hover .s-social-icon svg {
  fill: #fff;
}


.s-contacts-icon {
  background-color: white;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.s-contacts-list a:hover .s-contacts-icon {
  background-color: var(--color-primary);
  transform: translateY(-4px);
}

.s-contacts-list a:hover .s-contacts-icon svg {
  fill: #fff;
}

.store-footer .s-contacts-item:hover,
.store-footer .s-menu-footer-list a:hover {
  color: #fff;
  opacity: 1;
}


.footer-is-light .store-footer .contact-social {
  border-style: dashed;
}

.store-footer__inner > img {
  max-width: 120px;
  display: block;
  margin: -78px auto 12px;
}
.copyright-text p {
    color: white;
}
/* Curved top */
.store-footer__curve {
  position: absolute;
  top: -53px;
  left: 0;
  width: 100%;
  height: 54px;
  z-index: 0;
  color: var(--mainColor);
}

.footer-link {
  display: block;
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  font-size: 0.7rem;
  color: #43715e;
}
@media (min-width: 1024px) {
    .lg\:grid-cols-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .lg\:col-span-2 {
        grid-column: span 1 / span 2;
    }
}
salla-apps-icons {
    display: none;
}
/* End Footer */