body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

.page-title {
  text-align: center;
  font-size: 32px;
  padding: 40px 0 10px;
  color: #333;
}

.shop-container {
  display: flex;
  flex-wrap: wrap;
  background-image: url('hcb.png'); /* Your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;
  gap: 30px;
  padding: 30px;
}

.product-card {
  width: 260px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.label {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #cc5c34;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 13px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 5;
}

.product-details {
  padding: 15px;
  text-align: center;
}

.product-details h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-details p {
  font-weight: bold;
  font-size: 15px;
  color: #000;
  margin-bottom: 15px;
}
.add-cart {
  background-color: black;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.add-cart:hover {
  background-color: white;
  color: black;
  border: 2px solid black;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
