/* =================================================
   FACIAL PREMIUM SLIDER — LUXURY VERSION (FULL)
   Studio Elegance style – clean • premium • soft
================================================= */


/* =============================
   SECTION
============================= */

.facial-premium{
    position:relative;
    padding:110px 0;
    overflow:hidden;
    background:
        linear-gradient(180deg,#fafbff 0%,#ffffff 60%);
}

/* soft luxury glow */
.facial-premium::before{
    content:"";
    position:absolute;
    top:-160px;
    left:50%;
    transform:translateX(-50%);
    width:600px;
    height:300px;
    background:radial-gradient(circle, rgba(255,210,160,.35), transparent 70%);
    filter:blur(70px);
    pointer-events:none;
}


/* =============================
   HEADING
============================= */

.fp-head{
    text-align:center;
    max-width:720px;
    margin:0 auto 70px;
}

.fp-badge{
    display:inline-block;
    padding:6px 18px;
    margin-bottom:14px;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#8B5E3C;
    background:#fff;
    border-radius:40px;
    box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.fp-head h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:14px;

    background:linear-gradient(90deg,#222,#8B5E3C);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.fp-head p{
    color:#666;
    font-size:16px;
    line-height:1.7;
}

.fp-line{
    width:80px;
    height:4px;
    margin:22px auto 0;
    border-radius:10px;
    background:linear-gradient(90deg,#ffd37a,#ffb65a,#8B5E3C);
}


/* =============================
   SLIDER LAYOUT
============================= */

.fp-slider{
    position:relative;
    width:100vw;
    left:50%;
    transform:translateX(-50%);
}

.fp-viewport{
    overflow:hidden;
    max-width:1200px;
    margin:auto;
    padding:0 10px;
}

.fp-track{
    display:flex;
    gap:28px;
    transition:transform .45s cubic-bezier(.22,.61,.36,1);
}



/* =============================
   CARD
============================= */

.fp-card{
    flex:0 0 calc((100% - 56px)/3);

    display:flex;
    flex-direction:column;

    background:#fff;
    border-radius:24px;
    overflow:hidden;

    box-shadow:
        0 6px 20px rgba(0,0,0,.05),
        0 1px 0 rgba(255,255,255,.8) inset;

    transition:all .35s ease;
}

/* luxury hover */
.fp-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 24px 55px rgba(0,0,0,.12),
        0 3px 0 rgba(255,255,255,.9) inset;
}



/* =============================
   IMAGE
============================= */

.fp-img{
    display:block;
    aspect-ratio:4/3;
    overflow:hidden;
    position:relative;
}

/* soft overlay */
.fp-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.25), transparent 40%);
    opacity:.35;
    transition:.4s;
}

.fp-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}

.fp-card:hover img{
    transform:scale(1.1);
}

.fp-card:hover .fp-img::after{
    opacity:.15;
}



/* =============================
   BODY
============================= */

.fp-body{
    padding:24px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.fp-title a{
    font-size:19px;
    font-weight:700;
    color:#222;
    text-decoration:none;
    transition:.25s;
}

.fp-title a:hover{
    color:#8B5E3C;
}

.fp-desc{
    font-size:14px;
    color:#666;
    margin:10px 0 14px;
    line-height:1.6;
}

.fp-time{
    font-size:13px;
    font-weight:600;
    color:#8B5E3C;
    margin-bottom:14px;
}



/* =============================
   BENEFITS
============================= */

.fp-benefits{
    list-style:none;
    padding:0;
    margin:0 0 22px;
}

.fp-benefits li{
    font-size:13.5px;
    color:#555;
    margin-bottom:6px;
    padding-left:18px;
    position:relative;
}

.fp-benefits li::before{
    content:"✔";
    position:absolute;
    left:0;
    font-size:11px;
    color:#ffb65a;
}



/* =============================
   BUTTONS
============================= */

.fp-actions{
    margin-top:auto;
    display:flex;
    gap:10px;
}

.btn-outline,
.btn-gradient{
    flex:1;
    padding:11px;
    border-radius:14px;
    font-size:14px;
    font-weight:600;
    text-align:center;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

/* outline */
.btn-outline{
    border:1px solid #ddd;
    background:#fff;
    color:#333;
}

.btn-outline:hover{
    border-color:#8B5E3C;
    color:#8B5E3C;
    background:#faf7f3;
}

/* gradient */
.btn-gradient{
    color:#fff;
    background:linear-gradient(90deg,#ffd37a,#ffb65a,#8B5E3C);
}

.btn-gradient:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(139,94,60,.35);
}



/* =============================
   ARROWS
============================= */

.fp-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border-radius:50%;
    background:#fff;
    font-size:24px;
    border:none;
    cursor:pointer;
    box-shadow:0 12px 28px rgba(0,0,0,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.25s;
}

.fp-arrow:hover{
    transform:translateY(-50%) scale(1.1);
}

.fp-prev{
    left:calc((100vw - 1200px)/2 - 26px);
}

.fp-next{
    right:calc((100vw - 1200px)/2 - 26px);
}



/* =============================
   RESPONSIVE
============================= */

@media(max-width:992px){

    .fp-card{
        flex:0 0 calc((100% - 28px)/2);
    }

    .fp-prev{ left:12px; }
    .fp-next{ right:12px; }
}

@media(max-width:640px){

    .facial-premium{
        padding:70px 0;
    }

    .fp-head h2{
        font-size:26px;
    }

    .fp-card{
        flex:0 0 100%;
        border-radius:18px;
    }

    .fp-actions{
        flex-direction:column;
    }

    .fp-arrow{
        width:36px;
        height:36px;
        font-size:16px;
        top:40%;
    }
}