* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

a {
  color: #00B7FF;
}


.product-card {
  background: #fff;
  width: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: #000;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.badge-purple { background-color: #7b2be2; }
.badge-blue   { background-color: #007bff; }
.badge-orange { background-color: #ff7a00; }

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

.product-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 15px;
  color: #666;
  margin-bottom: 14px;
}

.stars {
  font-size: 15px;
  color: #ff9900;
  margin-bottom: 12px;
}

.stars span {
  color: #333;
  margin-left: 6px;
}

.price {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.old-price {
  font-size: 15px;
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}

.btn-cart {
  width: 100%;
  background-color: #7b2be2;
  color: white;
  border: none;
  padding: 12px;
  font-weight: bold;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-cart:hover {
  background-color: #5e21b5;
}

.star-icon {
  margin-right: 4px;
  height: 22px;
  width: 22px;
  color: #ff9900;
}


.legal-page {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  font-family: sans-serif;
  line-height: 1.6;
}

.legal-page h1 {
  font-size: 32px;
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-page a {
  color: #7b2be2;
  text-decoration: underline;
}
