@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

.product-card {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 0.55;
  border-radius: 16px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 0.75;
  overflow: hidden;
}

.product-image .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #b000e0;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: bold;
}

.wishlist {
  position: absolute;
  top: 6px;
  right: 6px;
  padding: 10px;
  background: white;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.wishlist svg {
  width: 16px;
  height: 16px;
  fill: #ccc;
  transition: fill 0.3s ease;
}

.wishlist.active svg {
  fill: #ff69b4;
}

.product-info {
  padding: 10px;
  text-align: left;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.price {
  font-size: 13px;
  margin-bottom: 5px;
}

.new-price {
  font-weight: 600;
  color: #000;
  margin-right: 6px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 12px;
  margin-right: 6px;
}

.discount {
  color: #ff6600;
  font-weight: bold;
  font-size: 12px;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 28px;
  width: 100px;
}

.cart-btn {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #444;
  background: white;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cart-btn:hover {
  background: #000;
  color: white;
}