
.showcase,
.showcase::before,
.showcase::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}


.showcase {
  /* font-size: 40.5%; */
    scroll-behavior: smooth;
     zoom: 0.6;
}

/* Very large screens */
@media (min-width: 2560px) {
  .showcase {
    zoom: 0.7;
  }
}

@media (min-width: 3860px) {
  .showcase {
    zoom: 0.9;
  }
}

/* Tablets (portrait & landscape) */
@media (min-width: 769px) and (max-width: 1024px) {
  .showcase {
    zoom: 0.5;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .showcase {
    zoom: 0.5;
  }
}

 /*
@media (max-width: 500px) {
  .showcase {
  }
} */

/* ::-webkit-scrollbar {
  width: 1.3rem;
}

::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: linear-gradient(180deg,violet, red);
  transition: all 0.5s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background: #222224;
}

::-webkit-scrollbar-track {
  background: #f9f9f9;
} */


.containerr {
  max-width: 150rem;
  padding: 0 1rem;
  margin: 0 auto;
}


#tranding {
  padding: 4rem 0;
}

@media (max-width:1440px) {
  #tranding {
    padding: 7rem 0;
  }
}

#tranding .tranding-slider {
  height: 52rem;
  padding: 2rem 0;
  position: relative;
}

@media (max-width:500px) {
  #tranding .tranding-slider {
    height: 45rem;
  }
}

.tranding-slide {
  width: 37rem;
  height: 42rem;
  position: relative;
}

@media (max-width:500px) {
  .tranding-slide {
    width: 28rem !important;
    height: 36rem !important;
  }
  .tranding-slide .tranding-slide-img img {
    width: 28rem !important;
    height: 36rem !important;
  }
}

.tranding-slide .tranding-slide-img img {
  width: 35rem;
  height: 46rem;
  border-radius: 2rem;
  object-fit: cover;
}




.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  display: none;
}

.tranding-slider-control {
  position: relative;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; 
}



/* 
.tranding-slider-control .swiper-pagination {
  position: relative;
  width: 25rem;
  bottom: 1rem;
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet {
  filter: drop-shadow(0px 8px 24px rgb(248, 250, 255));
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet-active {
  background: rgb(255, 129, 255);
} */

.tranding-slider-control .swiper-pagination {
  position: static;
  width: auto;              /* let it size naturally */
  bottom: 1rem;
  display: flex;
  justify-content: center;  /* center dots */
  gap: 0.6rem;              /* space between dots */
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background: #ffb378; /* faint violet when inactive */
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet-active {
  background: #ff801e; /* strong violet */
  box-shadow: 
    0 0 10px rgba(161, 87, 247 0.8),
    0 0 20px rgba(161, 87, 247 0.6),
    0 0 40px rgba(161, 87, 247 0.4); /* glowing effect */
}


    /* Highlight active (center) slide */
.tranding-slide.swiper-slide-active .tranding-slide-img img {
  border: 2px solid #162E49; /* violet border */
   box-shadow: 0 0 55px #ffb378; /* even glow */
  transition: all 0.3s ease-in-out;
}

.drag-instruction {
  text-align: center;
  font-size: 1.5rem;
  color: rgb(201, 156, 253);
  font-weight: 400;
  margin-bottom: 0.8rem;
  animation: blink 3.5s infinite;
}

.drag-instruction i {
  margin-left: 6px;
  font-size: 1.2rem;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
