/* ================= BEAUTY SECTION ================= */

.beauty-section {
  background: #faf7f2;
}

/* ================= BEAUTY SERVICES ================= */

.beauty-services {
  padding: 80px 20px;
  background: #faf7f2;
}

/* GRID */
.beauty-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* ================= CARD ================= */

.beauty-card,
.service-card-modern {
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.beauty-card:hover,
.service-card-modern:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.beauty-card img,
.service-card-modern img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ================= CONTENT ================= */

.beauty-content,
.service-content {
  flex: 1;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.beauty-content h3,
.service-content h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: #2d2d2d;
}

.beauty-content p,
.service-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ================= PRICE ================= */

.starts-price {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #444;
}

.starts-price span {
  font-weight: 700;
  color: #966812;
}

/* ================= PRICE PILL (IF USED) ================= */

.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5efe4;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.price-pill .old-price {
  color: #9c9c9c;
  text-decoration: line-through;
  font-size: 0.85rem;
}

.price-pill .price-divider {
  color: #cfa24d;
}

.price-pill .new-price {
  font-weight: 700;
  color: #966812;
}

/* ================= BOOK NOW BUTTON (FIXED & BALANCED) ================= */

.hair-book-btn {
  margin-top: auto;              /* ⬅ push button to bottom */
  align-self: center;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: linear-gradient(135deg, #d4a64a, #b8892f);
  color: #fff;

  padding: 10px 22px;
  min-width: 150px;
  border-radius: 999px;

  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.35s ease;
  box-shadow: 0 8px 22px rgba(212, 166, 74, 0.35);
}

.hair-book-btn i {
  font-size: 0.9rem;
}

.hair-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(212, 166, 74, 0.5);
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {
  .beauty-card img,
  .service-card-modern img {
    height: 220px;
  }

  .beauty-content,
  .service-content {
    padding: 22px;
  }

  .beauty-content h3,
  .service-content h3 {
    font-size: 1.2rem;
  }

  .hair-book-btn {
    font-size: 0.85rem;
    padding: 9px 20px;
  }
}
