/* Add custom CSS styles below */ 
/* Add custom CSS styles below */ 
/* Add custom CSS styles below */ 
/* Add custom CSS styles below */ 

/* General styles */
:root {
  --main-color: #6c64ac;
  --second-color: #2ab4e8;
  --text-color: #ffffff;
}
.s-cart-summary-total {
    color: #fff;
}
.iti input, .iti input[type=text], .iti input[type=tel] {
    color: black;
}
.s-login-modal-input {
    color: black;
}
.iti--separate-dial-code .iti__selected-dial-code {
    color: black;
}
.s-verify-input[type=number] {
    color: black;
}
.btn--outline-primary {
    border-width: 1px;
    border-color: var(--text-color);
    color: var(--main-color);
}
.btn--outline-primary:hover {
    background-color: var(--second-color);
    color: var(--main-color);
}
textarea.form-input {
    color: black;
}
b, strong {
    font-weight: bolder;
    color: black;
}

body:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    z-index: 999999;
    background:  var(--main-color) url(https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/aeKdzl/3ssQceHl3FnU523lbEXJ45JBCzAdmaUVwlyJo3yT.png);
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 300px;
    animation-name: fade-in;
    animation-duration: 2s;
    transform: scale(0);
    border: none;
}
.s-quantity-input-input {
    color: black;
}

@keyframes fade-in {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    75% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(.1);
    }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.s-block--photos-slider {
    margin-top: 0 !important;
}
.header-btn__icon {
    color: #fff;
}
.swiper {
    padding-left: 0 !important;
}
.navbar-brand img {
  max-height: 50px;
  animation: pulse 1.2s ease-in-out infinite alternate; /* Apply pulsating animation */
}

@keyframes pulse {
  0% {
    transform: scale(1); /* Start with normal size */
  }
  100% {
    transform: scale(1.1); /* Pulsate to 110% of original size */
  }
}

salla-slider.photos-slider .swiper-slide {
    position: relative;
    margin-left: 1.1rem;
    margin-right: 0.5rem;
    height: auto;
    width: 100%;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
}
/* Navigation */
.main-nav-container.fixed-header .inner {
    transform: translate3d(0, 0, 0);
    background: linear-gradient(90deg, rgb(42, 180, 232, 0.8), rgb(89, 134, 195, 0.8),rgb(108, 100, 172) ); /* Added rgba gradient background */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgb(251, 251, 255);

}

.bg-inherit {
    background: linear-gradient(90deg, #2ab4e8, #5986c3,#6c64ac); /* Added gradient background */
    transform: translate3d(0, 0, 0);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgb(251, 251, 255);
}

.bg-inherit:hover {
    background: linear-gradient(90deg, #2ab4e8, #5986c3,#6c64ac); /* Added gradient background */
    transform: translate3d(0, 0, 0);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgb(251, 251, 255);
}


#mobile-menu {
  color: var(--text-color);
  padding-right: 111px;
}

#mobile-menu a:hover {
  color: var(--second-color);
}

.sicon-menu {
  color: var(--second-color);
}

.mm-spn.mm-spn--navbar ul,
.mm-spn.mm-spn--navbar.mm-spn--main:after {
     background: linear-gradient(90deg, #2ab4e8, #5986c3,#6c64ac);
    color: #fff;
}

/* Latest Products */
.s-product-card-vertical {
  flex-direction: column;
  box-shadow: -6px 6px 12px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border: 2px solid #6d61aa;
}
.s-product-card-vertical:hover {
  flex-direction: column;
 box-shadow: -1px -3px 45px #2eaaff;
  transform: translateY(-3px) scale(1.02);
    border: 2px solid #2eaaff;

}
 

.s-product-card-content {
  color: white;
  border-radius: 2%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.footer-is-light .store-footer .contact-social {
  display: none;
}

.s-product-card-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #6d61aa, #2076b2,#2eaaff);
  z-index: -1;
  transform: skew(45deg);
  transition: transform 0.5s;
  opacity: 0;
}


@keyframes floating {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.s-product-card-vertical {
  animation: floating 3s ease-in-out infinite;
}


/*line*/
.s-product-card-content:hover:before {
  transform: skew(-45deg);
  opacity: 0.5;
}

.s-product-card-content h2 {
  margin: 0;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

.s-product-card-content p {
  margin: 10px 0;
  font-size: 1rem;
}

.s-product-card-content a {
  color: white;
  text-decoration: none;
}

.s-product-card-content:hover {
  transform: translateY(-5px);
}

.s-button-btn {
  background-color: var(--main-color);
  color: #ffcc00;
}

.s-button-btn:hover {
  background-color: var(--second-color);
  color: #d02f78;
  border-color: white;
}

.s-product-card-price {
  font-size: 1.3rem; /* Increased for better prominence */
  line-height: 1.75rem;
  font-weight: 700;
  color: transparent;
    background: linear-gradient(135deg, #6d61aa, #6d61aa);
  background-clip: text;
  -webkit-background-clip: text;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  display: inline-block;
  position: relative;
}

.s-product-card-price:hover {
  transform: scale(1.1);
  background: linear-gradient(90deg, #6d61aa, #2076b2,#2eaaff);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff; /* Change text color on hover */
}

/* Subtle Glow Effect */
.s-product-card-price::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: blur(8px);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.s-product-card-price:hover::after {
  opacity: 0.5;
}

/* Favorite Button Styles */
.s-button-element:not(:disabled):not([loading]) {
    background: linear-gradient(90deg, #2eaaff, #2076b2,#6d61aa)!important;
    color: #fbfbff;
    border: none;
    box-shadow: rgba(240, 151, 41, 0.24) 0px 3px 8px;
    animation: signal 1200ms linear infinite;
}

@keyframes signal {
    0% {
        box-shadow: 0 0 0 0 #2eaaff;
    }
    100% {
        box-shadow: 0 0 0 5px #6d61aa;
    }
}
.s-product-card-content-main a{
 color: var(--main-color);
    text-decoration: none;
    font-weight: bold;
    font-family: 'Poppins', sans-serif; /* Modern and clean font */
    font-size: 1.1rem; /* Slightly larger font size for better readability */
    letter-spacing: 0.5px; /* Adds spacing between letters for a more refined look */
    line-height: 1.5; /* Improves readability by increasing the line height */
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    display: inline-block;
}


/* Hover effect */
.s-product-card-content-main a:hover {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Adds a shadow effect on hover */
     transform: scale(1.1);
  background: linear-gradient(90deg, #2eaaff, #2076b2,#6d61aa);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff; /* Change text color on hover */
}

/* Gradient text effect */
.s-product-card-content-main a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color));
    z-index: -1;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Underline effect on hover */
.s-product-card-content-main a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: bottom right;
}

.s-product-card-content-main a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Background animation effect */
.s-product-card-content-main a::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--main-color), var(--accent-color));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
    border-radius: 5px; /* Adds rounded corners to the background */
}

.s-product-card-content-main a:hover::before {
    opacity: 1; /* Shows background on hover */
}


.s-product-card-content-main a:hover {
    text-transform: uppercase; /* Changes text to uppercase on hover */
    letter-spacing: 1px; /* Increases letter spacing */
}


.s-slider-block__title h2::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--second-color);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}


salla-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--main-color);
}

/* Modern Price */

.s-slider-block__display-all {
    color: var(--second-color);
    /* animation: test 1200ms linear infinite !important; */
    font-size: 25px !important;
    text-shadow: 2px 2px var(--main-color);
}
.s-slider-block__title h2 {

    font-size: 25px !important;
    text-shadow: 2px 2px var(--main-color);
  color: var(--second-color);
}
.s-cart-summary-total {
  color: #fff; /* White text color */
  font-weight: bold; /* Make the text bold */
  background: linear-gradient(135deg, #6c64ac, #5986c3,#2ab4e8); /* Gradient background */
  padding: 10px 20px; /* Add padding for spacing */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  text-align: center; /* Center align text */
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s; /* Smooth transitions for hover effects */
  position: relative; /* Position for pseudo-element */
  overflow: hidden; /* Hide overflow for pseudo-element animation */
}

.s-cart-summary-total::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  transition: transform 0.5s, opacity 0.3s;
  transform: scale(0);
  opacity: 0;
  border-radius: 50%;
  z-index: -1;
}

.s-cart-summary-total::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1); /* Light overlay for subtle texture */
  pointer-events: none; /* Allow clicks to pass through */
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.s-cart-summary-total:hover::before {
  transform: scale(1);
  opacity: 1;
}

.s-cart-summary-total:hover::after {
  opacity: 1;
}

.s-cart-summary-total:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
  background: linear-gradient(45deg, #2ab4e8, #5986c3,#6c64ac); /* Reverse gradient on hover */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}

.s-cart-summary-total:active {
  transform: scale(0.95); /* Slightly shrink on active */
  box-shadow: 0 4px 6px rgba(0, 0,)}
  .header-btn__icon {
  color: #fff;
  background-color: #2c3e50;
  padding: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  animation: colorChange 3s infinite alternate,
             rotateIcon 3s infinite linear,
             scaleIcon 2s infinite alternate,
             pulseIcon 1.5s infinite alternate,
             moveUpDown 4s infinite ease-in-out,
             skewIcon 5s infinite alternate,
             bounceIcon 2s infinite ease-in-out,
             backgroundColorChange 6s infinite alternate,
             shadowPulse 2s infinite ease-in-out,
             flipIcon 5s infinite ease-in-out,
             borderColorChange 4s infinite alternate,
             drawPath 6s infinite linear;
}

@keyframes colorChange {
  0% {
    color: #000000;
  }
  50% {
    color: #000000;
  }
  100% {
    color: #000000;
  }
}

@keyframes rotateIcon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scaleIcon {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

@keyframes pulseIcon {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes skewIcon {
  0% {
    transform: skew(0deg);
  }
  50% {
    transform: skew(10deg, 10deg);
  }
  100% {
    transform: skew(0deg);
  }
}

@keyframes bounceIcon {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}

@keyframes backgroundColorChange {
  0% {
    background-color: #ffffff;
  }
  50% {
    background-color: #ffffff;
  }
  100% {
    background-color: #ffffff;
  }
}

@keyframes shadowPulse {
  0% {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 0, 0, 1);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
}

@keyframes flipIcon {
  0% {
    transform: perspective(400px) rotateX(0deg);
  }
  50% {
    transform: perspective(400px) rotateX(180deg);
  }
  100% {
    transform: perspective(400px) rotateX(360deg);
  }
}

@keyframes borderColorChange {
  0% {
    border-color: #2ab4e8;
  }
  50% {
    border-color: #5986c3;
  }
  100% {
    border-color: #6c64ac;
  }
}

@keyframes drawPath {
  0% {
    stroke-dasharray: 0 100;
  }
  50% {
    stroke-dasharray: 50 50;
  }
  100% {
    stroke-dasharray: 100 0;
  }
}
.s-slider-v-centered .s-slider-block__title-nav button.swiper-button-disabled {
  opacity: 1;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 transparent,0 0 transparent,0 0 transparent;
  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);
  display: none;
}
.banner--fixed img {
  display: block;
  width: 100%;
  border-radius: .375rem;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: #f3f4f6;
  background-color: rgba(243,244,246,var(--tw-bg-opacity));
  -o-object-fit: cover;
  object-fit: cover;
  background: none;
}
/* General Styles */
.leading-6 {
    line-height: 1.5rem;
    font-size: 1.25rem; /* Specify a consistent font size */
    color: var(--primary-color); /* Apply primary color */
    font-weight: 600; /* Add some weight for emphasis */
    text-transform: uppercase; /* Uppercase text for better readability */
    letter-spacing: 0.05em; /* Slight letter spacing for readability */
}


/* Responsive Styles */
@media (min-width: 1024px) {
    .store-footer h3 {
        margin-bottom: 1.25rem;
        padding: 12px;
        color: white
    }
}
@media only screen and (min-width: 1024px) {
    @media (min-width: 1024px) {
        .main-menu {
            display: flex;
            margin: 1px;
        }
    }
}

.main-nav-container.fixed-pinned .navbar-brand img {
  max-height: 50px;
  animation: pulse 1.2s ease-in-out infinite alternate; /* Apply pulsating animation */
}

@keyframes pulse {
  0% {
    transform: scale(1); /* Start with normal size */
  }
  100% {
    transform: scale(1.1); /* Pulsate to 110% of original size */
  }
}
.store-footer {
    background: linear-gradient(90deg, #2ab4e8, #5986c3, #6d61aa);
    padding: 30px;
    font-size: 14px;
    border-top-left-radius: 125px;
    border-top-right-radius: 125px;
    text-align: center;
    transition: box-shadow 0.3s;
    box-shadow: 0 3px 6px rgba(102, 15, 86, 0.333), 0 6px 20px rgba(190, 78, 169, 0.262);
    position: relative;
    overflow: hidden;
}

.store-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    backdrop-filter: blur(10px);
    z-index: -1;
}

.footer-is-light .store-footer .store-footer__inner {
    background-color: transparent;
    font-size: 18px !important;
    border-bottom-color: transparent;
}

.store-footer__inner {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #CF5D8F !important;
    border-radius: 50%;
    padding: 20px;
    backdrop-filter: blur(5px);
}


.store-footer__inner .flex {
    justify-content: center;
}

.store-footer__inner .max-w-sm {
    margin: auto;
}

.footer-list {
    color: white !important;
}

.store-footer__inner .max-w-sm {
    color: white !important;
}

.store-footer a {
    color: white !important;
    text-decoration: none;
}

.store-footer a:hover {
    color: #fed009;
}

.s-contacts-header {
    display: none;
}

.s-contacts-list.s-contacts-list-vertical {
    align-items: center;
}

.store-footer i {
    color: white !important;
    border-color: transparent !important;
}

.store-footer .contact-social {
    border: none;
}

.store-footer__inner {
    text-align: center;
}

.store-footer__inner h3:hover {
    color: white !important;
      

}

.text-center {
    text-align: center;
    padding: 0;
    position: relative;
    font-weight: bold;
    font-size: 1.2rem;
}

.text-center::before {
    content: "برمجه وتطوير ADFAZ";
    display: block;
    text-align: center;
    padding: 10px;
    color: #f9fafb;
    font-size: 1.2rem;
}
.copyright-text p {
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, 1);
    color: rgb(255 255 255);
}
.store-footer h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: white;
}
.banner-entry{
    width: 42vw;
    min-height: 100px;
    background: unset;
}

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

}     
.lazy__bg:hover {
    transform: scale(1.05);
    transition: .9s;
}

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

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