.haircare-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f5f0 100%);
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Soft decorative blur behind section */
.haircare-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(70,178,224,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
}

/* Product image box */
.product-card {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.product-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

/* Soft glow effect behind product */
.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(70,178,224,0.25), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Text Section */
.text-content {
  position: relative;
  z-index: 2;
}

.haircare-section h5 {
  color: #46b2e0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 16px;
}

.haircare-section h3 {
  color: #2b0000;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
}

.divider {
  width: 100px;
  margin: 0 auto 30px;
  border-bottom: 2px solid #46b2e0;
  position: relative;
}

.divider::after {
  content: "◆";
  color: #46b2e0;
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: #f8f5f0;
  padding: 0 5px;
}

.haircare-section p {
  color: #555;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.buy-btn {
  background: linear-gradient(90deg, #46b2e0, #2b0000);
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.buy-btn:hover {
  background: linear-gradient(90deg, #2b0000, #46b2e0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(70,178,224,0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
  .haircare-section {
    padding: 70px 20px;
  }
  .haircare-section h3 {
    font-size: 26px;
  }
  .product-img {
    max-width: 280px;
  }
}

@media (max-width: 575px) {
  .haircare-section h3 {
    font-size: 22px;
  }
  .haircare-section p {
    font-size: 14px;
  }
  .buy-btn {
    padding: 10px 28px;
    font-size: 14px;
  }
}
