/* nav menu */
.mobile-menu .main-menu > li > a .menu_title,
.mobile-menu .main-menu > li > a.sidemenu-link {
  background: linear-gradient(
    90deg,
    #ff6b6b,
    #ed1c24,
    #b30000,
    #ff3038,
    #ed1c24
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
  animation: gradientMove 4s ease infinite;
}

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

.mobile-menu .main-menu > li > a:hover .menu_title,
.mobile-menu .main-menu > li > a:active .menu_title {
  display: inline-block;
  transform: scale(1.05);
}

.mobile-menu .main-menu > li {
  opacity: 0;
  animation: itemFadeIn 0.4s ease forwards;
}

.mobile-menu .main-menu > li:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu .main-menu > li:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu .main-menu > li:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu .main-menu > li:nth-child(4) { animation-delay: 0.2s; }
.mobile-menu .main-menu > li:nth-child(5) { animation-delay: 0.25s; }
.mobile-menu .main-menu > li:nth-child(6) { animation-delay: 0.3s; }
.mobile-menu .main-menu > li:nth-child(7) { animation-delay: 0.35s; }
.mobile-menu .main-menu > li:nth-child(8) { animation-delay: 0.4s; }
.mobile-menu .main-menu > li:nth-child(9) { animation-delay: 0.45s; }
.mobile-menu .main-menu > li:nth-child(10) { animation-delay: 0.5s; }

@keyframes itemFadeIn {
  to { opacity: 1; }
}

.mobile-menu .menu-img {
  animation: pulseIcon 2.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(237, 28, 36, 0.5);
}

@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 6px rgba(237, 28, 36, 0.4);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(255, 48, 56, 0.6);
  }
}
/* ------------------------------------- */
/* footer */
.footer-middle > :nth-child(4){
  display: none;
}
.s-contacts-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff !important;
  font-size: 1.4rem !important;
  font-weight: bold;
  padding: 14px 40px;
  border: 2px solid #ED1C24;
  border-radius: 999px;
  text-align: center;
  margin: 0 auto 20px;
  box-sizing: border-box;
   background: rgba(255, 255, 255, 0.07) !important;
}

.s-contacts-title::before,
.s-contacts-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.s-contacts-title::before {
  right: 20px;
  border-right: 14px solid #ED1C24;
}

.s-contacts-title::after {
  left: 20px;
  border-left: 14px solid #ED1C24;
}

salla-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ------------------------------------- */
/* space background */
body {
  position: relative;
  background: #05060f !important;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  z-index: 9999;
  background-repeat: repeat;
}

body::before {
  background-image:
    radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 90px 120px, #fff, transparent),
    radial-gradient(1px 1px at 150px 60px, #fff, transparent),
    radial-gradient(1px 1px at 210px 200px, #fff, transparent),
    radial-gradient(2px 2px at 260px 40px, #fff, transparent),
    radial-gradient(1px 1px at 310px 180px, #fff, transparent),
    radial-gradient(2px 2px at 40px 250px, #fff, transparent),
    radial-gradient(1px 1px at 130px 300px, #fff, transparent);

  background-size: 350px 350px;
  animation: starsFallFast 12s linear infinite;
  opacity: 0.9;
}

body::after {
  background-image:
    radial-gradient(1.5px 1.5px at 50px 80px, #fff, transparent),
    radial-gradient(2px 2px at 180px 20px, #fff, transparent),
    radial-gradient(1px 1px at 240px 150px, #fff, transparent),
    radial-gradient(2px 2px at 300px 90px, #fff, transparent),
    radial-gradient(1px 1px at 80px 200px, #fff, transparent);

  background-size: 500px 500px;
  animation: starsFallSlow 22s linear infinite;
  opacity: 0.6;
}

@keyframes starsFallFast {
  from {
    transform: translateY(-10%);
  }

  to {
    transform: translateY(40%);
  }
}

@keyframes starsFallSlow {
  from {
    transform: translateY(-10%);
  }

  to {
    transform: translateY(40%);
  }
}

body > * {
  position: relative;
}

body::before,
body::after {
  pointer-events: none !important;
}
/* ------------------------------------- */
.s-block--testimonials .s-slider-block__title {
    display: none !important;
}

.s-contacts-list-horizontal {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.s-contacts-list-horizontal .s-contacts-item {
    position: relative;
    overflow: hidden;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    transition: all 0.35s ease;
}

.s-contacts-list-horizontal .s-contacts-item::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -120%;
    width: 55%;
    height: 220%;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 35%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.08) 65%,
        transparent 100%
    );

    transform: rotate(25deg);
    pointer-events: none;

    animation: contact-shine 2.5s ease-in-out infinite;
}

@keyframes contact-shine {
    0% {
        left: -120%;
    }

    45% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

.s-contacts-list-horizontal .s-contacts-item:hover::before {
    animation: contact-shine-hover 0.9s ease forwards;
}

@keyframes contact-shine-hover {
    0% {
        left: -120%;
    }

    100% {
        left: 140%;
    }
}

.s-contacts-list-horizontal .s-contacts-item:hover {
    transform: translateY(-5px);

    background: rgba(255, 255, 255, 0.13) !important;

    border-color: rgba(255, 255, 255, 0.35);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.s-contacts-list-horizontal .s-contacts-icon {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
}

.s-contacts-list-horizontal .s-contacts-item .unicode {
    display: none;
}

.s-contacts-list-horizontal .s-contacts-icon svg {
    width: 26px;
    height: 26px;
}
/* ------------------------------------- */
custom-salla-product-card.s-product-card-entry {
    position: relative !important;
    overflow: hidden !important;

    background: rgba(14, 17, 26, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 18px !important;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.06);

    transform: translateY(0);
    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

custom-salla-product-card.s-product-card-entry::after {
    content: "";
    position: absolute;

    top: -80%;
    right: -80%;

    width: 45%;
    height: 260%;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.03) 30%,
        rgba(255,255,255,0.38) 50%,
        rgba(255,255,255,0.03) 70%,
        transparent 100%
    );

    transform: rotate(20deg);

    pointer-events: none !important;
    z-index: 999 !important;

    opacity: 0;

    transition:
        right 0s linear 0.45s,
        opacity 0.25s ease;
}

custom-salla-product-card.s-product-card-entry:hover::after {
    right: 140%;
    opacity: 1;

    transition:
        right 0.75s cubic-bezier(0.2, 0.7, 0.2, 1),
        opacity 0.15s ease;
}

custom-salla-product-card.s-product-card-entry:hover {
    transform: translateY(-6px) !important;

    border-color: rgba(237, 28, 36, 0.65) !important;

    box-shadow:
        0 18px 45px rgba(0,0,0,0.45),
        0 0 28px rgba(237,28,36,0.16),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

custom-salla-product-card.s-product-card-entry
.s-product-card-image-contain {
    transition: transform 0.5s ease !important;
}

custom-salla-product-card.s-product-card-entry:hover
.s-product-card-image-contain {
    transform: scale(1.035) !important;
}

custom-salla-product-card.s-product-card-entry::before {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.10),
            transparent 25%,
            transparent 75%,
            rgba(237,28,36,0.08)
        );

    pointer-events: none !important;
    z-index: 998 !important;

    opacity: 0.5;
}
/* ------------------------------------- */






/* ##################### */
.s-comments-item-has-order-check-text, .s-comments-item-rated-widget {
    display: block;
}

.s-comments-flex {
    display: flex;
    background: #fbd34b;
    border-radius: 10px;
    padding: 2px 2px 1px 6px;
}

.s-comments-item-user-info {
    margin-bottom: 0px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0px;
    flex-direction: column;
}

.s-comments-item-user-wrapper {
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.s-comments-item-has-order-check-icon {
    height: 1rem;
    width: 1rem;
    --tw-bg-opacity: 1;
    background-color: #000;
    --tw-text-opacity: 1;
    color: #000 !important;
    fill: #000;
}

.s-comments-item-has-order-check-text {
    color: #000;
    font-size: 12px;
    line-height: 20px;
    height: 16px;
    margin: 1px 4px 0px 3px;
}

.s-comments-item-rated-widget {
    color: #000;
    font-size: 12px;
    margin: -1px 0px 0px 0px;
    line-height: 20px;
    height: 16px;
}



[dir="rtl"] .end-4 {
    MARGIN: -15PX 7PX 0PX 4PX;
}
[dir="rtl"] .pe-16 {
    PADDING: 7PX 9PX 9PX 0PX;
}

.lazy__bg.lazy_menu {
    position: relative;
    height: 33px;
    width: 33px;
    flex-shrink: 0;
    background-repeat: no-repeat;
}

[dir="rtl"] .menu_promo {
    left: 2.5rem;
    border-radius: 8px;
    padding: 4px 8px 4px 8px;
    background: #da3428;
}

@keyframes waveGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/*-----*/
.logo-dark{
animation:pulsate-bck 1.3s ease-in-out 2.5s infinite !important
}

/*
.store-footer .footer-container:is(.dark *) {
    --tw-border-opacity: 0.2;
    BACKGROUND: #212121;
    BORDER-RADIUS: 29PX;
}
.dark .da-brdr {
    border-bottom: #fc0300 solid 5px;
    border-color: #f90300 !important;
}
*/

#app > div.app-inner.flex.flex-col.min-h-full > footer > div > div > div.footer-bottom.flex.flex-col.lg\:flex-row.items-center.justify-between.py-4.gap-4::before {
    content: " ";
    display: block;
    font-size: 20px;
    background: transparent url(https://cdn.salla.sa/form-builder/PEKdAxn0CKNFAPLBFEt9M7KRCpyXypE1PbeUck44.jpg)0rem 0rem/100%no-repeat!important;
    width: 255px;
    height: 170px;
    margin: 0 auto 5px;
}

.s-products-list-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10PX;
}




salla-slider[type]:not(.hydrated) > div:where([dir="rtl"], [dir="rtl"] *), salla-slider[type]:not(.hydrated) .swiper > div > div:where([dir="rtl"], [dir="rtl"] *), .carousel-slider .swiper:where([dir="rtl"], [dir="rtl"] *) {
    padding-left: 1rem;
}



@media (min-width: 1024px) {
.after-one {
    margin-top: -10rem !important;
}
}

salla-slider#main-slider-10 {
    z-index: 0;
}

salla-slider#main-slider-10:before {
    content: "";
    background-image: linear-gradient(0deg, #0d0f17 7%, #0000 51%);
    background-size: contain;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
}













a.flex.gap-1.w-full.items-center.justify-center.border-none.bg-transparent.px-1.py-2.hover\:text-\[\#004D5A\].transition-colors.duration-200.text-store-color {
    display: none !important;
}