/* ── Terrace Gardening Products Slider ───────────────────────── */
.terrace-section {
  padding: 66px 20px;
  background:
    linear-gradient(180deg, #f4faf6 0%, #ffffff 100%);
}

.terrace-section .heading {
  margin-bottom: 28px;
  text-align: center;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #1b5436;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.nav-btn:hover { background: #2e7d52; }

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

@media (max-width: 1240px) {
  .prev-btn { left: 5px; }
  .next-btn { right: 5px; }
}

.product-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  padding: 14px 5px 18px;
  justify-content: flex-start;
  scroll-behavior: smooth;
}

/* ── Product Card — matches subcategory prod-card ────────────── */
.product-card1 {
  flex-shrink: 0;
  width: 220px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e4ebe6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.product-card1:hover {
  transform: translateY(-4px);
  border-color: #a8cdb5;
  box-shadow: 0 18px 42px rgba(27, 84, 54, 0.13);
}

/* Image wrap */
.product-card1__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eaf3ec;
}

.product-card1__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card1:hover .product-card1__img-wrap img { transform: scale(1.05); }

/* Discount badge */
.product-card1__discount {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #d94b36;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
  letter-spacing: 0.05em;
  z-index: 5;
}

/* Card body */
.product-card1__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card1__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1b3a26;
  line-height: 1.35;
  min-height: 2.7em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.15s;
}
.product-card1:hover .product-card1__name { color: #2e7d52; }

.product-card1__pricing {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}

.product-card1__price {
  font-size: 1rem;
  font-weight: 800;
  color: #1b5436;
}

.product-card1__mrp {
  font-size: 0.76rem;
  color: #aab5ae;
  text-decoration: line-through;
}

@media (max-width: 760px) {
  .terrace-section {
    padding: 48px 0;
  }

  .product-container {
    padding: 0 14px;
  }

  .product-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 22px;
    scrollbar-width: none;
  }

  .product-slider::-webkit-scrollbar {
    display: none;
  }

  .product-card1 {
    width: min(72vw, 230px);
    scroll-snap-align: start;
  }

  .nav-btn {
    display: none;
  }
}
