:root{
    --primary:#6F42C1;
    --secondary:#4B2E83;
    --light:#F8F6FC;
    --text:#25212B;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--text);
}

.main-header{
    background:#fff;
    padding:18px 0;
    box-shadow:0 8px 30px rgba(75,46,131,.08);
    position:sticky;
    top:0;
    z-index:100;
}

.header-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.brand{
    font-size:24px;
    font-weight:700;
    color:var(--secondary);
}

.brand span{
    color:var(--primary);
}
.home-offers-section{
    padding:65px 0;
    background:#fff;
}

.home-offers-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 320px));
    gap:24px;
    justify-content:center;
}

.home-offer-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 14px 40px rgba(75,46,131,.10);
}

.home-offer-img{
    height:180px;
    position:relative;
    overflow:hidden;
}

.home-offer-img span{
    position:absolute;
    top:12px;
    left:12px;
    background:linear-gradient(135deg,#6F42C1,#2b174f);
    color:#fff;
    padding:7px 13px;
    border-radius:30px;
    font-size:11px;
    font-weight:800;
    z-index:2;
}

.home-offer-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.home-offer-body{
    padding:20px;
}

.home-offer-body h3{
    color:#2b174f;
    font-weight:900;
    font-size:21px;
}

.home-offer-body p{
    color:#6b6675;
    font-size:14px;
}

.home-offer-price{
    margin:12px 0 16px;
}

.home-offer-price span{
    color:#888;
    text-decoration:line-through;
    margin-right:8px;
}

.home-offer-price strong{
    color:#6F42C1;
    font-weight:900;
    font-size:21px;
}

.nav-links{
    display:flex;
    gap:26px;
}

.nav-links a{
    color:#333;
    text-decoration:none;
    font-weight:500;
}

.nav-links a:hover{
    color:var(--primary);
}

.btn-purple{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    border:none;
    border-radius:14px;
    padding:11px 24px;
}

.btn-purple:hover{
    color:#fff;
    opacity:.92;
}

.btn-outline-purple{
    border:1px solid var(--primary);
    color:var(--primary);
    border-radius:14px;
    padding:11px 24px;
}

.hero{
    min-height:82vh;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at top right, rgba(111,66,193,.18), transparent 35%),
        linear-gradient(135deg,#fff 0%,#f8f6fc 100%);
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:50px;
}

.badge-soft{
    display:inline-block;
    background:#eee8fb;
    color:var(--secondary);
    padding:8px 16px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:64px;
    line-height:1.05;
    font-weight:700;
    color:var(--secondary);
}

.hero p{
    font-size:18px;
    color:#5e5968;
    max-width:560px;
    margin:22px 0;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hero-card{
    min-height:430px;
    border-radius:34px;
    padding:35px;
    background:
        linear-gradient(rgba(75,46,131,.15),rgba(75,46,131,.15)),
        url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    box-shadow:0 30px 80px rgba(75,46,131,.20);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    color:#fff;
}

.hero-card h3{
    font-size:34px;
    font-weight:700;
}

.section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title span{
    color:var(--primary);
    font-weight:600;
}

.section-title h2{
    font-size:38px;
    color:var(--secondary);
    font-weight:700;
}

.treatment-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.treatment-card{
    background:#fff;
    padding:30px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(75,46,131,.10);
    font-weight:600;
    color:var(--secondary);
    text-align:center;
}

.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    width:56px;
    height:56px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    z-index:999;
}

@media(max-width:900px){
    .nav-links{
        display:none;
    }

    .hero-grid{
        grid-template-columns:1fr;
        padding:40px 0;
    }

    .hero h1{
        font-size:42px;
    }

    .treatment-grid{
        grid-template-columns:1fr;
    }
}
.why-section{
    padding:80px 0;
    background:#F8F6FC;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.why-card{
    background:#fff;
    padding:30px 24px;
    border-radius:26px;
    box-shadow:0 18px 45px rgba(75,46,131,.08);
    text-align:center;
}

.why-card i{
    font-size:34px;
    color:var(--primary);
    margin-bottom:18px;
}

.why-card h4{
    color:var(--secondary);
    font-weight:700;
    margin-bottom:10px;
}

.why-card p{
    color:#6b6675;
    font-size:15px;
}

.membership-preview{
    padding:80px 0;
    background:#fff;
}

.membership-box{
    background:linear-gradient(135deg,var(--secondary),var(--primary));
    color:#fff;
    border-radius:34px;
    padding:55px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    box-shadow:0 25px 70px rgba(75,46,131,.22);
}

.membership-box span{
    opacity:.9;
    font-weight:600;
}

.membership-box h2{
    font-size:42px;
    font-weight:700;
    margin:10px 0;
}

.membership-box p{
    max-width:650px;
    opacity:.9;
}

.membership-box .btn-purple{
    background:#fff;
    color:var(--secondary);
}

.contact-strip{
    padding:40px 0 80px;
}

.contact-strip-box{
    background:#F8F6FC;
    border-radius:30px;
    padding:35px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.contact-strip-box h2{
    color:var(--secondary);
    font-weight:700;
    margin:0;
}

@media(max-width:900px){
    .why-grid{
        grid-template-columns:1fr;
    }

    .membership-box,
    .contact-strip-box{
        flex-direction:column;
        text-align:center;
    }
}
.brand img{
    height:64px;
    width:auto;
    display:block;
}

.main-header{
    padding:14px 0;
}
.mobile-top,
.mobile-menu{
    display:none;
}

.site-footer{
    background:#2b174f;
    color:#fff;
    padding:70px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    height:80px;
    background:#fff;
    padding:8px;
    border-radius:14px;
    margin-bottom:18px;
}

.site-footer h4{
    margin-bottom:18px;
    font-weight:700;
}

.site-footer a{
    display:block;
    color:#eee;
    text-decoration:none;
    margin-bottom:10px;
}

.site-footer p{
    color:#e8defa;
}

.footer-bottom{
    text-align:center;
    padding:18px;
    margin-top:40px;
    background:#1f103b;
    color:#ddd;
}

@media(max-width:900px){
    .main-header{
        display:none;
    }

    .mobile-top{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:12px 18px;
        background:#fff;
        position:sticky;
        top:0;
        z-index:1000;
        box-shadow:0 8px 25px rgba(75,46,131,.08);
    }

    .mobile-top img{
        height:52px;
    }

    .menu-toggle{
        border:0;
        background:var(--primary);
        color:#fff;
        width:44px;
        height:44px;
        border-radius:12px;
        font-size:20px;
    }

    .mobile-menu{
        display:none;
        position:fixed;
        top:76px;
        left:0;
        right:0;
        background:#fff;
        z-index:999;
        padding:22px;
        box-shadow:0 20px 50px rgba(75,46,131,.15);
    }

    body.menu-open .mobile-menu{
        display:block;
    }

    .mobile-menu a{
        display:block;
        margin-bottom:16px;
        text-decoration:none;
        color:#2b174f;
        font-weight:600;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }
}
.page-hero{
    padding:90px 0 70px;
    background:linear-gradient(135deg,#fff,#F8F6FC);
    text-align:center;
}

.page-hero span{
    color:var(--primary);
    font-weight:700;
}

.page-hero h1{
    color:var(--secondary);
    font-size:48px;
    font-weight:700;
    margin:12px 0;
}

.page-hero p{
    max-width:750px;
    margin:0 auto;
    color:#6b6675;
    font-size:18px;
}

.back-home{
    display:inline-block;
    margin-bottom:18px;
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
}

.treatments-page{
    padding:80px 0;
}

.treatment-full-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.service-card{
    background:#fff;
    border-radius:26px;
    padding:32px 24px;
    box-shadow:0 18px 45px rgba(75,46,131,.10);
    transition:.25s ease;
}

.service-card:hover{
    transform:translateY(-6px);
}

.service-card i{
    font-size:34px;
    color:var(--primary);
    margin-bottom:18px;
}

.service-card h3{
    color:var(--secondary);
    font-weight:700;
    margin-bottom:12px;
}

.service-card p{
    color:#6b6675;
    min-height:78px;
}

.service-card a{
    color:var(--primary);
    font-weight:700;
    text-decoration:none;
}

@media(max-width:900px){
    .page-hero h1{
        font-size:34px;
    }

    .treatment-full-grid{
        grid-template-columns:1fr;
    }
}
.service-img{
    width:100%;
    height:170px;
    object-fit:cover;
    border-radius:20px;
    margin-bottom:18px;
}

.front-offer-badge{
    display:inline-block;
    background:#ffeefb;
    color:#9b1b88;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:10px;
}

.front-price-box{
    margin:12px 0;
}

.front-old-price{
    color:#888;
    text-decoration:line-through;
    margin-right:8px;
}

.front-new-price{
    color:#6F42C1;
    font-weight:800;
}
.treatment-detail-hero{
    padding:90px 0;
    background:linear-gradient(135deg,#fff,#F8F6FC);
}

.treatment-detail-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.treatment-detail-hero h1{
    font-size:56px;
    color:var(--secondary);
    font-weight:800;
    margin:16px 0;
}

.treatment-detail-hero p{
    color:#6b6675;
    font-size:18px;
}

.offer-end{
    font-weight:700;
    color:var(--primary) !important;
}

.detail-main-img{
    width:100%;
    aspect-ratio:3/2;
    object-fit:cover;
    border-radius:34px;
    box-shadow:0 30px 80px rgba(75,46,131,.18);
}

.detail-section{
    padding:80px 0;
}

.light-bg{
    background:#F8F6FC;
}

.detail-content{
    max-width:900px;
}

.detail-content h2{
    color:var(--secondary);
    font-weight:800;
    margin-bottom:18px;
}

.detail-content p{
    color:#5e5968;
    font-size:18px;
    line-height:1.8;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.benefit-card{
    background:#fff;
    padding:22px;
    border-radius:20px;
    box-shadow:0 14px 35px rgba(75,46,131,.08);
    font-weight:700;
    color:var(--secondary);
}

.benefit-card i{
    color:var(--primary);
    margin-right:8px;
}

.detail-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.detail-gallery-grid img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:22px;
    box-shadow:0 14px 35px rgba(75,46,131,.10);
}

.faq-wrap{
    max-width:900px;
    margin:0 auto;
}

.faq-card{
    background:#fff;
    padding:24px;
    border-radius:22px;
    margin-bottom:16px;
    box-shadow:0 14px 35px rgba(75,46,131,.08);
}

.faq-card h4{
    color:var(--secondary);
    font-weight:800;
}

.faq-card p{
    color:#6b6675;
    margin-bottom:0;
}

@media(max-width:900px){
    .treatment-detail-grid{
        grid-template-columns:1fr;
    }

    .treatment-detail-hero h1{
        font-size:38px;
    }

    .detail-main-img{
        height:320px;
    }

    .benefit-grid,
    .detail-gallery-grid{
        grid-template-columns:1fr;
    }
}
.treatment-card{
    text-decoration:none;
}

.treatment-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.treatment-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(75,46,131,.10);
    text-decoration:none;
    transition:.3s;
    display:block;
}

.treatment-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(75,46,131,.15);
}

.home-treatment-img{
    width:100%;
    aspect-ratio:3/2;
    object-fit:cover;
    display:block;
}

.treatment-card span{
    display:block;
    padding:20px;
    text-align:center;
    font-size:22px;
    font-weight:700;
    color:var(--secondary);
}
.hero-slider{
    min-height:82vh;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at top right, rgba(111,66,193,.18), transparent 35%),
        linear-gradient(135deg,#fff 0%,#f8f6fc 100%);
    overflow:hidden;
}

.hero-slide{
    display:none;
    width:100%;
}

.hero-slide.active{
    display:block;
}

.hero-slide-image{
    position:relative;
    border-radius:34px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(75,46,131,.20);
}

.hero-slide-image img{
    width:100%;
    height:430px;
    object-fit:cover;
    object-position:center;
    display:block;
}

.hero-slide h1{
    font-size:64px;
    line-height:1.05;
    font-weight:700;
    color:var(--secondary);
}

.hero-slide p{
    font-size:18px;
    color:#5e5968;
    max-width:560px;
    margin:22px 0;
}

@media(max-width:900px){
    .hero-slide h1{
        font-size:42px;
    }

    .hero-slide-image img{
        height:320px;
    }
}
.reviews-section{
    padding:80px 0;
    background:#fff;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.review-card{
    background:#fff;
    border-radius:26px;
    padding:30px;
    box-shadow:0 18px 45px rgba(75,46,131,.10);
}

.review-stars{
    color:#f5b301;
    font-size:22px;
    margin-bottom:14px;
}

.review-card p{
    color:#5e5968;
    font-size:16px;
    line-height:1.7;
}

.review-client{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:22px;
    color:var(--secondary);
}

.review-client img{
    width:52px;
    height:52px;
    object-fit:cover;
    border-radius:50%;
}

@media(max-width:900px){
    .reviews-grid{
        grid-template-columns:1fr;
    }
}
.reviews-section{
    padding:70px 0;
    margin-top:0;
}

.reviews-grid{
    align-items:stretch;
}

.review-card{
    min-height:220px;
}

.review-client strong{
    font-size:18px;
}
.google-review-box{
    background:linear-gradient(135deg,#6F42C1,#4B2E83);
    color:#fff;
    border-radius:28px;
    padding:35px;
    margin-bottom:40px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.google-stars{
    font-size:26px;
    color:#FFD700;
    margin-bottom:10px;
}

.google-review-box h3{
    margin-bottom:8px;
    font-weight:700;
}

.google-review-box p{
    margin:0;
    opacity:.9;
}

.google-review-box .btn-purple{
    background:#fff;
    color:#4B2E83;
    font-weight:700;
}

@media(max-width:900px){

    .google-review-box{
        flex-direction:column;
        text-align:center;
    }

}
.trust-stats-section{
    padding:70px 0;
    background:#F8F6FC;
}

.trust-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.trust-stat-card{
    background:#fff;
    border-radius:22px;
    padding:22px 15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(75,46,131,.08);
}

.trust-stat-card h3{
    color:var(--secondary);
    font-size:32px;
    font-weight:800;
    margin-bottom:5px;
    line-height:1.1;
}

.trust-stat-card p{
    color:#6b6675;
    font-size:15px;
    font-weight:600;
    margin:0;
}

@media(max-width:900px){
    .trust-stats-grid{
        grid-template-columns:1fr;
    }
}
.before-after-section{
    padding:80px 0;
    background:#fff;
}

.before-after-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.before-after-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(75,46,131,.08);
    transition:.3s;
}

.before-after-card:hover{
    transform:translateY(-5px);
}

.before-after-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.before-after-label{
    padding:18px;
    text-align:center;
    font-weight:700;
    color:var(--secondary);
}

@media(max-width:900px){

    .before-after-grid{
        grid-template-columns:1fr;
    }

    .before-after-card img{
        height:280px;
    }
}
.doctors-section{
    padding:90px 0;
    background:#F8F6FC;
}

.doctors-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.doctor-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 15px 40px rgba(75,46,131,.08);
}

.doctor-card img{
    width:100%;
    height:380px;
    object-fit:cover;
    display:block;
}

.doctor-card h3{
    margin-top:25px;
    color:var(--secondary);
    font-size:28px;
}

.doctor-role{
    display:block;
    color:#7A4BC5;
    font-weight:700;
    margin-top:8px;
}

.doctor-card p{
    padding:15px 25px;
    color:#666;
}

.doctor-day{
    margin:15px 25px 25px;
    padding:12px;
    border-radius:12px;
    background:#F4F0FB;
    font-weight:600;
    color:var(--secondary);
}

@media(max-width:900px){
    .doctors-grid{
        grid-template-columns:1fr;
    }

    .doctor-card img{
        height:300px;
    }
}
.booking-grid{
    align-items:start;
}

.booking-info-card,
.booking-form-card{
    background:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 15px 40px rgba(75,46,131,.08);
}

.booking-note{
    margin-top:22px;
    background:#F8F6FC;
    border-left:5px solid var(--primary);
    padding:18px;
    border-radius:18px;
    color:#2b174f;
}

.contact-side-card{
    margin-top:28px;
}

@media(max-width:900px){
    .booking-info-card,
    .booking-form-card{
        padding:24px;
    }
}
.booking-section{
    padding:80px 0;
    background:#fff;
}

.booking-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:30px;
}

.booking-info-card h2,
.booking-form-card h2{
    color:var(--secondary);
    font-weight:800;
    margin-bottom:14px;
}

.booking-info-card p{
    color:#5e5968;
    font-size:17px;
    line-height:1.7;
}

.booking-form-card label{
    font-weight:600;
    color:#2b174f;
    margin-bottom:6px;
}

.booking-form-card .form-control{
    border-radius:14px;
    padding:12px 14px;
    border:1px solid #ddd;
}

.booking-form-card textarea{
    resize:none;
}

.alert{
    border-radius:14px;
    padding:14px 18px;
}

@media(max-width:900px){
    .booking-section{
        padding:45px 0;
    }

    .booking-grid{
        grid-template-columns:1fr;
    }
}
.products-section{
    padding:80px 0;
    background:#fff;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.product-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 16px 45px rgba(75,46,131,.10);
    transition:.3s ease;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 26px 65px rgba(75,46,131,.16);
}

.product-img-wrap{
    position:relative;
    background:#F8F6FC;
}

.product-img-wrap img{
    width:100%;
    height:310px;
    object-fit:cover;
    display:block;
}

.product-placeholder{
    height:310px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:54px;
    color:#6F42C1;
}

.product-offer-badge{
    position:absolute;
    top:16px;
    left:16px;
    background:#fff;
    color:#6F42C1;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:800;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.product-body{
    padding:26px;
}

.product-brand{
    display:inline-block;
    color:#6F42C1;
    background:#F4F0FB;
    padding:6px 12px;
    border-radius:30px;
    font-weight:700;
    font-size:13px;
    margin-bottom:12px;
}

.product-body h3{
    color:#2b174f;
    font-size:24px;
    font-weight:800;
    margin-bottom:12px;
}

.product-body p{
    color:#6b6675;
    line-height:1.7;
    min-height:58px;
}

.product-price{
    margin:18px 0;
}

.product-price .old-price{
    color:#888;
    text-decoration:line-through;
    margin-right:8px;
}

.product-price strong{
    color:#6F42C1;
    font-size:22px;
    font-weight:900;
}

.product-wa-btn{
    width:100%;
    text-align:center;
}

.empty-products{
    max-width:650px;
    margin:0 auto;
    text-align:center;
    background:#F8F6FC;
    border-radius:28px;
    padding:50px 25px;
}

.empty-products h3{
    color:#2b174f;
    font-weight:800;
}

.empty-products p{
    color:#6b6675;
}

@media(max-width:900px){
    .products-section{
        padding:45px 0;
    }

    .products-grid{
        grid-template-columns:1fr;
    }

    .product-img-wrap img,
    .product-placeholder{
        height:280px;
    }
}
.products-section .products-grid{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:26px !important;
}

.products-section .product-card{
    width:100% !important;
    max-width:100% !important;
    overflow:hidden !important;
}

.products-section .product-img-wrap{
    height:310px !important;
    overflow:hidden !important;
}

.products-section .product-img-wrap img{
    width:100% !important;
    height:310px !important;
    max-height:310px !important;
    object-fit:cover !important;
    display:block !important;
}

@media(max-width:900px){
    .products-section .products-grid{
        grid-template-columns:1fr !important;
    }

    .products-section .product-img-wrap,
    .products-section .product-img-wrap img{
        height:280px !important;
        max-height:280px !important;
    }
}
.products-section .products-grid{
    grid-template-columns:repeat(4,1fr) !important;
    gap:22px !important;
}

.products-section .product-img-wrap,
.products-section .product-img-wrap img{
    height:240px !important;
    max-height:240px !important;
}

.products-section .product-body{
    padding:22px !important;
}

.products-section .product-body h3{
    font-size:21px !important;
}

.products-section .product-body p{
    min-height:auto !important;
    font-size:15px !important;
}

.products-section .product-price strong{
    font-size:20px !important;
}

@media(max-width:1200px){
    .products-section .products-grid{
        grid-template-columns:repeat(3,1fr) !important;
    }
}

@media(max-width:900px){
    .products-section .products-grid{
        grid-template-columns:1fr !important;
    }

    .products-section .product-img-wrap,
    .products-section .product-img-wrap img{
        height:260px !important;
        max-height:260px !important;
    }
}
.products-section .products-grid{
    justify-content:center !important;
}

.products-section .product-card{
    max-width:330px !important;
}

@media(min-width:901px){
    .products-section .products-grid{
        grid-template-columns:repeat(auto-fit, minmax(280px, 330px)) !important;
    }
}
.doctors-section{
    padding:65px 0 !important;
}

.doctors-grid{
    grid-template-columns:repeat(auto-fit, minmax(280px, 360px)) !important;
    justify-content:center !important;
    gap:24px !important;
}

.doctor-card{
    max-width:360px !important;
    border-radius:24px !important;
}

.doctor-card img{
    height:260px !important;
}

.doctor-card h3{
    font-size:23px !important;
    margin-top:22px !important;
}

.doctor-role{
    font-size:15px !important;
}

.doctor-card p{
    padding:10px 22px !important;
    font-size:14px !important;
    line-height:1.5 !important;
}

.doctor-day{
    margin:14px 22px 22px !important;
    padding:11px !important;
    font-size:14px !important;
}

@media(max-width:900px){
    .doctor-card{
        max-width:100% !important;
    }

    .doctor-card img{
        height:260px !important;
    }
}
/* Compact Doctors Section - Override */
.doctors-section{
    padding:55px 0 !important;
}

.doctors-section .section-title{
    margin-bottom:28px !important;
}

.doctors-section .section-title h2{
    font-size:34px !important;
}

.doctors-grid{
    display:grid !important;
    grid-template-columns:repeat(auto-fit, minmax(260px, 330px)) !important;
    justify-content:center !important;
    gap:22px !important;
}

.doctor-card{
    max-width:330px !important;
    min-height:auto !important;
    border-radius:22px !important;
}

.doctor-card img{
    height:160px !important;
    object-fit:cover !important;
    object-position:top center !important;
}

.doctor-card h3{
    font-size:22px !important;
    margin-top:18px !important;
    margin-bottom:6px !important;
}

.doctor-role{
    font-size:14px !important;
    margin-top:4px !important;
}

.doctor-card p{
    padding:8px 18px !important;
    font-size:14px !important;
    line-height:1.45 !important;
}

.doctor-day{
    margin:12px 18px 18px !important;
    padding:10px !important;
    font-size:14px !important;
}

@media(max-width:900px){
    .doctors-grid{
        grid-template-columns:1fr !important;
    }

    .doctor-card{
        max-width:100% !important;
    }

    .doctor-card img{
        height:190px !important;
    }
}
/* Super Compact Doctor Cards */

.doctors-grid{
    display:flex !important;
    justify-content:center !important;
    gap:18px !important;
    flex-wrap:wrap !important;
}

.doctor-card{
    width:260px !important;
    max-width:260px !important;
    min-height:auto !important;
    padding:0 !important;
    border-radius:18px !important;
}

.doctor-card img{
    height:140px !important;
}

.doctor-card h3{
    font-size:18px !important;
    margin:12px 10px 4px !important;
}

.doctor-role{
    font-size:13px !important;
}

.doctor-card p{
    font-size:13px !important;
    padding:0 12px !important;
    margin-bottom:10px !important;
}

.doctor-day{
    margin:10px 12px 12px !important;
    padding:8px !important;
    font-size:13px !important;
}

@media(max-width:768px){
    .doctor-card{
        width:100% !important;
        max-width:320px !important;
    }
}
.doctor-card img{
    width:100% !important;
    height:180px !important;
    object-fit:cover !important;
    object-position:center top !important;
    display:block !important;
}
/* Doctor card equal badge level */
.doctor-card{
    display:flex !important;
    flex-direction:column !important;
}

.doctor-card h3{
    min-height:48px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
}

.doctor-role{
    min-height:36px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
}

.doctor-day{
    margin-top:auto !important;
}
/* Final Smart Compact Doctor Cards */
.doctors-section{
    padding:45px 0 !important;
}

.doctors-section .section-title{
    margin-bottom:24px !important;
}

.doctors-grid{
    gap:16px !important;
}

.doctor-card{
    width:240px !important;
    max-width:240px !important;
    min-height:245px !important;
    border-radius:18px !important;
}

.doctor-card img{
    height:130px !important;
}

.doctor-card h3{
    font-size:18px !important;
    min-height:42px !important;
    margin:10px 10px 2px !important;
    line-height:1.15 !important;
}

.doctor-role{
    font-size:12.5px !important;
    min-height:30px !important;
}

.doctor-day{
    margin:8px 10px 10px !important;
    padding:7px !important;
    font-size:12.5px !important;
    border-radius:11px !important;
}

@media(max-width:768px){
    .doctor-card{
        width:100% !important;
        max-width:320px !important;
    }
}
/* Doctor middle image position fix */
.doctors-grid .doctor-card:nth-child(2) img{
    object-position:center -18px !important;
}
/* Smart Hero Slider Final */
.hero-slider{
    min-height:78vh !important;
}

.hero-grid{
    grid-template-columns:.9fr 1.1fr !important;
    gap:55px !important;
}

.hero-slide-image{
    border-radius:28px !important;
}

.hero-slide-image img{
    height:470px !important;
    width:100% !important;
    object-fit:cover !important;
    object-position:center !important;
}

.hero-slide{
    opacity:0;
    visibility:hidden;
    position:absolute;
    inset:0;
    transition:opacity .9s ease, visibility .9s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    position:relative;
}

.hero-slide h1{
    font-size:58px !important;
}

@media(max-width:900px){
    .hero-slider{
        min-height:auto !important;
    }

    .hero-grid{
        grid-template-columns:1fr !important;
        gap:28px !important;
    }

    .hero-slide-image img{
        height:300px !important;
    }

    .hero-slide h1{
        font-size:38px !important;
    }
}
.hero-slide{
    opacity:0 !important;
    visibility:hidden !important;
    transform:translateY(14px) !important;
    transition:opacity .9s ease, transform .9s ease, visibility .9s ease !important;
}

.hero-slide.active{
    opacity:1 !important;
    visibility:visible !important;
    transform:translateY(0) !important;
}
/* Smooth slow hero fade - final */
.hero-slider{
    position:relative !important;
    overflow:hidden !important;
}

.hero-slide{
    display:block !important;
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    opacity:0 !important;
    visibility:hidden !important;
    transform:none !important;
    transition:
        opacity 1.8s ease-in-out,
        visibility 1.8s ease-in-out !important;
    pointer-events:none !important;
}

.hero-slide.active{
    position:relative !important;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
}
/* Doctor image position balance */
.doctors-grid .doctor-card:nth-child(1) img{
    object-position:center -18px !important;
}

.doctors-grid .doctor-card:nth-child(3) img{
    object-position:center -18px !important;
}
/* Doctor image balance */
.doctors-grid .doctor-card:nth-child(1) img{
    object-position:center -25px !important;
}

.doctors-grid .doctor-card:nth-child(2) img{
    object-position:center -14px !important;
}

.doctors-grid .doctor-card:nth-child(3) img{
    object-position:center -14px !important;
}
/* Dynamic Before & After Section */
.before-after-new-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 380px));
    gap:24px;
    justify-content:center;
}

.before-after-new-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 14px 40px rgba(75,46,131,.10);
}

.before-after-images{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.ba-img-box{
    position:relative;
    height:220px;
    overflow:hidden;
    background:#f8f6fc;
}

.ba-img-box span{
    position:absolute;
    top:10px;
    left:10px;
    background:#fff;
    color:#6F42C1;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
    font-weight:800;
    z-index:2;
}

.ba-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.before-after-new-card h3{
    font-size:18px;
    font-weight:800;
    color:#2b174f;
    padding:16px;
    margin:0;
    text-align:center;
}

@media(max-width:900px){
    .ba-img-box{
        height:190px;
    }
}
/* Before & After final polish */
.before-after-section{
    padding:55px 0 !important;
    background:#fff !important;
}

.before-after-section .section-title{
    margin-bottom:28px !important;
}

.before-after-section .section-title h2{
    font-size:36px !important;
}

.before-after-new-card{
    max-width:360px !important;
    border-radius:24px !important;
}

.ba-img-box{
    height:200px !important;
}

.before-after-new-card h3{
    font-size:18px !important;
    padding:14px !important;
}
/* Contact Page */
.contact-page-section{
    padding:70px 0;
    background:#fff;
}

.contact-page-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.contact-info-card,
.contact-map-card{
    background:#fff;
    border-radius:26px;
    padding:30px;
    box-shadow:0 14px 40px rgba(75,46,131,.10);
}

.contact-info-card h2,
.contact-map-card h2{
    color:#2b174f;
    font-weight:800;
    margin-bottom:12px;
}

.contact-info-card p,
.contact-map-card p{
    color:#6b6675;
}

.contact-detail-box{
    display:flex;
    gap:14px;
    align-items:flex-start;
    background:#F8F6FC;
    padding:16px;
    border-radius:18px;
    margin-top:14px;
}

.contact-detail-box i{
    width:42px;
    height:42px;
    border-radius:14px;
    background:#fff;
    color:#6F42C1;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-detail-box strong{
    display:block;
    color:#2b174f;
    margin-bottom:4px;
}

.contact-detail-box a,
.contact-detail-box span{
    color:#5e5968;
    text-decoration:none;
}

.contact-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:22px;
}

.map-placeholder{
    min-height:330px;
    background:linear-gradient(135deg,#F8F6FC,#fff);
    border-radius:22px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#2b174f;
    margin-top:20px;
}

.map-placeholder i{
    font-size:54px;
    color:#6F42C1;
    margin-bottom:14px;
}

.map-placeholder h3{
    font-weight:800;
}

@media(max-width:900px){
    .contact-page-grid{
        grid-template-columns:1fr;
    }

    .contact-info-card,
    .contact-map-card{
        padding:22px;
    }
}
.contact-page-section{
    padding-top:85px !important;
    padding-bottom:85px !important;
}
.map-embed{
    margin-top:20px;
    border-radius:22px;
    overflow:hidden;
    min-height:330px;
    box-shadow:0 14px 35px rgba(75,46,131,.08);
}

.map-embed iframe{
    width:100% !important;
    height:330px !important;
    display:block;
    border:0;
}
.map-embed{
    margin-top:20px;
    border-radius:22px;
    overflow:hidden;
    min-height:330px;
    box-shadow:0 14px 35px rgba(75,46,131,.08);
}

.map-embed iframe{
    width:100% !important;
    height:330px !important;
    display:block;
    border:0;
}
/* CTA strip Call Now button fix */
.contact-strip-box .btn-outline-purple{
    background:#fff !important;
    border:1.5px solid var(--primary) !important;
    color:var(--primary) !important;
    border-radius:16px !important;
    padding:13px 28px !important;
    font-weight:700 !important;
    text-decoration:none !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-width:130px !important;
}

.contact-strip-box .btn-outline-purple:hover{
    background:var(--primary) !important;
    color:#fff !important;
}

/* Contact Strip Buttons Fix */

.contact-strip-box > div{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.contact-strip-box .btn-outline-purple{
    background:#fff;
    color:#6f42c1;
    border:2px solid #6f42c1;
    border-radius:14px;
    padding:14px 28px;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:all .3s ease;
}

.contact-strip-box .btn-outline-purple:hover{
    background:#6f42c1;
    color:#fff;
}
.footer-social{
    display:flex;
    gap:12px;
    margin-top:18px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    color:#6F42C1 !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
    font-size:18px;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#6F42C1;
    color:#fff !important;
    transform:translateY(-3px);
}
.offers-section{
    padding:70px 0;
    background:#fff;
}

.offers-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 360px));
    gap:24px;
    justify-content:center;
}

.offer-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 14px 40px rgba(75,46,131,.10);
}

.offer-card img{
    width:100%;
    height:210px;
    object-fit:cover;
    display:block;
}

.offer-body{
    padding:22px;
}

.offer-body h3{
    color:#2b174f;
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
}

.offer-body p{
    color:#6b6675;
    font-size:15px;
    line-height:1.6;
}

.offer-price{
    margin:14px 0;
}

.offer-price span{
    color:#888;
    text-decoration:line-through;
    margin-right:8px;
}

.offer-price strong{
    color:#6F42C1;
    font-size:22px;
    font-weight:900;
}

.offer-expiry{
    background:#F8F6FC;
    color:#2b174f;
    padding:9px 12px;
    border-radius:12px;
    font-size:13px;
    font-weight:700;
    margin-bottom:16px;
}
.offer-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    border-radius:20px 20px 0 0;
}

.offer-card{
    overflow:hidden;
}
.offer-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:0.4s;
}

.offer-card:hover img{
    transform:scale(1.05);
}
/* Offers page compact card */
.offers-section{
    padding:45px 0 !important;
}

.offers-grid{
    grid-template-columns:repeat(auto-fit, minmax(260px, 310px)) !important;
    gap:20px !important;
}

.offer-card{
    max-width:310px !important;
    border-radius:22px !important;
}

.offer-card img{
    height:185px !important;
}

.offer-body{
    padding:18px 20px !important;
}

.offer-body h3{
    font-size:20px !important;
    margin-bottom:6px !important;
}

.offer-body p{
    font-size:14px !important;
    margin-bottom:8px !important;
}

.offer-price{
    margin:10px 0 !important;
}

.offer-price strong{
    font-size:20px !important;
}

.offer-expiry{
    padding:8px 12px !important;
    margin-bottom:14px !important;
}

.offer-body .btn{
    padding:11px 22px !important;
    border-radius:13px !important;
}
.offer-image-wrap{
    position:relative;
    overflow:hidden;
}

.offer-badge{
    position:absolute;
    top:14px;
    left:14px;
    z-index:5;
    background:linear-gradient(135deg,#6F42C1,#2b174f);
    color:#fff;
    padding:7px 13px;
    border-radius:50px;
    font-size:11px;
    font-weight:800;
    letter-spacing:.5px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}
.gallery-page-section{
    padding:65px 0;
    background:#fff;
}
.before-after-new-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    max-width:1000px;
    margin:auto;
}

.before-after-new-card{
    background:#fff;
    border-radius:25px;
    padding:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.before-after-images{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.ba-img-box img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:18px;
}

.ba-img-box span{
    display:inline-block;
    background:#6F42C1;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:10px;
}

.before-after-new-card h3{
    text-align:center;
    margin-top:20px;
    color:#2b174f;
    font-weight:800;
}
@media(max-width:768px){

.before-after-images{
    grid-template-columns:1fr;
}

.ba-img-box img{
    height:250px;
}

}
/* Gallery page Before & After clean layout */
.gallery-page-section .gallery-ba-grid{
    display:grid !important;
    grid-template-columns:minmax(300px, 760px) !important;
    justify-content:center !important;
    gap:30px !important;
    max-width:900px !important;
    margin:0 auto !important;
}

.gallery-page-section .gallery-ba-card{
    background:#fff !important;
    border-radius:26px !important;
    padding:22px !important;
    box-shadow:0 18px 45px rgba(75,46,131,.10) !important;
}

.gallery-page-section .before-after-images{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:16px !important;
}

.gallery-page-section .ba-img-box{
    height:300px !important;
    border-radius:18px !important;
    overflow:hidden !important;
    position:relative !important;
    background:#f8f6fc !important;
}

.gallery-page-section .ba-img-box img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
}

.gallery-page-section .ba-img-box span{
    position:absolute !important;
    top:14px !important;
    left:14px !important;
    background:#6F42C1 !important;
    color:#fff !important;
    padding:7px 14px !important;
    border-radius:30px !important;
    font-size:13px !important;
    font-weight:800 !important;
    z-index:2 !important;
}

.gallery-page-section .gallery-ba-card h3{
    text-align:center !important;
    color:#2b174f !important;
    font-weight:800 !important;
    font-size:22px !important;
    margin:20px 0 0 !important;
}

@media(max-width:768px){
    .gallery-page-section .gallery-ba-grid{
        grid-template-columns:1fr !important;
    }

    .gallery-page-section .before-after-images{
        grid-template-columns:1fr !important;
    }

    .gallery-page-section .ba-img-box{
        height:240px !important;
    }
}
/* ===== Gallery Page Size Fix ===== */

.gallery-page-section .gallery-ba-grid{
    display:grid !important;
    grid-template-columns:minmax(300px,580px) !important;
    justify-content:center !important;
    gap:20px !important;
}

.gallery-page-section .gallery-ba-card{
    max-width:580px !important;
    margin:auto !important;
    padding:18px !important;
    border-radius:24px !important;
    background:#fff !important;
    box-shadow:0 15px 40px rgba(0,0,0,.08) !important;
}

.gallery-page-section .gallery-ba-images{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:14px !important;
}

.gallery-page-section .ba-img-box{
    height:240px !important;
    overflow:hidden !important;
    border-radius:18px !important;
    position:relative !important;
}

.gallery-page-section .ba-img-box img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
}

.gallery-page-section .ba-label{
    position:absolute !important;
    top:12px !important;
    left:12px !important;
    background:#6F42C1 !important;
    color:#fff !important;
    padding:6px 14px !important;
    border-radius:30px !important;
    font-size:13px !important;
    font-weight:700 !important;
}

.gallery-page-section .gallery-ba-card h4{
    text-align:center !important;
    margin-top:16px !important;
    margin-bottom:0 !important;
    font-size:18px !important;
    font-weight:800 !important;
    color:#2b174f !important;
}
/* Membership Page */
.membership-page-section{
    padding:70px 0;
    background:#fff;
}

.membership-benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:35px;
}

.membership-benefit-card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    text-align:center;
    box-shadow:0 14px 40px rgba(75,46,131,.10);
}

.membership-benefit-card i{
    width:58px;
    height:58px;
    border-radius:18px;
    background:#F4F0FB;
    color:#6F42C1;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin:0 auto 16px;
}

.membership-benefit-card h3{
    color:#2b174f;
    font-size:20px;
    font-weight:800;
    margin-bottom:10px;
}

.membership-benefit-card p{
    color:#6b6675;
    font-size:14px;
    line-height:1.6;
}

.membership-journey-box{
    margin-top:45px;
    background:linear-gradient(135deg,#2b174f,#6F42C1);
    color:#fff;
    border-radius:28px;
    padding:35px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:center;
    box-shadow:0 18px 50px rgba(75,46,131,.18);
}

.membership-journey-box h2{
    font-weight:900;
    margin:10px 0;
}

.membership-journey-box p{
    color:rgba(255,255,255,.85);
}

.mini-label{
    display:inline-block;
    background:rgba(255,255,255,.16);
    padding:7px 14px;
    border-radius:30px;
    font-weight:800;
    font-size:13px;
}

.journey-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.journey-step{
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.18);
    border-radius:20px;
    padding:20px 12px;
    text-align:center;
}

.journey-step strong{
    display:block;
    font-size:24px;
    font-weight:900;
}

.journey-step span{
    display:block;
    margin-top:8px;
    font-size:13px;
    color:rgba(255,255,255,.86);
}

.membership-cta-box{
    margin-top:45px;
    background:#F8F6FC;
    border-radius:26px;
    padding:34px;
    text-align:center;
}

.membership-cta-box h2{
    color:#2b174f;
    font-weight:900;
}

.membership-cta-box p{
    color:#6b6675;
}

.membership-actions{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:20px;
}

@media(max-width:900px){
    .membership-benefits-grid{
        grid-template-columns:1fr;
    }

    .membership-journey-box{
        grid-template-columns:1fr;
    }

    .journey-steps{
        grid-template-columns:1fr;
    }
}
/* Force equal card heights */

.treatment-full-grid{
    align-items:stretch;
}

.service-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.service-card h3{
    min-height:60px;
}

.service-card p{
    flex:1;
}

.front-price-box{
    min-height:35px;
}

.card-actions{
    margin-top:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.card-actions a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    text-decoration:none;
}

.card-view{
    color:#fff !important;
}

.card-book{
    color:#6c2eb9 !important;
}
.home-offers-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    align-items:stretch;
}

.home-offer-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.home-offer-body{
    display:flex;
    flex-direction:column;
    flex:1;
}

.home-offer-body p{
    display:-webkit-box;
    -webkit-line-clamp:5;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.home-offer-price{
    margin-top:auto;
    padding-top:14px;
}

.home-offer-body .btn{
    margin-top:14px;
    align-self:flex-start;
}

@media(max-width:1100px){
    .home-offers-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .home-offers-grid{
        grid-template-columns:1fr;
    }
}
/* Offers page - 4 cards per row + equal button alignment */

.offers-grid{
    display:grid !important;
    grid-template-columns:repeat(4,1fr) !important;
    gap:24px !important;
    align-items:stretch !important;
}

.offer-card{
    display:flex !important;
    flex-direction:column !important;
    height:100% !important;
}

.offer-image-wrap img{
    width:100% !important;
    height:210px !important;
    object-fit:cover !important;
}

.offer-body{
    display:flex !important;
    flex-direction:column !important;
    flex:1 !important;
}

.offer-body p{
    display:-webkit-box !important;
    -webkit-line-clamp:5 !important;
    -webkit-box-orient:vertical !important;
    overflow:hidden !important;
}

.offer-price{
    margin-top:auto !important;
    padding-top:14px !important;
}

.offer-expiry{
    margin-top:12px !important;
}

.offer-body .btn{
    margin-top:15px !important;
    align-self:flex-start !important;
}

@media(max-width:1200px){
    .offers-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }
}

@media(max-width:768px){
    .offers-grid{
        grid-template-columns:1fr !important;
    }
}
/* Featured Treatment Cards Upgrade */

.service-card{
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:all .3s ease;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(91,55,183,0.15);
}

.service-card .service-img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;

    border-top-left-radius:24px;
    border-top-right-radius:24px;
}

.service-card h3{
    padding:20px 22px 0;
}

.service-card p{
    padding:0 22px 22px;
}

.service-card::before{
    content:'';
    display:block;
    height:4px;
    background:linear-gradient(
        90deg,
        #6f42c1,
        #a855f7
    );
}
/* Home Featured Treatment Image Shape Fix */

.treatment-card img,
.home-treatment-img{
    border-radius:18px !important;
    overflow:hidden !important;
    display:block !important;
    width:100% !important;
    height:260px !important;
    object-fit:cover !important;
    box-shadow:0 10px 25px rgba(111,66,193,0.12) !important;
}