/* ── Terrace Gardening Product Categories ────────────────────── */
.terrace-categories {
  padding: 56px 0;
  background: #ffffff;
  overflow: hidden;
}

.terrace-categories .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Infinite scroll track */
.carousel-wrapper {
  overflow: hidden;/
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: infiniteScroll 40s linear infinite;
}

.carousel-track:hover { 
  animation-play-state: paused; 
}

@keyframes infiniteScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Category cards */
.product-card {
  flex-shrink: 0;
  width: 240px;
}

.product-card .card-link {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  background: #ffffff;
  text-decoration: none;
  overflow: hidden;
  /* Smooth transition for the shadow */
  transition: box-shadow 0.3s ease; 
}


/* Image wrapper - Clean and clear */
.product-card .image-wrapper {
  overflow: hidden;
  flex-shrink: 0;
  background: none; /* Ensures no background tint */
}

/* Full-width image at top */
.product-card .product-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border: none;
  filter: none; /* Ensures no blur or fog filters are applied */
}

/* Text area */
.product-card .card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card .product-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0;
}

.product-card .product-desc {
  font-size: 0.78rem;
  color: #6b6b6b;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}