.products-list {
  text-align: center;
  padding: 5rem 8%;
  background: none;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  color: var(--secondary);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
}

@media (min-width: 576px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: transparent;
  transition: all 0.3s ease;
  text-align: left;
  padding: 0;
  border-radius: 0;
  max-width: 360px;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.03);
}

.product-info {
  margin-top: 1rem;
}

.category {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.product-info h4 {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0.3rem 0;
}

.rating {
  color: #f5b400;
  font-size: 0.9rem;
}

.rating span {
  color: var(--secondary);
  margin-left: 4px;
  font-size: 0.85rem;
}

.by {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-top: 0.3rem;
  margin-bottom: 0.7rem;
}

.by span {
  color: var(--primary);
  font-weight: 600;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.new-price {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.old-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 0.95rem;
}

.add-btn {
  background: #e6f7ff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
}

.add-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    max-width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }
}
