
.slider-wrap {
  position: relative !important;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.slides {
  display: flex;
  width: 100%;
  -webkit-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
  width: 100%;
  height: 600px;
  overflow: hidden;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.btn {
  position: absolute;
  top: 50% !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 14px;
  z-index: 10;
}

.btn-prev { left: 12px; }
.btn-next { right: 12px; }

.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0;
}

.dot {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.dot.active { background: #555; }

.slider-bottom-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 32px;
  background: #fff;
  width: 62%;
  max-width: 900px;
  margin-top: -170px;
}

.slider-bottom-text {
  color: #333;
  font-size: 15px;
  font-weight: 700;
}

.slider-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  border: 1px solid #333;
  white-space: nowrap;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.slider-link::after {
  content: "→";
  font-size: 12px;
}

.slider-link:hover {
  background: #f5f5f5;
}

@media screen and (max-width: 767px) {
  .slide {
    height: 400px;
  }

  .slider-bottom-bar {
    width: 80%;
    gap: 16px;
    padding: 16px 20px;
    margin-top: -56px;
  }

  .slider-bottom-text {
    font-size: 13px;
  }

  .slider-link {
    font-size: 13px;
    padding: 7px 16px;
  }
}