.slider-container {
  position: relative;
}

.arrow-wrap {
  position: absolute;
  left: 50%;
  bottom: -70px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.arrow-wrap button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.slick-prev,
.slick-next {
  position: static !important;
  transform: none !important;
}

.slick-initialized .slick-slide {
  display: block;
  width: 360px !important;
  height: 450px !important;
  padding: 12px;
  margin: 20px;
  transition: all 0.5s ease-in-out;
  border: 1px solid #e8e8e8;
}

.slide {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, opacity 0.5s ease;
  width: 100%;
  height: 100%;
}

.card-content {
  padding: 10px;
}

.card-content img.main-img {
  width: 290px;
  height: 290px;
  border-radius: 10px;
  object-fit: contain;
  margin: 0 auto;
}

.card-content h3 {
  font-size: 0.7rem;
  line-height: 1rem;
  color: #000;
  font-family: "Noto Sans", Sans-serif;
  text-align: left;
}

.card-content h4 {
  font-size: 0.7rem;
  line-height: 1rem;
  font-family: "Noto Sans", Sans-serif;
  text-align: left;
  color: #000;
}

/* --- Fade-in / Fade-out overlay --- */
.desc {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 1);
  color: #000;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4rem;
  opacity: 0;
  transition: opacity 0.6s ease;
  text-align: left;
  font-family: "Noto Sans", Sans-serif;
  pointer-events: none;
    align-content: space-evenly;
}

.slide:hover .desc {
  opacity: 1;
  pointer-events: auto;
}

.desc h3,
.desc h4 {
  font-size: 0.7rem;
  line-height: 1rem;
  font-family: "Noto Sans", Sans-serif;
  text-align: left;
}

/* --- Slick center focus effects --- */
.center .slick-slide {
  opacity: 0.4;
  transform: translateY(80px) scale(0.95);
  pointer-events: none;
  z-index: 1;
}

.center .slick-center {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 5;
}

.center .slick-current.slick-active:not(.slick-center) {
  opacity: 0.2;
  transform: translateY(-40px) scale(0.9);
  z-index: 0;
}

/* --- Product elements --- */
.product-brand-logo {
  height: 24px !important;
  margin-bottom: 10px;
  margin-top: 10px;
}

.product-button {
  background-color: #82b341;
  color: #fff;
  border: 1px solid #82b341;
  border-radius: 30px;
  padding: 10px 30px;
  text-transform: capitalize;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.product-button:hover {
  background-color: #fff;
  color: #82b341;
}

@media (max-width: 1200px) and (min-width: 768px) 
{
.arrow-wrap {
    left: 42%;
    bottom: -80px;
}
.slick-initialized .slick-slide {
    width: 350px !important;
    height: 450px !important;
    padding: 10px;
    margin: 16px;
}
.card-content img.main-img {
    width: 270px;
    height: 270px;
}
}
