
body {
  background: #f9f9f9;
  margin: 0;
  font-family: Arial, sans-serif;
  padding-top: 160px;   /* FIX: Prevent heading from hiding behind fixed top bar + navbar */
}

/* Heading at top center */
h2 {
  margin: 20px 0 30px 0;
  font-size: 32px;
  color: #222;
  text-align: center;
  font-weight: 700;
}

/* Product slider container - Full width */
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  padding: 20px 0;
  margin: 20px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Continuous scroll track */
.slide-track {
  display: flex;
  gap: 20px;                      /* Adds equal spacing */
  width: calc(240px * 12);        /* FIX: 240 = image width + gap */
  animation: scroll 35s linear infinite;
}

/* Infinite scroll movement (left → right full width) */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-240px * 6)); }  /* Moves exactly half for seamless loop */
}

/* Individual slide */
.slide {
  width: 240px;        /* FIX: matches calculation */
  flex-shrink: 0;
  text-align: center;
  padding: 0;
}

/* Product images */
.slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Product name */
.slide p {
  margin-top: 10px;
  font-size: 18px;
  color: #000;
  font-weight: 600;
  text-align: center;
  width: 100%;
  line-height: 1.3;
}