.product-dyna {
  padding-bottom: 1rem;
  padding-top: 3rem;
}

.product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  transition: .3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.product-image {
  text-align: center;
  height: 230px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 20px;
}

.product-content h4 {
  color: var(--bs-primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--bs-primary);
  border-radius: 50px;
  padding: 10px 18px;
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.product-btn:hover {
  background: var(--bs-primary);
  color: #fff;
}