/* PRODUCTS HERO */
.products-hero {
  background: linear-gradient(135deg, #1e90ff, #6a11cb);
  color: #fff;
  text-align: center;
  padding: 140px 20px 100px;
}

.products-hero-inner h1,
.products-hero-inner p {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease forwards;
}

.products-hero-inner p {
  animation-delay: 0.2s;
}

.products-hero-inner h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 14px;
}

.products-hero-inner p {
  font-size: 16px;
  color: #eef2ff;
}

/* PRODUCTS SECTION */
.products-section {
  background: #f8f9fa;
  padding: 100px 60px;
}

.products-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* PRODUCT CARD */
.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease forwards;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

/* PRODUCT CAROUSEL - PORTRAIT STYLE */
.product-carousel {
  width: 100%;
  height: 320px; /* taller for portrait */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 18px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3f4f6;
}

.product-carousel img {
  width: auto;      /* let width adjust */
  height: 100%;     /* full height */
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.product-carousel img.active {
  opacity: 1;
}

/* PRODUCT TEXT */
.product-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.product-card p {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  margin-top: auto;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}
.products-intro {
  padding: 40px 20px;
  background-color: #f9fafb;
  text-align: center;
}
.products-intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 50px 20px;
}


/* Benefits Section */

/* PRODUCTS BENEFITS SECTION */
.products-benefits {
  background-color: #f9fafb; /* subtle light background */
  padding: 80px 20px; /* top-bottom spacing */
}

.products-benefits-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.products-benefits-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #111827; /* dark text for contrast */
  margin-bottom: 40px;
}

.products-benefits-inner ul {
  list-style: none; /* remove default bullets */
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* spacing between items */
}

.products-benefits-inner ul li {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px 25px;
  flex: 1 1 220px; /* responsive boxes */
  max-width: 250px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #374151;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-benefits-inner ul li:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Add icons using pseudo-element before each item */
.products-benefits-inner ul li::before {
  content: "✔"; /* you can use check or fontawesome icon */
  color: #0ea5e9; /* accent color */
  font-weight: bold;
  margin-right: 12px;
  font-size: 1.2rem;
}

/* FAQ Section */
.products-faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
}

.products-faq-inner h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

.faq-item {
  margin-bottom: 20px;
}

.products-faq {
  padding: 60px 20px;
  background-color: #f9fafb;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
}
.products-faq h2 {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1f2937;
}
.faq-item {
  margin-bottom: 20px;
}
.faq-item h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #2563eb; /* Blue accent for question */
  cursor: pointer;
}
.faq-item p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #555;
  margin-top: 5px;
}

/* CTA Section */
.products-cta {
  background-color: #0ea5e9;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  margin-top: 40px;
}
.products-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}
.products-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.products-cta a {
  display: inline-block;
  background-color: #facc15; /* bright yellow button */
  color: #1f2937;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.products-cta a:hover {
  background-color: #eab308;
  color: #fff;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .products-section {
    padding: 50px 20px;
  }

  .products-hero-inner h1 {
    font-size: 28px;
  }

  .products-hero-inner p {
    font-size: 14px;
  }

  .product-carousel,
  .product-carousel img {
    height: 250px;
  }
}
