/* =====================================
   RESET
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f6f6f6;
    color:#212121;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 15px;
}

/* =====================================
   COMMON
===================================== */

section{
    margin-bottom:30px;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.section-head h2{
    font-size:24px;
    font-weight:600;
    color:#222;
    position:relative;
    padding-bottom:15px;
}

.section-head h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;

    width:250px;
    height:1.5px;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        #ff6f61,
        #ff9f43
    );
}

.section-head a{
    color:#ff6f61;
    font-size:14px;
    font-weight:500;
}

.section-title{
    margin-bottom:20px;
    position:relative;
}

.section-title::after{
    content:'';
    width:300px;
    height:1.5px;
    border-radius:20px;
    display:block;
    margin-top:10px;
    background:linear-gradient(
        90deg,
        #ff6f61,
        #ff9f43
    );
}

.section-title h2{
    font-size:24px;
    font-weight:600;
}

/* =====================================
   TOP HEADER
===================================== */

.top-header{
    background:#ffffff;
    border-bottom:1px solid #ececec;
}

.top-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:50px;
}

.top-left{
    display:flex;
    gap:22px;
    align-items:center;
    flex-wrap:wrap;
}

.top-left a{
    font-size:13px;
    font-weight:600;
    color:#444;
    text-transform:uppercase;
}

.top-left a.active{
    color:#ff6f61;
    position:relative;
}

.top-left a.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-16px;
    width:100%;
    height:3px;
    background:#ff6f61;
}

.top-right{
    display:flex;
    gap:18px;
    align-items:center;
}

.top-right a{
    font-size:13px;
    color:#444;
}

.top-right span{
    color:#ccc;
}

/* =====================================
   MAIN HEADER
===================================== */

.main-header{
    background:#fff;
    border-bottom:1px solid #ececec;
}

.header-row{
    display:flex;
    align-items:center;
    gap:15px;
    padding:12px 0;
}

.logo{
    min-width:130px;
}

.logo h2{
    font-size:34px;
    font-weight:700;
    color:#222;
}

.location-box{
    min-width:180px;
    height:42px;
    border:1px solid #e5e5e5;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#fafafa;
}

.location-box i{
    color:#ff6f61;
}

.location-box span{
    font-size:14px;
    font-weight:500;
}

.search-box{
    flex:0 0 41%;
    position:relative;
}

.search-box input{
    width:100%;
    height:42px;
    border:1px solid #e5e5e5;
    border-radius:8px;
    padding:0 60px 0 18px;
    outline:none;
    background:#fafafa;
    font-size:14px;
}

.search-box input:focus{
    border-color:#ff6f61;
}

.search-box button{
    position:absolute;
    right:0;
    top:0;
    width:55px;
    height:48px;
    border:none;
    background:none;
    cursor:pointer;
    font-size:16px;
}

.search-box button i{
    color:#777;
}

/* =====================================
   QUICK ORDER
===================================== */

.quick-order{
    display:flex;
    align-items:center;
    gap:15px;
    white-space:nowrap;
}

.quick-order p{
    font-size:14px;
    color:#222;
    margin:0;
}

.quick-order p span{
    color:#ff6f61;
}

.quick-order a{
    background:#ff6f61;
    color:#fff;
    padding:11px 18px;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
}

/* =====================================
   CATEGORY NAV
===================================== */

.category-nav{
    background:#fff;
    border-bottom:1px solid #ececec;
}

.category-nav > .container > ul{
    display:flex;
    justify-content:center;
    gap:35px;
    align-items:center;
    min-height:42px;
    flex-wrap:wrap;
}

.category-nav a{
    font-size:13px;
    color:#444;
    transition:.3s;
}

.category-nav a:hover{
    color:#ff6f61;
}


.has-submenu{
    position:relative;
}

.submenu{
    position:absolute;
    top:100%;
    left:0;
    min-width:230px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    padding:10px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.25s;
    z-index:999;
	display:block;
}

.has-submenu:hover .submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.submenu li{
    width:100%;
	margin:0;
	padding:0;
}

.submenu{
    border:1px solid #f1f1f1;
}

.submenu li:not(:last-child){
    border-bottom:1px solid #f6f6f6;
}

.submenu a{
    display:block;
    padding:12px 18px;
    font-size:13px;
}

.submenu a:hover{
    background:#fafafa;
    color:#ff6f61;
}
/* =====================================
   HERO SECTION
===================================== */

.hero-section{
    width:100%;
    max-width:100%;
    overflow:hidden;
}

.hero-slider{
    position:relative;
	 width:100%;
}

.slide{
    display:none;
}

.slide.active{
    display:block;
}

.hero-content{
	 width:100%;
    display:grid;
    grid-template-columns:1.2fr .8fr 1fr;
    min-height:340px;
    overflow:hidden;
    background:#0b9be4;
}

.hero-left{
    padding:60px 50px;
    color:#fff;
}

.hero-left h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:18px;
    font-weight:700;
}

.hero-left p{
    font-size:20px;
    line-height:1.7;
    margin-bottom:30px;
}

.hero-btn{
    width:58px;
    height:58px;
    background:#000;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.hero-center{
    display:flex;
    justify-content:center;
    align-items:flex-end;
}

.hero-center img{
    max-height:450px;
    object-fit:contain;
}

.hero-right{
    background:rgba(255,255,255,.12);
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:40px;
    color:#fff;
}

.hero-right h2{
    font-size:34px;
    line-height:1.3;
    margin-bottom:15px;
}

.hero-right p{
    font-size:18px;
    margin-bottom:25px;
}

.notice-btn{
    display:inline-block;
    width:max-content;
    background:#fff;
    color:#222;
    padding:12px 25px;
    border-radius:6px;
    font-weight:600;
}

/* =====================================
   HERO SLIDER CONTROLS
===================================== */

.slider-controls{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:20px;
    z-index:5;
}

.slider-controls button{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
    box-shadow:0 3px 12px rgba(0,0,0,.10);
}

.dots{
    display:flex;
    gap:8px;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
}

.dot.active{
    background:#fff;
    width:28px;
    border-radius:20px;
}

/* =====================================
   ANNOUNCEMENT BAR
===================================== */

.announcement-strip{
    background:#ffffff;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
}

.announcement-strip .container{
    padding:18px 20px;
    text-align:center;
}

.announcement-strip h3{
    font-size:24px;
    font-weight:600;
    color:#222;
}

/* =====================================
   CARE PLAN
===================================== */

.care-plan-banner{
    margin-top:20px;
}

.care-banner{
    background:#fff4e8;
    border-radius:12px;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding:15px;
    gap:25px;
    border:1px solid #f3e1cd;
}

.care-left{
    width:180px;
}

.care-left img{
    width:100%;
}

.care-content{
    flex:1;
}

.care-content .tag{
    display:inline-block;
    background:#7a2f21;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    margin-bottom:12px;
}

.care-content p{
    color:#555;
    font-size:14px;
    margin-bottom:8px;
}

.care-content h3{
    font-size:20px;
    color:#222;
    margin-bottom:8px;
    line-height:1.5;
}

.care-action a{
    background:#ff6f61;
    color:#fff;
    padding:12px 28px;
    border-radius:8px;
    font-weight:600;
    display:inline-block;
}

/* =====================================
   HEALTH CONCERNS
===================================== */

.health-concerns{
    padding-top:10px;
}

.concern-grid{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:10px;
}

.concern-card{
    background:#fff;
    border-radius:12px;
    padding:10px 8px;
    text-align:center;
    transition:.3s;
    cursor:pointer;
    border:1px solid #f1f1f1;
}

.concern-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.concern-card img{
    width:105px;
    height:105px;
    object-fit:contain;
    margin:auto;
}

.concern-card h4{
    margin-top:12px;
    font-size:13px;
    font-weight:500;
    line-height:1.5;
    color:#333;
}

/* =====================================
   CHECKUP SECTION
===================================== */

.checkup-section{
    margin-top:10px;
}

.product-slider{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
}

.checkup-card{
    background:#fff;
    border-radius:10px;
    border:1px solid #ececec;
    padding:10px;
    transition:.3s;
}

.checkup-card:hover{
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.checkup-card h4{
    font-size:15px;
	font-weight:500;
    line-height:1.6;
    color:#222;
    margin-bottom:12px;
    min-height:60px;
	border-bottom: .2px solid #dedadae3;
}

.lab-name{
    font-size:13px;
    color:#777;
    margin-bottom:12px;
}

.safe-tag{
    display:inline-block;
    background:#e8fff1;
    color:#0d8d4c;
    font-size:12px;
    padding:4px 8px;
    border-radius:30px;
    margin-bottom:5px;
	float:right;
}

.price-row{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    align-items:center;
}

.price-home{
    font-size:21px;
    font-weight:600;
    color:#222;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    font-size:14px;
}

.discount{
    color:#1a9d4c;
    font-size:13px;
    font-weight:600;
}

/* =====================================
   FEATURED BRANDS
===================================== */

.brand-section{
    margin-top:10px;
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:10px;
}

.brand-card{
    background:#fff;
    border-radius:12px;
    border:1px solid #ececec;
    padding:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:120px;
    transition:.3s;
}

.brand-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.brand-card img{
    max-height:100px;
    object-fit:contain;
}

.location-box{
    position:relative;
    min-width:150px;
    padding:0 15px;
    justify-content:flex-start;
}

.location-box select{
    border:none;
    background:none;
    width:100%;
    height:42px;
    font-size:14px;
    font-weight:500;
    outline:none;
    appearance:none;
    cursor:pointer;
    padding-right:20px;
}

.dropdown-icon{
    position:absolute;
    right:12px;
    font-size:12px;
    color:#777;
    pointer-events:none;
}

/* =====================================
   PERSONAL CARE
===================================== */

.personal-care{
    margin-top:10px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:10px;
}

.category-card{
    background:#fff;
    border-radius:10px;
    padding:5px;
    text-align:center;
    border:1px solid #ececec;
    transition:.3s;
}

.category-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.category-card img{
    width:110px;
    height:110px;
    margin:auto;
    object-fit:cover;
    border-radius:5%;
}

.category-card span{
    display:block;
    margin-top:12px;
    font-size:13px;
    font-weight:500;
    color:#333;
}
/* =====================================
   SPOTLIGHT PRODUCTS
===================================== */

.spotlight-section{
    margin-top:20px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.product-card{
    background:#fff;
    border-radius:12px;
    border:1px solid #ececec;
    padding:18px;
    transition:all .3s ease;
    position:relative;
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.product-image{
    height:180px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:15px;
}

.product-image img{
    max-height:160px;
    width:auto;
    object-fit:contain;
}

.product-card h4{
    font-size:14px;
	font-weight:500;
    line-height:1.6;
    color:#222;
    margin-bottom:8px;
    height:46px;
    overflow:hidden;
}

.delivery{
    font-size:12px;
    color:#7d7d7d;
    margin-bottom:8px;
}

.product-price{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px;
}

.product-price .price{
    font-size:20px;
    font-weight:700;
    color:#222;
}

.product-price .old-price{
    font-size:13px;
    text-decoration:line-through;
    color:#999;
}

.product-price .discount{
    font-size:12px;
    color:#16a34a;
    font-weight:600;
}

/* =====================================
   AYURVEDA BRANDS
===================================== */

.ayurveda-brands{
    margin-top:35px;
}

.ayurveda-brands .brand-card{
    min-height:140px;
}

.ayurveda-brands .brand-card img{
    max-height:110px;
}

/* =====================================
   HOMEOPATHY PRODUCTS
===================================== */

.homeopathy-section{
    margin-top:35px;
}

.rating{
    color:#f59e0b;
    font-size:13px;
    margin-bottom:12px;
    font-weight:500;
}

/* =====================================
   STATS SECTION
===================================== */

.stats-section{
    margin-top:50px;
    background:#fff;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
    padding:45px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.stat-box{
    text-align:center;
}

.stat-box h2{
    font-size:42px;
    color:#222;
    margin-bottom:8px;
    font-weight:700;
}

.stat-box p{
    color:#666;
    font-size:15px;
}

/* =====================================
   FOOTER
===================================== */

.footer{
    background:#ffffff;
    padding:60px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:
    1fr
    1fr
    1fr
    1fr
    1.2fr;
    gap:40px;
}

.footer-column h3{
    font-size:18px;
    margin-bottom:20px;
    color:#222;
    font-weight:600;
}

.footer-column ul li{
    margin-bottom:12px;
}

.footer-column ul li a{
    color:#666;
    font-size:14px;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#ff6f61;
    padding-left:3px;
}

.social-links{
    display:flex;
    gap:12px;
}

.social-links a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#f3f3f3;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.social-links a:hover{
    background:#ff6f61;
    color:#fff;
}

.social-links i{
    font-size:16px;
}

.app-column img{
    width:170px;
    margin-bottom:12px;
}

/* =====================================
   FOOTER BOTTOM
===================================== */

.footer::after{
    content:"";
    display:block;
    border-top:1px solid #ececec;
    margin-top:40px;
}

.footer-bottom{
    margin-top:25px;
    text-align:center;
}

.footer-bottom p{
    font-size:13px;
    color:#888;
}

/* =====================================
   GLOBAL CARD POLISH
===================================== */

.brand-card,
.product-card,
.checkup-card,
.concern-card,
.category-card{
    will-change:transform;
}

.brand-card:hover,
.product-card:hover,
.checkup-card:hover,
.concern-card:hover,
.category-card:hover{
    border-color:#e3e3e3;
}

/* =====================================
   SCROLLBAR
===================================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#f3f3f3;
}

::-webkit-scrollbar-thumb{
    background:#d1d1d1;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#b5b5b5;
}

/* =====================================
   IMAGE CONSISTENCY
===================================== */

.brand-card img,
.product-image img,
.category-card img,
.concern-card img{
    transition:.3s;
}

.product-card:hover .product-image img,
.brand-card:hover img,
.category-card:hover img{
    transform:scale(1.05);
}

/* =====================================
   SECTION SPACING
===================================== */

.health-concerns,
.checkup-section,
.brand-section,
.personal-care,
.spotlight-section,
.ayurveda-brands,
.homeopathy-section{
    padding-top:10px;
    padding-bottom:10px;
}

/* =====================================
   LARGE LAPTOP
===================================== */

@media(max-width:1400px){

    .container{
        max-width:1300px;
    }

    .hero-left h1{
        font-size:42px;
    }

    .hero-right h2{
        font-size:28px;
    }

}

/* =====================================
   TABLET LANDSCAPE
===================================== */

@media(max-width:1200px){

    .concern-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .brand-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .category-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .product-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .product-slider{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-left{
        padding:40px;
    }

    .hero-center{
        padding-top:20px;
    }

    .hero-right{
        padding:30px;
    }

}

/* =====================================
   TABLET
===================================== */

@media(max-width:991px){

    .top-header{
        display:none;
    }

    .category-nav ul{
        justify-content:flex-start;
        overflow-x:auto;
        white-space:nowrap;
        flex-wrap:nowrap;
        padding:0 10px;
    }

    .category-nav ul::-webkit-scrollbar{
        display:none;
    }

    .hero-left h1{
        font-size:36px;
    }

    .hero-left p{
        font-size:18px;
    }

    .hero-right h2{
        font-size:26px;
    }

    .announcement-strip h3{
        font-size:20px;
    }

    .care-banner{
        flex-direction:column;
        text-align:center;
    }

    .care-action{
        width:100%;
    }

    .care-action a{
        width:100%;
        display:block;
    }

    .stats-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

}

/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){
	

    .container{
        padding:0 10px;
    }

    .section-head h2{
        font-size:20px;
    }

    .section-title h2{
        font-size:20px;
    }

    .announcement-strip h3{
        font-size:18px;
        line-height:1.5;
    }

    .hero-content{
        min-height:auto;
    }

    .hero-left{
        padding:35px 20px;
    }

    .hero-left h1{
        font-size:28px;
        line-height:1.3;
    }

    .hero-left p{
        font-size:15px;
        margin-bottom:20px;
    }

    .hero-center img{
        max-height:220px;
    }

    .hero-right{
        padding:25px 20px;
    }

    .hero-right h2{
        font-size:22px;
    }

    .hero-right p{
        font-size:14px;
    }

    .concern-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .brand-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .category-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .product-slider{
        grid-template-columns:1fr;
    }

    .checkup-card{
        padding:15px;
    }

    .product-card{
        padding:12px;
    }

    .product-image{
        height:140px;
    }

    .product-image img{
        max-height:120px;
    }

    .product-card h4{
        font-size:13px;
        height:auto;
        min-height:45px;
    }

    .price{
        font-size:18px !important;
    }

    .footer-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:25px;
    }

    .social-links{
        justify-content:flex-start;
    }

    .app-column img{
        width:150px;
    }
	.header-row{
    gap:8px;
}
.header-row{
    display:grid;
    gap:5px;
    align-items:center;
    justify-items: stretch;
}

.logo{
    width:auto;
    min-width:auto;
    margin:0;
    display:flex;
    align-items:center;
    justify-content:center;
}


.logo h2{
    display:none;
}

.location-box{
    min-width:110px;
    width:110px;
    height:42px;
    display: none;
}

.search-box{
    flex:none;
    width:100%;
}

.quick-order{
    grid-column:1 / -1;
    justify-content:center;
    gap:12px;
    margin-top:8px;
}

}

/* =====================================
   SMALL MOBILE
===================================== */

@media(max-width:576px){

    body{
        font-size:14px;
    }

    .logo h2{
        font-size:28px;
    }

    .search-box input{
        height:45px;
        display: none;
    }

    .search-box button{
        height:45px;
        display: none;
    }

    .hero-left h1{
        font-size:24px;
    }

    .hero-btn{
        width:50px;
        height:50px;
    }

    .hero-center img{
        max-height:180px;
    }

    .hero-right h2{
        font-size:20px;
    }

    .concern-card{
        padding:10px 8px;
    }

    .concern-card img{
        width:100px;
        height:100px;
    }

    .category-card img{
        width:100px;
        height:100px;
    }

    .brand-card{
        min-height:100px;
        padding:10px;
    }

    .brand-card img{
        max-height:95px;
    }

    .announcement-strip .container{
        padding:10px;
    }

    .care-content h3{
        font-size:17px;
    }

    .care-content p{
        font-size:13px;
    }

}

/* =====================================
   EXTRA SMALL DEVICES
===================================== */

@media(max-width:420px){

    .product-grid{
        grid-template-columns:1fr;
    }

    .concern-grid{
        grid-template-columns:1fr 1fr;
    }

    .brand-grid{
        grid-template-columns:1fr 1fr;
    }

    .category-grid{
        grid-template-columns:1fr 1fr;
    }

    .section-head{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .section-head a{
        font-size:13px;
    }

    .quick-order p{
        font-size:13px;
    }

    .quick-order a{
        width:100%;
        text-align:center;
    }

}

/* =====================================
   TOUCH DEVICES
===================================== */

@media(hover:none){

    .product-card:hover,
    .brand-card:hover,
    .category-card:hover,
    .concern-card:hover,
    .checkup-card:hover{
        transform:none;
    }

}

/* Sticky Header */

.category-nav.sticky{
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* Search Focus */

.search-box.focused input{
    border-color:#ff6f61;
    box-shadow:0 0 0 4px rgba(255,111,97,.12);
}

/* Reveal Animation */

.hidden-item{
    opacity:0;
    transform:translateY(25px);
    transition:.6s ease;
}

.hidden-item.show{
    opacity:1;
    transform:translateY(0);
}
.site-header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
}
/* MOBILE SIDEBAR HIDDEN ON DESKTOP */

.mobile-sidebar,
.mobile-overlay{
    display:none;
}


.mobile-toggle{
    display:none;
}

.mobile-sidebar{
    position:fixed;
    left:-320px;
    top:0;
    width:300px;
    height:100vh;
    background:#fff;
    z-index:9999;
    overflow-y:auto;
    transition:.35s ease;
    box-shadow:0 0 30px rgba(0,0,0,.12);
}

.mobile-sidebar.active{
    left:0;
}

.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9998;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-header{
    padding:25px;
    background:#ff6f61;
    color:#fff;
}

.mobile-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.user-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.mobile-user h4{
    margin-bottom:4px;
}

.mobile-user p{
    font-size:13px;
    opacity:.9;
}

.mobile-login-btn{
    margin-top:18px;
    display:block;
    text-align:center;
    background:#fff;
    color:#ff6f61;
    padding:12px;
    border-radius:8px;
    font-weight:600;
}

.mobile-search-wrap{
    padding:15px;
    border-bottom:1px solid #eee;
}

.mobile-location{
    display:flex;
    align-items:center;
    gap:10px;
    border:1px solid #eee;
    border-radius:8px;
    padding:0 12px;
    height:45px;
    margin-bottom:12px;
}

.mobile-location select{
    border:none;
    width:100%;
    background:none;
    outline:none;
}

.mobile-search{
    position:relative;
}

.mobile-search input{
    width:100%;
    height:45px;
    border:1px solid #eee;
    border-radius:8px;
    padding:0 45px 0 15px;
}

.mobile-search button{
    position:absolute;
    right:0;
    top:0;
    width:45px;
    height:45px;
    border:none;
    background:none;
}

.mobile-nav{
    padding:10px 0;
}

.mobile-nav li{
    border-bottom:1px solid #f3f3f3;
}

.mobile-nav a{
    display:block;
    padding:15px 20px;
    font-size:14px;
    font-weight:500;
    color:#333;
}

.mobile-nav a:hover{
    background:#fafafa;
    color:#ff6f61;
}

@media(max-width:768px){

    .mobile-sidebar,
    .mobile-overlay{
        display:block;
    }

    .mobile-toggle{
        display:flex;
        width:42px;
        height:42px;
        border:1px solid #e5e5e5;
        border-radius:8px;
        justify-content:center;
        align-items:center;
        cursor:pointer;
        background:#fff;
    }

    .category-nav{
        display:none;
    }

}

@media(min-width:769px){

    .mobile-toggle,
    .mobile-sidebar,
    .mobile-overlay{
        display:none !important;
    }

}

.mobile-menu-btn{
    width:100%;
    border:none;
    background:none;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
}

.mobile-submenu{
    display:none;
    background:#fafafa;
}

.mobile-submenu a{
    display:block;
    padding:12px 35px;
    font-size:13px;
}

.mobile-parent.active .mobile-submenu{
    display:block;
}


/* =====================================
   LOGIN PAGE
===================================== */

.auth-section{
    padding:60px 15px;
}

.auth-card{
    max-width:480px;
    margin:auto;
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    border:1px solid #ececec;
}

.auth-logo{
    text-align:center;
    margin-bottom:30px;
}

.auth-logo h2{
    font-size:32px;
    color:#222;
    margin-bottom:10px;
}

.auth-logo p{
    color:#666;
    font-size:14px;
    line-height:1.7;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:500;
    color:#333;
}

.form-group input{
    width:100%;
    height:52px;
    border:1px solid #e5e5e5;
    border-radius:8px;
    padding:0 15px;
    font-size:14px;
    transition:.3s;
}

.form-group input:focus{
    outline:none;
    border-color:#ff6f61;
}

.auth-links{
    text-align:right;
    margin-bottom:20px;
}

.auth-links a{
    color:#ff6f61;
    font-size:13px;
    font-weight:500;
}

.login-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:8px;
    background:#ff6f61;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.login-btn:hover{
    opacity:.95;
}

.auth-divider{
    text-align:center;
    margin:25px 0;
    position:relative;
}

.auth-divider::before{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    width:100%;
    height:1px;
    background:#ececec;
}

.auth-divider span{
    position:relative;
    background:#fff;
    padding:0 15px;
    color:#777;
    font-size:13px;
}

.auth-alt{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.otp-btn,
.google-btn{
    height:48px;
    border:1px solid #e5e5e5;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

.otp-btn:hover,
.google-btn:hover{
    background:#fafafa;
}

.auth-trust{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:25px;
    font-size:12px;
    color:#666;
}

.auth-trust i{
    color:#16a34a;
    margin-right:5px;
}

.auth-benefits{
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid #f1f1f1;
}

.auth-benefits h4{
    font-size:15px;
    margin-bottom:15px;
}

.auth-benefits ul{
    list-style:none;
}

.auth-benefits li{
    margin-bottom:10px;
    color:#555;
    font-size:14px;
    position:relative;
    padding-left:20px;
}

.auth-benefits li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:#16a34a;
    font-weight:700;
}

.signup-link{
    margin-top:25px;
    text-align:center;
    font-size:14px;
    color:#666;
}

.signup-link a{
    color:#ff6f61;
    font-weight:600;
}

@media(max-width:576px){

    .auth-section{
        padding:30px 10px;
    }

    .auth-card{
        padding:25px 20px;
        border-radius:14px;
    }

    .auth-logo h2{
        font-size:26px;
    }

    .auth-trust{
        flex-direction:column;
        align-items:center;
        gap:8px;
    }

}

/* ==========================
LAB TEST PAGE
========================== */

.lab-hero{
    padding:40px 0;
}

.lab-hero-grid{
    display:grid;
    grid-template-columns:1.3fr .95fr;
    gap:30px;
}

.lab-left h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:30px;
    font-weight:700;
}

.lab-search{
    background:#fff;
    border-radius:50px;
    padding:10px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.lab-location{
    padding:0 20px;
    border-right:1px solid #eee;
    white-space:nowrap;
}

.lab-search input{
    flex:1;
    border:none;
    outline:none;
    font-size:15px;
}

.lab-search button{
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#ff6f61;
    color:#fff;
    cursor:pointer;
}

.lab-actions{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:25px;
}

.action-card{
    background:#fff;
    padding:18px;
    border-radius:14px;
    text-align:center;
    font-size:14px;
    transition:.3s;
}

.action-card:hover{
    transform:translateY(-3px);
}

.lab-category-box{
    background:#fff;
    border-radius:18px;
    margin-top:25px;
    padding:25px;
}

.lab-category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:20px;
}

.lab-category-card{
    border:1px solid #eee;
    border-radius:14px;
    padding:20px;
    background:#fafafa;
}

.lab-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.trust-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.trust-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:20px;
}

.needs-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.need-card{
    text-align:center;
}

.need-card img{
    width:100%;
    border-radius:18px;
}

.need-card h4{
    margin-top:12px;
}

.lab-cta{
    padding:50px 0;
}

.cta-box{
    background:linear-gradient(
        90deg,
        #ff6f61,
        #ff9f43
    );
    padding:40px;
    border-radius:20px;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cta-box a{
    background:#fff;
    color:#222;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
}

@media(max-width:991px){

.lab-hero-grid{
    grid-template-columns:1fr;
}

.needs-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.lab-left h1{
    font-size:34px;
}

.lab-actions{
    grid-template-columns:1fr;
}

.lab-category-grid{
    grid-template-columns:1fr;
}

.lab-right{
    grid-template-columns:1fr;
}

.needs-grid{
    grid-template-columns:repeat(2,1fr);
}

.cta-box{
    flex-direction:column;
    text-align:center;
    gap:20px;
}

}


/* ==========================
PARTNERSHIP PAGE
========================== */

.partner-hero{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:
    linear-gradient(
        180deg,
        #ffffff,
        #fff7f8
    );
    text-align:center;
}

.partner-hero-content{
    max-width:650px;
    margin:auto;
    position:relative;
    z-index:2;
}

.partner-hero h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:20px;
}

.partner-hero h1 span{
    color:#ff6f61;
}

.partner-hero p{
    color:#666;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.partner-btn{
    display:inline-block;
    background:#111827;
    color:#fff;
    padding:14px 35px;
    border-radius:8px;
    font-weight:600;
}

.partner-shape{
    position:absolute;
    width:350px;
    height:350px;
    opacity:.15;
    background-size:contain;
    background-repeat:no-repeat;
    animation:floatShape 8s ease-in-out infinite;
}

.shape-left{
    left:-50px;
    bottom:0;
}

.shape-right{
    right:-50px;
    top:40px;
}

@keyframes floatShape{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0);
    }

}

.health-platform{
    padding:80px 0;
}

.platform-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
}

.platform-left h2{
    font-size:40px;
    margin-bottom:30px;
}

.platform-left span{
    color:#ff6f61;
}

.platform-feature{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.platform-feature i{
    font-size:26px;
    color:#ff6f61;
}

.platform-feature h4{
    margin-bottom:8px;
}

.platform-feature p{
    color:#666;
    line-height:1.7;
}

.platform-right{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.stat-box{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
}

.stat-box h3{
    color:#ff6f61;
    font-size:32px;
}

.partner-solutions{
    padding:70px 0;
}

.solution-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:25px;
}

.solution-tab{
    border:none;
    background:#fff;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
    border:1px solid #ececec;
}

.solution-tab.active{
    background:#ffe7e4;
    color:#ff6f61;
}

.solution-content{
    margin-top:30px;
    max-width:700px;
}

.solution-content p{
    margin-bottom:20px;
    color:#555;
}

.solution-content ul{
    margin-bottom:25px;
}

.solution-content li{
    margin-bottom:10px;
    padding-left:18px;
    position:relative;
}

.solution-content li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:#16a34a;
}

@media(max-width:991px){

.platform-grid{
    grid-template-columns:1fr;
}

.partner-hero h1{
    font-size:42px;
}

}

@media(max-width:768px){

.partner-hero{
    padding:80px 0;
}

.partner-hero h1{
    font-size:32px;
}

.platform-left h2{
    font-size:28px;
}

.solution-tabs{
    gap:8px;
}

.solution-tab{
    width:100%;
}
}


/* ==========================
PARTNERSHIP PAGE PART 2
========================== */

.partner-brands{
    padding:80px 0;
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:10px;
    margin-top:40px;
}

.brand-item{
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    padding:25px;
    text-align:center;
    transition:.3s;
}

.brand-item:hover{
    transform:translateY(-4px);
}

.brand-item img{
    max-width:100%;
    max-height:60px;
}

.ceo-section{
    padding:90px 0;
}

.ceo-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.small-heading{
    color:#ff6f61;
    font-weight:600;
}

.ceo-content h2{
    font-size:42px;
    margin:10px 0;
}

.ceo-content h4{
    margin-bottom:20px;
    color:#444;
}

.ceo-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.ceo-sign{
    margin-top:30px;
}

.ceo-sign strong{
    display:block;
}

.ceo-sign span{
    color:#777;
}

.ceo-image{
    text-align:center;
}

.ceo-image img{
    max-width:100%;
}

.partner-contact{
    padding:80px 0;
}

.contact-wrapper{
    background:#fff;
    border-radius:24px;
    padding:50px;
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.contact-info h2{
    font-size:40px;
    margin-bottom:20px;
}

.contact-info p{
    color:#666;
    margin-bottom:25px;
}

.contact-info li{
    margin-bottom:12px;
    padding-left:20px;
    position:relative;
}

.contact-info li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:#16a34a;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:14px;
    margin-bottom:15px;
    font-family:inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#ff6f61;
}

.contact-form button{
    border:none;
    background:#ff6f61;
    color:#fff;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
}

.partner-final-cta{
    padding:80px 0;
}

.final-cta-box{
    background:
    linear-gradient(
        90deg,
        #ff6f61,
        #ff4fa0
    );
    color:#fff;
    text-align:center;
    padding:60px;
    border-radius:24px;
}

.final-cta-box h2{
    font-size:42px;
    margin-bottom:15px;
}

.final-cta-box p{
    max-width:700px;
    margin:0 auto 25px;
}

.final-cta-box a{
    display:inline-block;
    background:#fff;
    color:#111;
    padding:14px 35px;
    border-radius:10px;
    font-weight:600;
}

@media(max-width:991px){

.brand-grid{
    grid-template-columns:repeat(2,1fr);
}

.ceo-grid,
.contact-wrapper{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.brand-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.form-row{
    grid-template-columns:1fr;
}

.contact-wrapper{
    padding:25px;
}

.ceo-content h2,
.contact-info h2,
.final-cta-box h2{
    font-size:30px;
}

.final-cta-box{
    padding:35px 20px;
}

}

/* =====================================
   CORPORATE WELLNESS PAGE
===================================== */

.corporate-hero{
    position:relative;
    overflow:hidden;
    padding:110px 0;
    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f9fbff
    );
}

.corporate-hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    right:-120px;
    top:-50px;
    border-radius:50%;
    background:
    radial-gradient(
        rgba(255,111,97,.08),
        transparent 70%
    );
}

.corporate-hero::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    left:-100px;
    bottom:-100px;
    border-radius:50%;
    background:
    radial-gradient(
        rgba(11,155,228,.08),
        transparent 70%
    );
}

.corporate-hero-content{
    max-width:760px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

.corporate-hero-content{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#fff1ef;
    color:#ff6f61;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.corporate-hero h1{
    font-size:60px;
    line-height:1.15;
    margin-bottom:20px;
    color:#222;
}

.corporate-hero p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    max-width:700px;
    margin:auto;
}

.hero-actions{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:15px;
}

.btn-primary{
    background:#ff6f61;
    color:#fff;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
}

.btn-outline{
    border:1px solid #e5e5e5;
    background:#fff;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
}

/* =====================================
   STATS
===================================== */

.corporate-stats{
    margin-top:-40px;
    position:relative;
    z-index:5;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.stat-card{
    background:#fff;
    border-radius:14px;
    padding:25px 15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.stat-card h3{
    font-size:34px;
    color:#ff6f61;
    margin-bottom:10px;
}

.stat-card p{
    color:#666;
    font-size:14px;
}

/* =====================================
   WHY CHOOSE US
===================================== */

.corporate-why{
    padding:80px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.why-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    text-align:center;
    border:1px solid #ececec;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.07);
}

.why-card i{
    font-size:36px;
    color:#ff6f61;
    margin-bottom:20px;
}

.why-card h4{
    margin-bottom:12px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}

/* =====================================
   SOLUTIONS
===================================== */

.corporate-solutions{
    padding-bottom:80px;
}

.solution-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.solution-box{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #ececec;
    transition:.3s;
}

.solution-box:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.solution-box img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.solution-box h3{
    padding:20px 20px 10px;
}

.solution-box p{
    padding:0 20px 25px;
    color:#666;
    line-height:1.8;
}

/* =====================================
   INDUSTRIES
===================================== */

.industries-section{
    padding-bottom:80px;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.industry-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:14px;
    padding:25px;
    text-align:center;
    font-weight:600;
    transition:.3s;
}

.industry-card:hover{
    background:#fff4f2;
    border-color:#ff6f61;
}

/* =====================================
   TESTIMONIAL
===================================== */

.corporate-testimonial{
    padding-bottom:80px;
}

.testimonial-box{
    max-width:850px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.testimonial-box p{
    font-size:22px;
    line-height:1.8;
    color:#333;
    margin-bottom:25px;
}

.testimonial-box h4{
    margin-bottom:5px;
}

.testimonial-box span{
    color:#777;
}

/* =====================================
   LEAD FORM
===================================== */

.corporate-form{
    padding-bottom:90px;
}

.corporate-form-box{
    max-width:950px;
    margin:auto;
    background:#fff;
    border-radius:20px;
    padding:45px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.corporate-form-box h2{
    text-align:center;
    margin-bottom:30px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.corporate-form input,
.corporate-form textarea{
    width:100%;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:14px;
    margin-bottom:15px;
    font-family:inherit;
}

.corporate-form input:focus,
.corporate-form textarea:focus{
    outline:none;
    border-color:#ff6f61;
}

.corporate-form button{
    background:#ff6f61;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:1200px){

    .stats-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    .corporate-hero{
        padding:80px 0;
    }

    .corporate-hero h1{
        font-size:42px;
    }

    .solution-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .corporate-hero h1{
        font-size:32px;
    }

    .corporate-hero p{
        font-size:15px;
    }

    .hero-actions{
        flex-direction:column;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .industry-grid{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .testimonial-box{
        padding:25px;
    }

    .testimonial-box p{
        font-size:18px;
    }

    .corporate-form-box{
        padding:25px;
    }

}

@media(max-width:480px){

    .stats-grid{
        grid-template-columns:1fr;
    }

}

/* =====================================
PRODUCT DETAILS PAGE
===================================== */

.product-detail-page{
    padding:30px 0 60px;
}

/* =====================================
BREADCRUMB
===================================== */

.breadcrumb{
    margin-bottom:25px;
    font-size:13px;
    color:#777;
}

.breadcrumb a{
    color:#555;
}

.breadcrumb span{
    margin:0 6px;
}

/* =====================================
MAIN LAYOUT
===================================== */

.product-layout{
    display:grid;
    grid-template-columns:520px minmax(0,1fr) 340px;
    gap:40px;
    align-items:start;
}

/* =====================================
GALLERY
===================================== */

.product-gallery-wrap{
    position:sticky;
    top:100px;
}

.product-gallery{
    display:grid;
    grid-template-columns:90px 1fr;
    gap:20px;
}

.thumb-gallery{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.thumb-gallery img{
    width:90px;
    height:90px;
    object-fit:contain;
    border:2px solid #ececec;
    border-radius:12px;
    cursor:pointer;
    background:#fff;
    padding:6px;
    transition:.3s;
}

.thumb-gallery img:hover,
.thumb-gallery img.active{
    border-color:#ff6f61;
}

.main-product-image{
    background:#fff;
    border-radius:20px;
    border:1px solid #ececec;
    min-height:620px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.main-product-image img{
    max-width:100%;
    max-height:560px;
    object-fit:contain;
    transition:.4s;
}

.main-product-image:hover img{
    transform:scale(1.04);
}

/* =====================================
TRUST STRIP
===================================== */

.gallery-trust{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:18px;
    font-size:13px;
}

.gallery-trust div{
    color:#666;
}

.gallery-trust i{
    color:#16a34a;
    margin-right:5px;
}

/* =====================================
PRODUCT INFO
===================================== */

.product-brand{
    color:#ff6f61;
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
}

.product-info h1{
    font-size:20px;
    line-height:1.3;
    margin-bottom:15px;
    color:#222;
}

.rating-review{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.rating-badge{
    background:#16a34a;
    color:#fff;
    padding:6px 10px;
    border-radius:6px;
    font-size:13px;
    font-weight:600;
}

.manufacturer{
    color:#666;
    margin-bottom:25px;
}

.option-block{
    margin-bottom:25px;
}

.option-block h4{
    margin-bottom:12px;
}

.option-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.option-list button{
    border:1px solid #ddd;
    background:#fff;
    border-radius:10px;
    padding:10px 15px;
    cursor:pointer;
    transition:.3s;
}

.option-list button.active{
    border-color:#ff6f61;
    background:#fff4f2;
    color:#ff6f61;
}

.product-highlights{
    margin-top:25px;
}

.product-highlights h3{
    margin-bottom:15px;
}

.product-highlights ul{
    padding-left:20px;
}

.product-highlights li{
    margin-bottom:10px;
    color:#555;
    line-height:1.7;
}

/* =====================================
BUY BOX
===================================== */

.purchase-box{
    position:sticky;
    top:100px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.save-tag{
    background:#e9fff0;
    color:#16a34a;
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.price{
    font-size:30px;
    font-weight:700;
    margin-top:5px;
}

.mrp{
    color:#888;
    text-decoration:line-through;
    margin-bottom:5px;
}

.tax-text{
    font-size:13px;
    color:#777;
}

.delivery-card{
    background:#f8fafc;
    padding:16px;
    border-radius:12px;
    margin:25px 0;
}

.delivery-card h4{
    margin-bottom:6px;
}

.purchase-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.add-cart-btn{
    height:52px;
    border:none;
    border-radius:10px;
    background:#ff6f61;
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

.btn-buy{
    height:52px;
    border:1px solid #ff6f61;
    border-radius:10px;
    background:#fff;
    color:#ff6f61;
    font-weight:600;
    cursor:pointer;
}

.security-note{
    margin-top:18px;
    text-align:center;
    color:#777;
    font-size:13px;
}

/* =====================================
TABS
===================================== */

.product-detail-tabs{
    padding:70px 0;
}

.tab-nav{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.tab-btn{
    border:none;
    background:#f3f4f6;
    padding:12px 18px;
    border-radius:10px;
    cursor:pointer;
}

.tab-btn.active{
    background:#ff6f61;
    color:#fff;
}

.tab-panel{
    display:none;
    background:#fff;
    border-radius:18px;
    padding:35px;
    border:1px solid #ececec;
}

.tab-panel.active{
    display:block;
}

.tab-panel p,
.tab-panel li{
    line-height:1.8;
    color:#555;
}

/* =====================================
FAQ
===================================== */

.faq-item{
    border-bottom:1px solid #eee;
}

.faq-title{
    width:100%;
    text-align:left;
    border:none;
    background:none;
    padding:18px 0;
    cursor:pointer;
    font-weight:600;
}

.faq-content{
    padding-bottom:18px;
    color:#666;
}

/* =====================================
SPEC TABLE
===================================== */

.product-specs{
    padding-bottom:70px;
}

.spec-table{
    background:#fff;
    border-radius:18px;
    border:1px solid #ececec;
}

.spec-row{
    display:flex;
    justify-content:space-between;
    padding:18px 25px;
    border-bottom:1px solid #f3f3f3;
}

.spec-row:last-child{
    border-bottom:none;
}

.spec-row span{
    color:#666;
}

/* =====================================
REVIEWS
===================================== */

.product-reviews{
    padding-bottom:70px;
}

.review-summary{
    display:grid;
    grid-template-columns:250px 1fr;
    gap:30px;
    margin-bottom:35px;
}

.review-score{
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:30px;
    border:1px solid #ececec;
}

.review-score h2{
    font-size:52px;
}

.bar-row{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:12px;
}

.bar{
    flex:1;
    background:#eee;
    height:8px;
    border-radius:20px;
}

.bar div{
    height:100%;
    background:#16a34a;
    border-radius:20px;
}

.review-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    padding:25px;
    margin-bottom:15px;
}

/* =====================================
RELATED
===================================== */

.related-products{
    padding-bottom:80px;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.related-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    border:1px solid #ececec;
    transition:.3s;
}

.related-card:hover{
    transform:translateY(-5px);
}

.related-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.related-card h4{
    padding:15px 15px 5px;
}

.related-card span{
    display:block;
    padding:0 15px 15px;
    color:#ff6f61;
    font-weight:600;
}

/* =====================================
RESPONSIVE
===================================== */

@media(max-width:1200px){

.product-layout{
    grid-template-columns:420px minmax(0,1fr);
}

.purchase-box{
    grid-column:1/-1;
    position:static;
}

}

@media(max-width:991px){

.product-layout{
    grid-template-columns:1fr;
}

.product-gallery-wrap{
    position:static;
}

.review-summary{
    grid-template-columns:1fr;
}

.related-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.product-gallery{
    grid-template-columns:1fr;
}

.thumb-gallery{
    flex-direction:row;
    overflow:auto;
}

.main-product-image{
    min-height:350px;
}

.product-info h1{
    font-size:28px;
}

.related-grid{
    grid-template-columns:1fr;
}

.gallery-trust{
    flex-direction:column;
    gap:8px;
    text-align:center;
}

.tab-panel{
    padding:20px;
}

.spec-row{
    flex-direction:column;
    gap:5px;
}

}

@media(max-width:480px){

.price{
    font-size:38px;
}

.option-list button{
    width:100%;
}

.tab-nav{
    flex-direction:column;
}

.tab-btn{
    width:100%;
}

}

/* =====================================
   CANCER CARE PAGE
===================================== */

/* HERO */

.cancer-hero{
    background:
    linear-gradient(
        135deg,
        #fde7ef,
        #fff5f8
    );
}

.cancer-hero::before,
.cancer-hero::after{
    content:'🎗';
    position:absolute;
    font-size:80px;
    opacity:.08;
}

.cancer-hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#fff;
    color:#ff6f61;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.cancer-content h1{
    font-size:58px;
    line-height:1.15;
    margin-bottom:20px;
    color:#111827;
}

.cancer-content h1 span{
    display:block;
    color:#ff6f61;
}

.cancer-content p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn-primary{
    background:#ff6f61;
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
}

.btn-outline{
    border:1px solid #ff6f61;
    color:#ff6f61;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    background:#fff;
}

.cancer-image img{
    width:100%;
    display:block;
}

/* SERVICES */

.cancer-services{
    padding:80px 0;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
}

.service-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    padding:25px 15px;
    text-align:center;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.service-card i{
    font-size:36px;
    color:#ff6f61;
    margin-bottom:15px;
}

.service-card h4{
    font-size:15px;
}

/* CANCER TYPES */

.cancer-types{
    padding-bottom:80px;
}

.types-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.type-card{
    background:#d7f3ee;
    border-radius:16px;
    padding:30px;
    transition:.3s;
}

.type-card:hover{
    transform:translateY(-5px);
}

.type-card h4{
    margin-bottom:15px;
    color:#115e59;
}

.type-card a{
    color:#0f766e;
    font-size:14px;
    font-weight:600;
}

/* CAUSES */

.cancer-causes{
    background:#cfeee8;
    padding:80px 0;
}

.cause-intro{
    max-width:900px;
    margin:0 auto 50px;
    text-align:center;
    color:#444;
    line-height:1.8;
}

.cause-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.cause-box{
    text-align:center;
}

.cause-icon{
    width:130px;
    height:130px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#111;
    display:flex;
    align-items:center;
    justify-content:center;
}

.cause-icon i{
    color:#fff;
    font-size:55px;
}

.cause-box h3{
    margin-bottom:15px;
}

.cause-box p{
    line-height:1.8;
    color:#555;
}

/* FINANCIAL SUPPORT */

.cancer-support{
    background:#f3e39f;
    padding:80px 0;
}

.support-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:30px;
    align-items:center;
}

.support-content{
    background:#fff;
    border-radius:20px;
    padding:50px;
    min-height:320px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.support-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.support-content p{
    color:#555;
    line-height:1.8;
}

.support-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    min-height:320px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.support-card h3{
    margin-bottom:20px;
}

.support-card p{
    line-height:1.8;
    margin-bottom:25px;
}

.support-card a{
    display:inline-block;
    background:#e4c95d;
    padding:12px 24px;
    border-radius:8px;
    color:#111;
    font-weight:600;
}

/* CTA */

.cancer-cta{
    padding:90px 0;
}

.cta-box{
    background:
    linear-gradient(
        135deg,
        #ff6f61,
        #ff4fa0
    );
    color:#fff;
    text-align:center;
    padding:70px;
    border-radius:24px;
}

.cta-box h2{
    font-size:44px;
    margin-bottom:15px;
}

.cta-box p{
    font-size:18px;
    margin-bottom:25px;
}

.cta-box a{
    display:inline-block;
    background:#fff;
    color:#111;
    padding:14px 35px;
    border-radius:10px;
    font-weight:600;
}

/* SECTION TITLES */

.cancer-services .section-title,
.cancer-types .section-title,
.cancer-causes .section-title{
    margin-bottom:40px;
}

/* RESPONSIVE */

@media(max-width:1200px){

.service-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:991px){

.cancer-hero-grid{
    grid-template-columns:1fr;
}

.types-grid{
    grid-template-columns:repeat(2,1fr);
}

.support-grid{
    grid-template-columns:1fr;
}

.cause-grid{
    grid-template-columns:1fr;
}

.cancer-content h1{
    font-size:42px;
}

.support-content h2{
    font-size:32px;
}

}

@media(max-width:768px){

.hero-buttons{
    flex-direction:column;
}

.service-grid{
    grid-template-columns:repeat(2,1fr);
}

.types-grid{
    grid-template-columns:1fr;
}

.cancer-content h1{
    font-size:34px;
}

.cancer-content p{
    font-size:15px;
}

.cta-box{
    padding:40px 25px;
}

.cta-box h2{
    font-size:30px;
}

.support-content,
.support-card{
    padding:25px;
}

}

@media(max-width:480px){

.service-grid{
    grid-template-columns:1fr;
}

.cause-icon{
    width:100px;
    height:100px;
}

.cause-icon i{
    font-size:40px;
}

}



/* =====================================
CONSULT DOCTOR PAGE
===================================== */

/* HERO */

.consult-hero{
    background:#faf8f5;
    padding:70px 0;
    border-bottom:1px solid #eee;
}

.consult-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

.consult-content h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:10px;
    color:#1f2937;
}

.consult-price{
    font-size:32px;
    font-weight:600;
    color:#ff6f61;
    margin-bottom:30px;
}

.consult-features{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    margin-bottom:30px;
}

.consult-features div{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    color:#555;
}

.consult-features i{
    color:#ff6f61;
    font-size:18px;
}

.consult-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:52px;
    padding:0 30px;
    border-radius:10px;
    background:#ff6f61;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.consult-btn:hover{
    transform:translateY(-2px);
}

.consult-image{
    text-align:center;
}

.consult-image img{
    max-width:100%;
    max-height:350px;
}

/* =====================================
STATS
===================================== */

.consult-stats{
    margin-top:10px;
    position:relative;
    z-index:2;
}

.stats-wrapper{
    max-width:850px;
    margin:auto;
    background:#fff;
    border-radius:20px;
    border:1px solid #ececec;
    box-shadow:0 15px 40px rgba(0,0,0,.05);

    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.stat-item{
    text-align:center;
    padding:35px 20px;
}

.stat-item:not(:last-child){
    border-right:1px solid #f1f1f1;
}

.stat-item h2{
    font-size:48px;
    color:#ff6f61;
    margin-bottom:8px;
}

.stat-item p{
    color:#444;
    font-weight:500;
}

/* =====================================
SPECIALITIES
===================================== */

.specialities-section{
    padding:80px 0;
}

.speciality-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.speciality-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:25px 15px;
    text-align:center;
    transition:.3s;
}

.speciality-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.speciality-card i{
    font-size:36px;
    color:#ff6f61;
    margin-bottom:15px;
}

.speciality-card h4{
    font-size:14px;
    line-height:1.5;
}

/* =====================================
TESTIMONIAL
===================================== */

.consult-review{
    padding:30px 0 80px;
}

.review-box{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.review-box h2{
    font-size:42px;
    margin-bottom:30px;
}

.review-box p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:25px;
}

.review-box h4{
    font-size:18px;
    color:#111;
}

/* =====================================
BENEFITS
===================================== */

.consult-benefits{
    padding:80px 0;
    background:#fafafa;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.benefit-card{
    text-align:center;
    padding:30px;
}

.benefit-card i{
    font-size:60px;
    color:#2ec4c7;
    margin-bottom:20px;
}

.benefit-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#1f2937;
}

.benefit-card p{
    color:#666;
    line-height:1.8;
}

/* =====================================
CTA
===================================== */

.consult-cta{
    padding:90px 0;
}

.cta-panel{
    background:
    linear-gradient(
    135deg,
    #ff6f61,
    #ff886f
    );

    border-radius:24px;
    padding:70px;

    text-align:center;

    color:#fff;
}

.cta-panel h2{
    font-size:48px;
    margin-bottom:15px;
}

.cta-panel p{
    font-size:18px;
    margin-bottom:30px;
    opacity:.95;
}

.cta-panel a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:54px;
    padding:0 35px;

    background:#fff;
    color:#ff6f61;

    border-radius:10px;

    font-weight:600;
}

/* =====================================
RESPONSIVE
===================================== */

@media(max-width:1200px){

.speciality-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:991px){

.consult-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.consult-features{
    justify-content:center;
}

.benefits-grid{
    grid-template-columns:repeat(2,1fr);
}

.speciality-grid{
    grid-template-columns:repeat(2,1fr);
}

.consult-content h1{
    font-size:42px;
}

}

@media(max-width:768px){

.consult-hero{
    padding:50px 0;
}

.consult-content h1{
    font-size:34px;
}

.consult-price{
    font-size:24px;
}

.consult-features{
    flex-direction:column;
    align-items:center;
    gap:12px;
}

.stats-wrapper{
    grid-template-columns:1fr;
}

.stat-item{
    border-bottom:1px solid #f3f3f3;
}

.stat-item:not(:last-child){
    border-right:none;
}

.speciality-grid{
    grid-template-columns:1fr 1fr;
}

.benefits-grid{
    grid-template-columns:1fr;
}

.review-box h2{
    font-size:30px;
}

.cta-panel{
    padding:40px 25px;
}

.cta-panel h2{
    font-size:32px;
}

}

@media(max-width:480px){

.speciality-grid{
    grid-template-columns:1fr;
}

.consult-content h1{
    font-size:28px;
}

.consult-btn{
    width:100%;
}

}

/* =====================================
CARE PLAN STRIP
===================================== */

.careplan-strip{
    background:#f6f1eb;
    border-bottom:1px solid #ececec;
}

.careplan-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    min-height:74px;
}

.careplan-left img{
    height:55px;
    display:block;
}

.careplan-content{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.careplan-content p{
    color:#444;
    font-size:14px;
    margin:0;
}

.careplan-content a{
    background:#8f4b46;
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:5px 12px;
    border-radius:4px;
}

.careplan-content span{
    color:#c25b4e;
    font-weight:600;
    font-size:13px;
}

/* MOBILE */

@media(max-width:768px){

.careplan-wrap{
    flex-direction:column;
    gap:8px;
    padding:12px 0;
    text-align:center;
}

.careplan-left img{
    height:45px;
}

.careplan-content{
    justify-content:center;
}

.careplan-content p{
    font-size:13px;
}

}

/* =====================================
CARE PLAN PAGE
===================================== */

/* HERO */

.careplan-hero{
    background:#f7f0e6;
    padding:70px 0;
}

.careplan-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.plan-badge{
    display:inline-block;
    background:#8f4b46;
    color:#fff;
    padding:8px 18px;
    border-radius:6px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.careplan-content h1{
    font-size:54px;
    line-height:1.15;
    margin-bottom:20px;
}

.careplan-content p{
    font-size:18px;
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.plan-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:54px;
    padding:0 34px;
    border-radius:10px;
    background:#ff6f61;
    color:#fff;
    font-weight:600;
}

.plan-price{
    margin-top:18px;
    font-weight:500;
    color:#333;
}

.careplan-image img{
    width:100%;
    border-radius:20px;
    display:block;
}

/* BENEFITS */

.plan-benefits{
    padding:80px 0;
    border-top:1px solid #ececec;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.benefit-item{
    display:flex;
    gap:20px;
}

.benefit-icon{
    width:60px;
    height:60px;
    flex-shrink:0;
    border-radius:50%;
    background:#faf4f2;
    display:flex;
    align-items:center;
    justify-content:center;
}

.benefit-icon i{
    color:#ff6f61;
    font-size:22px;
}

.benefit-item h4{
    margin-bottom:10px;
}

.benefit-item p{
    color:#666;
    line-height:1.8;
}

/* ADDITIONAL */

.additional-benefits{
    padding:80px 0;
    border-top:1px solid #ececec;
}

.additional-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.additional-card{
    text-align:center;
    padding:40px 30px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    transition:.3s;
}

.additional-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.additional-card .benefit-icon{
    margin:0 auto 20px;
}

.additional-card h4{
    margin-bottom:15px;
}

.additional-card p{
    color:#666;
    line-height:1.8;
}

/* MOBILE */

@media(max-width:991px){

.careplan-hero-grid{
    grid-template-columns:1fr;
}

.benefits-grid{
    grid-template-columns:1fr 1fr;
}

.additional-grid{
    grid-template-columns:1fr;
}

.careplan-content h1{
    font-size:42px;
}

}

@media(max-width:768px){

.benefits-grid{
    grid-template-columns:1fr;
}

.careplan-content h1{
    font-size:32px;
}

.careplan-content p{
    font-size:15px;
}

.plan-btn{
    width:100%;
}

}

.contact-page-hero{
    background:
    linear-gradient(
    135deg,
    #f8fafc,
    #ffffff
    );

    padding:90px 0;
    text-align:center;
}

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#fff4f2;
    color:#ff6f61;
    font-size:13px;
    font-weight:600;
}

.contact-page-hero h1{
    font-size:56px;
    margin:20px 0;
}

.contact-page-hero p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.contact-quick-links{
    margin-top:20px;
}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.quick-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.quick-card i{
    font-size:32px;
    color:#ff6f61;
    margin-bottom:15px;
}

.contact-main{
    padding:80px 0;
}

.contact-layout{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:50px;
}

.contact-details{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.contact-details h2{
    margin-bottom:15px;
}

.contact-details p{
    color:#666;
}

.info-box{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.info-box i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff4f2;
    color:#ff6f61;
    display:flex;
    align-items:center;
    justify-content:center;
}

.business-hours{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid #eee;
}

.contact-form-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.contact-form-card h3{
    margin-bottom:25px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea{
    width:100%;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:14px;
}

.contact-form-card textarea{
    margin-bottom:20px;
}

.contact-form-card button{
    width:100%;
    height:54px;
    border:none;
    border-radius:10px;
    background:#ff6f61;
    color:#fff;
    font-weight:600;
}

.contact-features{
    padding-bottom:90px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.feature-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:30px;
    text-align:center;
}

.feature-card i{
    font-size:36px;
    color:#ff6f61;
    margin-bottom:15px;
}

@media(max-width:991px){

.contact-layout{
    grid-template-columns:1fr;
}

.quick-grid{
    grid-template-columns:repeat(2,1fr);
}

.feature-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.form-grid{
    grid-template-columns:1fr;
}

.quick-grid{
    grid-template-columns:1fr;
}

.contact-page-hero h1{
    font-size:36px;
}

}


/* =====================================
OFFERS PAGE
===================================== */

.offers-section{
    padding:40px 0 80px;
}

.offers-layout{
    display:grid;
    grid-template-columns:240px 1fr;
    gap:30px;
    align-items:start;
}

/* SIDEBAR */

.offers-sidebar{
    position:sticky;
    top:120px;
}

.offers-sidebar ul{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:12px;
    overflow:hidden;
}

.offers-sidebar li{
    padding:18px 20px;
    cursor:pointer;
    font-size:15px;
    font-weight:500;
    border-bottom:1px solid #f1f1f1;
}

.offers-sidebar li:last-child{
    border-bottom:none;
}

.offers-sidebar li.active{
    color:#ff6f61;
    font-weight:600;
}

/* CONTENT */

.offer-heading{
    font-size:28px;
    margin-bottom:20px;
    color:#111827;
}

.mt-40{
    margin-top:40px;
}

.offer-card{
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:16px;
    padding:18px;
    margin-bottom:14px;

    display:flex;
    gap:22px;
    align-items:flex-start;

    transition:.3s;
}

.offer-card:hover{
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.offer-image{
    width:100px;
    flex-shrink:0;
}

.offer-image img{
    width:100%;
    border-radius:10px;
    display:block;
}

.offer-details{
    flex:1;
}

.offer-badge{
    width:12px;
    height:3px;
    background:#ffbe76;
    display:block;
    margin-bottom:12px;
}

.offer-tag{
    display:inline-block;
    background:#fff1db;
    color:#9b6b29;
    padding:5px 10px;
    border-radius:4px;
    font-size:12px;
    margin-bottom:10px;
}

.offer-details h3{
    font-size:20px;
    line-height:1.5;
    color:#111827;
    margin-bottom:10px;
    font-weight:600;
}

.offer-details p{
    color:#666;
    font-size:14px;
    margin-bottom:14px;
}

.offer-details a{
    color:#ff6f61;
    font-size:14px;
    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:991px){

.offers-layout{
    grid-template-columns:1fr;
}

.offers-sidebar{
    position:static;
}

.offers-sidebar ul{
    display:flex;
}

.offers-sidebar li{
    flex:1;
    text-align:center;
}

}

@media(max-width:768px){

.offer-card{
    flex-direction:column;
}

.offer-image{
    width:80px;
}

.offer-heading{
    font-size:22px;
}

.offer-details h3{
    font-size:16px;
}

}

/* =====================================
REGISTER PAGE
===================================== */

.register-page{
    padding:80px 0;
    background:
    linear-gradient(
        135deg,
        #fafafa,
        #ffffff
    );
}

.register-wrapper{
    display:grid;
    grid-template-columns:1fr 500px;
    gap:60px;
    align-items:center;
}

/* LEFT */

.register-info{
    padding-right:40px;
}

.register-tag{
    display:inline-block;
    background:#fff4f2;
    color:#ff6f61;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.register-info h1{
    font-size:52px;
    line-height:1.15;
    margin-bottom:20px;
    color:#111827;
}

.register-info p{
    color:#666;
    line-height:1.9;
    font-size:17px;
    margin-bottom:30px;
}

.register-benefits{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.register-benefits li{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:16px;
    color:#444;
}

.register-benefits i{
    color:#16a34a;
}

.register-stat{
    margin-top:40px;
    padding:25px;
    border-radius:18px;
    background:#fff;
    border:1px solid #ececec;
    max-width:300px;
}

.register-stat h3{
    font-size:34px;
    color:#ff6f61;
    margin-bottom:5px;
}

/* FORM */

.register-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    border:1px solid #ececec;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.register-card h2{
    margin-bottom:30px;
    font-size:30px;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:500;
}

.form-group input{
    width:100%;
    height:52px;
    border:1px solid #e4e4e4;
    border-radius:10px;
    padding:0 15px;
    font-size:14px;
}

.form-group input:focus{
    outline:none;
    border-color:#ff6f61;
}

.register-btn{
    width:100%;
    height:54px;
    border:none;
    border-radius:10px;
    background:#ff6f61;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    margin-top:10px;
}

.login-link{
    margin-top:20px;
    text-align:center;
    color:#666;
}

.login-link a{
    color:#ff6f61;
    font-weight:600;
}

/* MOBILE */

@media(max-width:991px){

.register-wrapper{
    grid-template-columns:1fr;
}

.register-info{
    text-align:center;
    padding-right:0;
}

.register-stat{
    margin:30px auto 0;
}

.register-benefits{
    align-items:center;
}

}

@media(max-width:768px){

.register-page{
    padding:50px 0;
}

.register-info h1{
    font-size:34px;
}

.register-card{
    padding:25px;
}

} 





/* ==========================
CART ICON
========================== */

.cart-icon-wrap{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.cart-icon-wrap i{
    font-size:20px;
}

/* PREMIUM BADGE */

.cart-count{

    position:absolute;

    top:-10px;
    right:-12px;

    min-width:22px;
    height:22px;

    padding:0 6px;

    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        #ff6f61,
        #ff8f7d
    );

    color:#fff;

    font-size:11px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    border:2px solid #fff;

    box-shadow:
    0 4px 10px rgba(255,111,97,.35);

    transform:scale(0);

    transition:.25s ease;
}

.cart-count.show{
    transform:scale(1);
}

/* CART BOUNCE */

.cart-bounce{
    animation:cartBounce .45s ease;
}

@keyframes cartBounce{

0%{
    transform:scale(1);
}

40%{
    transform:scale(1.25);
}

100%{
    transform:scale(1);
}

}

.fly-item{

    position:fixed;

    width:18px;
    height:18px;

    border-radius:50%;

    background:#ff6f61;

    z-index:99999;

    pointer-events:none;

    transition:
    left .8s cubic-bezier(.2,.8,.2,1),
    top .8s cubic-bezier(.2,.8,.2,1),
    transform .8s cubic-bezier(.2,.8,.2,1),
    opacity .8s ease;

}

/* =====================================
POLICY PAGES
===================================== */

.policy-page{
    padding:70px 0;
}

.policy-header{
    text-align:center;
    margin-bottom:50px;
}

.policy-header h1{
    font-size:48px;
    margin-bottom:10px;
    color:#111827;
}

.policy-header p{
    color:#777;
}

.policy-content{
    max-width:12000px;
    margin:auto;
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.policy-content h2{
    font-size:22px;
    margin-bottom:15px;
    margin-top:25px;
    color:#111827;
}

.policy-content h2:first-child{
    margin-top:0;
}

.policy-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

.policy-content ul{
    padding-left:20px;
}

.policy-content li{
    margin-bottom:10px;
    line-height:1.8;
    color:#555;
}

@media(max-width:768px){

.policy-page{
    padding:30px 0;
}

.policy-header h1{
    font-size:32px;
}

.policy-content{
    padding:25px;
}

.policy-content h2{
    font-size:20px;
}

}

/* =====================================
LOGIN POPUP
===================================== */

.login-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    backdrop-filter:blur(4px);
    z-index:9998;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.login-overlay.active{
    opacity:1;
    visibility:visible;
}

.login-modal{

    position:fixed;

    top:50%;
    left:50%;

    width:1150px;
    max-width:95%;

    background:#fff;

    border-radius:20px;

    transform:
    translate(-50%,-50%)
    scale(.95);

    opacity:0;
    visibility:hidden;

    z-index:9999;

    display:grid;
    grid-template-columns:1fr 1fr;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:
    0 30px 80px rgba(0,0,0,.15);

}

.login-modal.active{

    opacity:1;
    visibility:visible;

    transform:
    translate(-50%,-50%)
    scale(1);
}

.login-close{

    position:absolute;

    top:18px;
    right:18px;

    border:none;
    background:none;

    font-size:24px;

    cursor:pointer;

    z-index:10;
}

/* LEFT */

.login-left{

    padding:50px;

    border-right:1px solid #eee;

    text-align:center;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fafafa;
}

.login-slide{
    display:none;
}

.login-slide.active{
    display:block;
}

.login-slide img{
    width:180px;
    margin:0 auto 25px;
    display:block;
}

.login-slide h3{
    font-size:38px;
    margin-bottom:15px;
}

.login-slide p{
    color:#666;
    line-height:1.8;
}

.login-dots{
    margin-top:25px;
}

.login-dots span{

    width:8px;
    height:8px;

    border-radius:50%;

    background:#ddd;

    display:inline-block;

    margin:0 4px;
}

.login-dots .active{

    background:#ff6f61;

    width:25px;

    border-radius:20px;
}

/* RIGHT */

.login-right{
    padding:55px;
}

.login-right h2{
    font-size:35px;
    margin-bottom:10px;
}

.login-subtitle{
    color:#666;
    margin-bottom:20px;
    line-height:1.5;
}

/* FORM */

.login-group{
    margin-bottom:12px;
}

.login-group label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:500;
}

.input-wrap{

    display:flex;
    align-items:center;

    height:50px;

    border:1px solid #e5e5e5;

    border-radius:12px;

    padding:0 16px;

    transition:.3s;
}

.input-wrap:focus-within{

    border-color:#ff6f61;

    box-shadow:
    0 0 0 4px rgba(255,111,97,.08);

}

.input-wrap i{
    color:#999;
    margin-right:10px;
}

.input-wrap input{

    width:100%;

    border:none;
    outline:none;

    background:none;
}

/* EXTRA */

.login-extra{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin:15px 0;
}

.login-extra a{
    color:#ff6f61;
}

.login-submit{

    width:100%;

    height:46px;

    border:none;

    border-radius:12px;

    background:
    linear-gradient(
        135deg,
        #ff6f61,
        #ff8b76
    );

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;
}

.signup-text{
    text-align:center;
    margin-top:18px;
}

.signup-text a{
    color:#ff6f61;
    font-weight:600;
}

.login-policy{
    text-align:center;
    margin-top:15px;
    font-size:13px;
    color:#777;
}

.login-trust{

    text-align:center;

    margin-top:12px;

    color:#16a34a;

    font-size:13px;
}

/* MOBILE */

@media(max-width:768px){

.login-modal{
    grid-template-columns:1fr;
}

.login-left{
    display:none;
}

.login-right{
    padding:18px;
}

.login-right h2{
    font-size:30px;
}

.login-extra{
    flex-direction:column;
    gap:8px;
    align-items:flex-start;
}

}

.login-error{

    background:#fff3f3;

    color:#dc2626;

    border:1px solid #fecaca;

    padding:12px 15px;

    border-radius:10px;

    margin:15px 0 20px;

    font-size:14px;
}

.login-success{

    background:#ecfdf5;

    color:#15803d;

    border:1px solid #bbf7d0;

    padding:12px 15px;

    border-radius:10px;

    margin:15px 0 20px;

    font-size:14px;
}