

/* Ex-03 */

.wrap-products {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}

.item {
  width: calc((100% - 60px) / 3);
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000020;
  transition: all 0.3s ease-in-out;
}

.item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 10px;
}

.item-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.item .price-box {
  margin-bottom: 20px;
}

.item .btn-action {
  margin-top: auto;
}