body {
  background-color: #f8f9fa;
  font-family: "Segoe UI", sans-serif;
}
.text-color {
  color: #8b3dff;
  box-shadow: 5px 5px 10px #8b3dff;
  padding: 10px;
  border-radius: 10px;
  display: inline-block;
  align-items: center;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #8b3dff;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  padding: 4px 8px;
}

.doctor-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  min-height: 48px;
}

.price-original {
  text-decoration: line-through;
  color: #888;
  font-size: 0.9rem;
}

.price-discount {
  color: #28a745;
  font-weight: 700;
  font-size: 1.1rem;
}

.star-rating {
  color: #f4c150;
  font-size: 0.9rem;
}

.add-cart-btn {
  background-color: #8b3dff;
  display: block;
  align-items: center;
  text-align: center;
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s;
  text-decoration: none;
}

.add-cart-btn:hover {
  background-color: #6929c4;
}

.card-img-top {
  height: 200px;
  object-fit: contain;
  padding: 10px;
}

.acne-section {
  padding: 60px 20px;
  background: linear-gradient(90deg, #ffe6eb 0%, #fff 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.acne-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.acne-text {
  flex: 1;
}

.acne-text h2 {
  color: #d47a9d;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.acne-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.acne-image {
  flex: 1;
  text-align: center;
}

.acne-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.acne-image img:hover {
  transform: scale(1.05);
}



