/* ================= HERO ================= */

.beauty-hero {
    padding: 120px 20px 80px;
    text-align: center;
    background: linear-gradient(to bottom, #f3f0f7, #ffffff);
}

.beauty-subtitle {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #7b2cbf;
    margin-bottom: 10px;
}

.beauty-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.beauty-gradient-text {
    background: linear-gradient(90deg, #7b2cbf, #c77dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.beauty-hero-description {
    max-width: 600px;
    margin: auto;
    color: #666;
    font-size: 17px;
}

/* ================= CATEGORY ================= */

.beauty-category-section {
    margin: 50px 0 60px;
    text-align: center;
}

.beauty-category-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.beauty-category-btn {
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: white;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.beauty-category-btn:hover {
    border-color: #7b2cbf;
    color: #7b2cbf;
}

.active-category {
    background: linear-gradient(90deg, #7b2cbf, #9d4edd);
    color: white;
    border: none;
    box-shadow: 0 8px 20px rgba(123, 44, 191, 0.25);
}

/* ================= GRID ================= */

.beauty-services-section {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 100px;
}

.beauty-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 380px));
    justify-content: center;
    gap: 35px;
}

.beauty-services-grid.single-card {
    grid-template-columns: 1fr !important;
}

/* ================= CARD ================= */

.beauty-service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.beauty-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Smooth Hide Animation */
.beauty-service-card.hide-card {
    opacity: 0;
    transform: scale(0.95);
}

/* IMAGE */

.beauty-image-box {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.beauty-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.beauty-service-card:hover img {
    transform: scale(1.08);
}
/* 
.beauty-image-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(to top,#fff 20%,rgba(255,255,255,0.4) 50%,transparent 80%);
  
  
} */

.beauty-service-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(90deg, #7b2cbf, #9d4edd);
    color: white;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 500;
}

/* CONTENT */

.beauty-service-info {
    padding: 25px;
}

.beauty-service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.beauty-service-text {
    font-size: 15px;
    color: #6b6b6b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.beauty-price-duration {
    display: flex;
    align-items: center;
    gap: 18px;
}

.beauty-service-price {
    font-size: 20px;
    font-weight: 700;
    color: #7b2cbf;
}

.beauty-service-duration {
    font-size: 14px;
    color: #777;
}

.beauty-no-data {
    text-align: center;
    padding: 60px 0;
    color: #888;
    font-size: 18px;
}

.beauty-service-card {
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.beauty-service-card.hide-card {
    opacity: 0;
    transform: scale(0.95);
}