#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: white;
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#backToTop:hover {
    background-color: #f0f0f0;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(black var(--progress, 0deg), transparent 0deg);
    mask: radial-gradient(transparent 65%, black 66%);
    z-index: -1;
}

#backToTop .arrow {
    position: relative;
    z-index: 2;
    bottom:2px;
}




.banner-entry {
    height:400px;
    width:600px;
}





/* Target the logos slider section and set background to white */
.s-block--logos-slider {
    background-color: white !important;
}

.s-block--logos-slider.bg-gray-100 {
    background-color: white !important;
}



/*brand block*/
.s-block__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
}

.s-block__title .right-side {
    width: 100%;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.s-block__title h2 {
    font-size: 1.5rem;
    font-weight: 600;
    display: inline-block;
    margin: 0 auto;
}



.s-block__display-all {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
}







/*store */
.s-block--features__item {
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  padding: 1.5rem;
  border-radius: 0.5rem;
  /* Add these to prevent content clipping */
  overflow: visible;
  z-index: 1;
}

.s-block--features__item:hover {
  transform: scale(1.05);
  border-color: black;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Ensure icon stays visible */
  z-index: 2;
}

.feature-icon {
  /* Add these to keep icon stable */
  position: relative;
  z-index: 3;
}

.feature-icon i {
  transition: transform 0.3s ease;
  display: inline-block; /* Important for transform */
}

.s-block--features__item:hover .feature-icon i {
  transform: scale(1.1);
  /* Prevent icon from being hidden */
  position: relative;
  z-index: 3;
}






/*slider overlay*/
.swiper-slide {
    min-height: 150px; 
    height: 150px;
}

@media (min-width: 768px) {
    .swiper-slide {
        min-height: 400px;
        height: 400px;
    }
}



/*lbanner*/
.s-block--fixed-banner .container {
    max-width: 100%; 
    padding-left: 20px;
    padding-right: 20px; 
}

/*lswr*/
.grid.md\:grid-cols-2 {
    max-width: 100%;
    padding-left: 20px; 
    padding-right: 20px;
}


/* Apply styles to all product slider containers */
.s-block--best-offers, 
.s-products-slider-wrapper,
.s-slider-wrapper, 
.swiper { 
    width: 100vw; 
    max-width: 100%; 
    padding: 0 20px;
    box-sizing: border-box; 
}

/* Ensure the inner slider takes full width */
.s-products-slider-slider,
.swiper-container { 
    width: 100%; 
    max-width: 100%; 
    box-sizing: border-box; 
}

/* Ensure the swiper slides take full width */
.swiper-slide { 
    width: 100%; 
    box-sizing: border-box; 
}