.hero-slider {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  background: linear-gradient(135deg, #cb7111, #6a11cb);
  animation: gradientFlow 12s ease infinite;
}

/* Gradient movement animation */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.heroSwiper{
    height: 100%;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Initially hide all content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

/* Only show active slide content */
.hero-content.active {
  opacity: 1;
  transform: translateY(0);
}

/* Text + Button styling */
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero-btn {
  background: #ffb100;
  color: #111;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #ffd36b;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffb100;
  width: 48px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(4px);
   display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-pagination-bullet {
    background: #0ff;
}

.swiper-pagination-bullet-active {
  background: #ffb100;
}

/* bottom row of tabs */
.static-tabs{
    height: 23%;
    display: flex; 
    flex-direction: row;
    gap:10px; 
    align-items: center;
    background: linear-gradient(0deg, #9b7e5e, #6a11cb);
    padding: 10px 0;
}
.product-tab{
    background: #143560;
    border-radius:10px;
    width:15.7%;
}