.products-featured-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.products-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.product-card.modern {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
}

.product-card.modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 10px;
  color: var(--cm-primary, #2c3e50);
}

.product-desc {
  color: #666;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 15px;
}

.details-btn {
  background: var(--cm-primary, #2c3e50);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.details-btn:hover {
  background: #1a252f;
}

@media (max-width: 768px) {
  .products-featured-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-card.modern {
    height: 350px;
  }
  
  .product-img {
    height: 200px;
  }
}
