.product-types-section {
  direction: rtl;
  padding: 40px 8%;
  background: #f6f7f9;
  /* text-align: center; */
}

.section-title {
  text-align: center;
  font-size: clamp(1.375rem, 1.1731rem + 0.9231vw, 1.75rem);
  color: #1f2d3d;
  margin-bottom: 20px;
}

/* Card */
.product-type-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  margin: 5px auto 15px;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
  width: 90%;
  max-width: 600px;
}

.product-type-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text */
.product-text {
  /* max-width: 75%; */
}

.product-text h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #1f2d3d;
}

.product-text p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

/* Icon (right side) */
.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #e8f1ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-left: 15px;
}
