/* Section 3 - Featured Products */
.section3-products {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.section3-products .container {
  max-width: none;
  margin: 0 auto;
  padding: 0 16px;
}

.section3-products h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section3-products p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 28px;
}

/* ✅ Carousel */
.section3-products .carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.section3-products .carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  will-change: transform;
  transition: none;
}

/* ✅ Product card */
.section3-products .product {
  flex: 0 0 auto;
  width: 220px;
  background: #fafafa;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.section3-products .product:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.section3-products .product-media {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.section3-products .product-media img {
  width: 100%;
  height: auto;
  display: block;
}

.section3-products h3 {
  font-size: 1.05rem;
  margin: 6px 0;
  color: #222;
}

.section3-products .product-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 40px;
}

/* CTA button */
.section3-products .product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(45deg, #7a3cff, #9b5eff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(122,60,255,0.12);
  transition: transform 0.22s ease, box-shadow 0.28s ease;
}

.section3-products .product-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(122,60,255,0.28);
}

/* CTA below carousel */
.section3-products .browse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 50px;
  background: linear-gradient(45deg, #7a3cff, #9b5eff);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(122,60,255,0.12);
  transition: transform 0.24s ease, box-shadow 0.28s;
  margin-top: 18px;
}

.section3-products .browse-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(122,60,255,0.28);
}

/* Responsive */
@media (max-width: 1024px) {
  .section3-products .product { width: 200px; }
}
@media (max-width: 768px) {
  .section3-products { padding: 60px 0; }
  .section3-products .product { width: 170px; }
  .section3-products h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .section3-products .product { width: 140px; padding: 12px; }
  .section3-products .product-desc { display: none; }
}
