

/* SLIDER WRAPPER */
.slider-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  margin-top: 0px;
  padding: 10px;
}

/* SLIDES */
.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  padding: 50px 60px;
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  z-index: 2; 
  pointer-events: auto;
}

/* TEXT CONTENT */
.slide-overlay {
  width: 50%;
  color: #1c344a;
}

.slide-overlay h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

.slide-overlay p {
  margin: 15px 0 25px;
  font-size: 20px;
  color: #444;
}

/* SHOP NOW BUTTON */
.shop-btn-wrap {
  margin-top: 25px;
}

.shop-now-btn {
  padding: 14px 38px;
  background: #2bae66;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.shop-now-btn:hover {
  background: #24995a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ARROWS */
.arrow-hero {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.arrow-hero.left {
  left: 20px;
}

.arrow-hero.right {
  right: 20px;
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 18px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #2bae66;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .slider-wrapper {
    height: 410px;
  }

  .slide {
    padding: 40px 25px;
    text-align: center;
    justify-content: center;
  }

  .slide-overlay {
    width: 100%;
  }

  .slide-overlay h1 {
    font-size: 38px;
  }

  .slide-overlay p {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .slider-wrapper {
    height: 360px;
  }

  .slide-overlay h1 {
    font-size: 30px;
  }

  .slide-overlay p {
    font-size: 15px;
  }

  .shop-now-btn {
    width: 100%;
    font-size: 17px;
    padding: 14px 0;
  }
  .slider-container {
    width: 100%;
    padding: 0 7px;
    margin-top: 4px;
  }
  .arrow-hero {
    display: none;
  }
}
