

.main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.container {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.container:hover {
  transform: translateY(-5px);
}

.box1 {
  width: 50%;
  aspect-ratio: 1 / 1;
  float: left;
  padding: 4px;
}

.box1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.discount-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d90429;
  color: white;
  padding: 6px 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  z-index: 2;
}

.product-info {
  clear: both;
  padding: 20px;
  text-align: center;
}

.product-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.product-info p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.price {
  font-size: 22px;
  color: #e63946;
  font-weight: bold;
}

.buy-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background: #1d3557;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  transition: background 0.3s ease;
}

.buy-btn:hover {
  background: #457b9d;
}
