
body {
    font-family: 'Hind Siliguri', sans-serif;
    background: #f4f7f6;
    color: #222;
    overflow-x: hidden;
}

.home-container {
    max-width: 1320px;
}

/* Category Menu */
.category-menu-box {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,.07);
    height: 405px;
}

.category-menu-title {
    background: linear-gradient(135deg,#0d6efd,#0aa2ff);
    color: #fff;
    padding: 14px 16px;
    font-weight: 800;
}

.category-menu-list {
    max-height: 350px;
    overflow-y: auto;
}

.cat-row {
    position: relative;
    border-bottom: 1px solid #f1f1f1;
}

.cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: .25s;
}

.cat-link:hover {
    background: #f0f7ff;
    color: #0d6efd;
    padding-left: 20px;
}

.sub-cat-box {
    position: fixed;
    width: 260px;
    background: #fff;
    border-radius: 0 14px 14px 0;
    box-shadow: 10px 10px 30px rgba(0,0,0,.15);
    display: none;
    z-index: 99999;
    overflow: hidden;
    border: 1px solid #eee;
}

.sub-cat-title {
    padding: 10px 15px;
    background: #f8f9fa;
    font-weight: 800;
    color: #0d6efd;
    border-bottom: 1px solid #eee;
}

.sub-cat-link {
    display: block;
    padding: 11px 16px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #f7f7f7;
    transition: .2s;
}

.sub-cat-link:hover {
    color: #0d6efd;
    background: #f3f8ff;
    padding-left: 22px;
}

/* Hero */
.hero-slider {
    height: 405px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.hero-slider img {
    width: 100%;
    height: 405px;
    object-fit: cover;
}

.side-banner-wrap {
    height: 405px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-banner {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.07);
    background: #fff;
}

.side-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
}

.side-banner img:hover {
    transform: scale(1.04);
}

.notice-bar {
    background: #1f252b;
    border-radius: 12px;
    color: #fff;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

/* Section */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.section-title {
    font-weight: 800;
    font-size: 20px;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52px;
    height: 3px;
    background: #0d6efd;
    border-radius: 20px;
}

/* Scroll Common */
.category-scroll,
.product-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Category Scroll */
.category-scroll {
    gap: 16px;
    padding: 5px 2px 18px;
    scrollbar-width: thin;
}

.category-scroll::-webkit-scrollbar {
    height: 5px;
}

.category-scroll::-webkit-scrollbar-thumb {
    background: #0d6efd;
    border-radius: 20px;
}

.category-card {
    flex: 0 0 auto;
    width: 145px;
    height: 120px;
    background: #fff;
    border-radius: 18px;
    text-align: center;
    padding: 16px 10px;
    box-shadow: 0 7px 18px rgba(0,0,0,.07);
    border: 1px solid #eef0f3;
    transition: .25s;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #0d6efd;
}

.category-card img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 8px;
}

.category-card h6 {
    font-size: 13px;
    font-weight: 800;
    color: #222;
    margin: 0;
}

/* Product Scroll */
.product-scroll {
    gap: 18px;
    padding: 5px 2px 22px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.product-scroll::-webkit-scrollbar {
    display: none;
}

.product-item {
    flex: 0 0 calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
    scroll-snap-align: start;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eef0f3;
    box-shadow: 0 7px 18px rgba(0,0,0,.06);
    transition: .25s;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

.product-img-box {
    height: 170px;
    background: #f8fafc;
    padding: 12px;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wishlist-btn {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    z-index: 4;
}

.tag-badge {
    position: absolute;
    top: 10px;
    left: 0;
    border-radius: 0 50px 50px 0;
    font-size: 10px;
    padding: 4px 9px;
    z-index: 4;
}

.price-text {
    color: #0d6efd;
    font-weight: 800;
}

/* Promo / Trust */
.promo-banner img {
    border-radius: 20px;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.trust-box {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 7px 18px rgba(0,0,0,.06);
}

.trust-item img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 8px;
}

/* Tablet / Desktop */
@media(min-width: 768px) {
    .product-item {
        flex: 0 0 215px;
        max-width: 215px;
    }
}

/* Mobile */
@media(max-width: 991px) {
    .hero-slider {
        height: auto;
    }

    .hero-slider img {
        height: auto;
        min-height: 170px;
    }

    .side-banner-wrap {
        height: auto;
        flex-direction: row;
    }

    .side-banner {
        height: 120px;
    }

    .category-card {
        width: 125px;
    }

    .product-img-box {
        height: 140px;
    }
}

.wishlist-btn-top{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.product-card{
    position: relative;
}

/*Header*/


    body {
        padding-bottom: 0;
    }

    .site-header {
        background: #fff;
        border-bottom: 1px solid #e9ecef;
        z-index: 9999;
        position: relative;
    }

    .header-logo img {
        max-height: 46px;
        width: auto;
    }

    .desktop-search {
        border: 2px solid #0d6efd;
        border-radius: 999px;
        overflow: hidden;
        background: #fff;
    }

    .desktop-search input {
        border: 0;
        box-shadow: none !important;
        height: 42px;
        padding-left: 18px;
        font-size: 14px;
    }

    .desktop-search button {
        border-radius: 0;
        padding: 0 22px;
    }

    .support-box {
        line-height: 1.1;
    }

    .header-icon-btn {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border: 1px solid #e5e7eb;
        color: #111;
        text-decoration: none;
        position: relative;
    }

    .desktop-nav .nav-link {
        color: #333 !important;
        font-size: 15px;
        font-weight: 600;
        padding: 9px 15px !important;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: .25s;
    }

    .desktop-nav .nav-link:hover,
    .desktop-nav .nav-link.active-page {
        background: #0d6efd;
        color: #fff !important;
        transform: translateY(-1px);
    }

    #search_result {
        background: #fff;
        z-index: 10000;
        border-radius: 12px;
        overflow: hidden;
        top: 48px;
    }

    .mobile-search-box {
        height: 38px;
        border: 1px solid #d8dee4;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        align-items: center;
        background: #fff;
    }

    .mobile-search-box input {
        width: 85%;
        height: 100%;
        border: none;
        outline: none;
        padding-left: 12px;
        font-size: 13px;
    }

    .mobile-search-box button {
        width: 15%;
        height: 100%;
        border: none;
        background: #fff;
        color: #555;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        display: none;
        justify-content: space-around;
        padding: 8px 0 7px;
        box-shadow: 0 -3px 14px rgba(0,0,0,0.10);
        z-index: 9999;
        border-top: 1px solid #eee;
    }

    .mobile-bottom-nav a {
        flex: 1;
        text-align: center;
        color: #666;
        text-decoration: none;
        font-size: 11px;
        position: relative;
    }

    .mobile-bottom-nav a i {
        display: block;
        font-size: 21px;
        margin-bottom: 2px;
    }

    .mobile-bottom-nav a.active-m {
        color: #0d6efd !important;
        font-weight: 700;
    }

    @media (max-width: 768px) {
        body {
            padding-bottom: 72px;
        }

        .site-header {
            position: sticky;
            top: 0;
            box-shadow: 0 2px 12px rgba(0,0,0,.08);
        }

        .header-logo img {
            max-height: 34px;
        }

        .mobile-bottom-nav {
            display: flex;
        }
    }

    /*Footer */

    
    .tsr-footer {
        background: linear-gradient(135deg, #111827, #1f2937);
        color: #d1d5db;
        padding-top: 55px;
        margin-top: 60px;
    }

    .footer-main {
        padding-bottom: 35px;
    }

    .footer-brand img {
        max-height: 65px;
        margin-bottom: 18px;
        background: #fff;
        padding: 6px 10px;
        border-radius: 12px;
    }

    .footer-brand p {
        font-size: 14px;
        line-height: 1.8;
        color: #cbd5e1;
        max-width: 360px;
        margin-bottom: 18px;
    }

    .footer-title {
        color: #fff;
        font-weight: 800;
        margin-bottom: 18px;
        position: relative;
        display: inline-block;
        padding-bottom: 8px;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 38px;
        height: 3px;
        background: #0d6efd;
        border-radius: 20px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 14px;
        transition: .25s;
    }

    .footer-links a:hover {
        color: #fff;
        padding-left: 6px;
    }

    .footer-social {
        display: flex;
        gap: 12px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: .25s;
    }

    .footer-social a:hover {
        background: #0d6efd;
        transform: translateY(-3px);
    }

    .footer-contact p {
        display: flex;
        gap: 10px;
        margin-bottom: 12px;
        color: #cbd5e1;
        font-size: 14px;
        line-height: 1.5;
    }

    .footer-contact i {
        color: #0d6efd;
        font-size: 18px;
        min-width: 22px;
    }

    .footer-support-box {
        margin-top: 18px;
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 16px;
        padding: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .footer-support-box i {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #0d6efd;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .footer-support-box strong {
        display: block;
        color: #fff;
        font-size: 14px;
    }

    .footer-support-box small {
        display: block;
        color: #cbd5e1;
        font-size: 12px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,.12);
        padding: 18px 0;
        text-align: center;
    }

    .footer-bottom p {
        margin: 0;
        font-size: 13px;
        color: #cbd5e1;
    }

    .footer-bottom span {
        color: #0d6efd;
        font-weight: 800;
    }

    .whatsapp-float {
        position: fixed;
        right: 20px;
        bottom: 25px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #25d366;
        color: #fff;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 8px 22px rgba(0,0,0,.25);
        z-index: 99999;
        transition: .25s;
    }

    .whatsapp-float:hover {
        background: #128c7e;
        color: #fff;
        transform: translateY(-4px);
    }

    @media(max-width: 768px) {
        .tsr-footer {
            padding-top: 40px;
            margin-top: 45px;
            padding-bottom: 70px;
        }

       .footer-brand {
    text-align: center;
}

.footer-contact {
    text-align: left;
}

        .footer-brand p {
            margin-left: auto;
            margin-right: auto;
        }

        .footer-social {
            justify-content: center;
        }

       .footer-contact p {
       justify-content: flex-start;
       text-align: left;
       }

        .footer-title {
            margin-top: 10px;
        }

        .whatsapp-float {
            bottom: 82px;
            right: 16px;
            width: 50px;
            height: 50px;
            font-size: 26px;
        }
    }

    /*Customer Profile*/
            body{
            background:#f0f2f5;
            font-family:'Hind Siliguri',sans-serif;
        }

        .profile-sidebar{
            border-radius:18px;
            border:none;
            box-shadow:0 8px 22px rgba(0,0,0,.07);
            background:#fff;
            overflow:hidden;
        }

        .nav-link-custom{
            padding:13px 16px;
            color:#444;
            text-decoration:none;
            display:flex;
            align-items:center;
            transition:.25s;
            border-bottom:1px solid #f1f1f1;
            cursor:pointer;
            font-weight:700;
            border-radius:10px;
            margin-bottom:6px;
        }

        .nav-link-custom:hover,
        .nav-link-custom.active{
            background:#0d6efd;
            color:#fff!important;
        }

        .nav-link-custom.text-danger:hover{
            background:#dc3545;
            color:#fff!important;
        }

        .status-badge{
            padding:6px 12px;
            border-radius:50px;
            font-size:11px;
            font-weight:900;
            text-transform:uppercase;
            display:inline-block;
        }

        .stat-box{
            background:#fff;
            border-radius:16px;
            padding:20px;
            text-align:center;
            border-bottom:4px solid #0d6efd;
            box-shadow:0 8px 22px rgba(0,0,0,.06);
            height:100%;
        }

        .content-card{
            background:#fff;
            border-radius:18px;
            border:none;
            box-shadow:0 8px 22px rgba(0,0,0,.07);
            padding:22px;
        }

        .product-img-sm{
            width:52px;
            height:52px;
            object-fit:contain;
            background:#f9f9f9;
            border-radius:10px;
        }

        .claim-img{
            width:55px;
            height:55px;
            object-fit:cover;
            border-radius:12px;
            border:1px solid #e5e7eb;
            background:#f8fafc;
        }

        .desktop-table thead th{
            background:#e9f2ff;
            font-size:13px;
            font-weight:900;
            white-space:nowrap;
            padding:14px;
        }

        .desktop-table tbody td{
            padding:14px;
            vertical-align:middle;
            font-size:13px;
        }

        .mobile-list{
            display:none;
        }

        .mobile-card{
            background:#fff;
            border:1px solid #eef0f3;
            border-radius:16px;
            padding:15px;
            margin-bottom:12px;
            box-shadow:0 5px 16px rgba(0,0,0,.05);
        }

        .modal-content{
            border:0;
            border-radius:22px;
            overflow:hidden;
        }

        .modal-header{
            background:#f8fafc;
        }

        @media(max-width:991px){
            .container{
                max-width:100%;
            }

            .desktop-table{
                display:none;
            }

            .mobile-list{
                display:block;
            }

            .profile-sidebar{
                margin-bottom:20px;
            }
        }

        @media(max-width:576px){
            .content-card{
                padding:15px;
            }

            .stat-box{
                padding:15px;
            }
        }
    
        /*Contuct*/

         
        body { font-family: 'Hind Siliguri', sans-serif; background-color: #f8f9fa; }
        .contact-info-card { 
            border: 1px solid #ddd !important; 
            border-radius: 15px; 
            background: #fff; 
            transition: 0.3s; 
            box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
        }
        .contact-info-card:hover { 
            transform: translateY(-5px); 
            box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
            border-color: #0d6efd !important;
        }
        .icon-box { 
            width: 55px; height: 55px; 
            background: #0d6efd; color: #fff; 
            border-radius: 50%; display: flex; 
            align-items: center; justify-content: center; 
            font-size: 26px; margin-bottom: 15px; 
        }
        .form-control, .form-select { border-radius: 10px; padding: 12px; border: 1px solid #eee; }
        .form-control:focus { box-shadow: none; border-color: #0d6efd; }
        .btn-submit { border-radius: 10px; padding: 14px 30px; font-weight: 600; transition: 0.3s; }
        .map-container { border-radius: 15px; overflow: hidden; border: 1px solid #ddd; }
    
        /*Chekout Page */

         body{font-family:'Hind Siliguri',sans-serif;background:#f4f7f6;color:#111827;}
        .checkout-wrap{padding:35px 0;}
        .checkout-card{background:#fff;border-radius:22px;border:1px solid #eef0f3;box-shadow:0 12px 32px rgba(0,0,0,.07);}
        .section-title{font-weight:900;color:#0d6efd;margin-bottom:18px;}
        .form-control,.form-select{border-radius:13px;padding:13px 15px;border:1px solid #dbe2ea;box-shadow:none!important;}
        .form-control:focus,.form-select:focus{border-color:#0d6efd;}
        .product-img{width:78px;height:78px;object-fit:cover;border-radius:15px;border:1px solid #e5e7eb;background:#fff;}
        .qty-btn{width:34px;height:34px;border:0;background:#eef6ff;color:#0d6efd;font-weight:900;}
        .qty-input{width:38px;border:0;text-align:center;font-weight:900;background:transparent;}
        .summary-box{background:#f8fafc;border:1px solid #e5e7eb;border-radius:18px;padding:18px;}
        .pay-option{border:2px solid #e5e7eb;border-radius:16px;padding:14px;cursor:pointer;background:#fff;transition:.2s;}
        .pay-option.active{border-color:#0d6efd;background:#eef6ff;}
        .pay-option.disabled{opacity:.55;cursor:not-allowed;background:#f8f9fa;}
        .confirm-btn{background:linear-gradient(135deg,#0d6efd,#0aa2ff);border:none;border-radius:16px;padding:15px;font-weight:900;color:#fff;box-shadow:0 10px 24px rgba(13,110,253,.25);}
        .confirm-btn:hover{color:#fff;transform:translateY(-2px);}
        .trust-box{background:#eff6ff;border-left:5px solid #0d6efd;border-radius:14px;padding:14px;}
        .sticky-summary{position:sticky;top:90px;}
        .variant-badge{display:inline-flex;align-items:center;gap:6px;background:#f8fafc;border:1px solid #e5e7eb;border-radius:999px;padding:5px 10px;font-size:12px;font-weight:800;color:#475569;margin-top:4px;}
        @media(max-width:991px){.checkout-wrap{padding:20px 0}.sticky-summary{position:static}}

        .field-error{
    color:#dc3545;
    font-size:13px;
    font-weight:700;
    margin-top:6px;
}
.input-error{
    border-color:#dc3545!important;
}
    /*Catagory Page*/

  body { font-family: 'Hind Siliguri', sans-serif; background-color: #f8f9fa; }
        .product-card { border: none; border-radius: 12px; transition: 0.3s; overflow: hidden; }
        .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .product-img-box { height: 180px; overflow: hidden; background: #fff; display: flex; align-items: center; justify-content: center; }
        .product-img-box img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 10px; }
        .breadcrumb-item a { color: #0d6efd; text-decoration: none; }
    
        /*Cart */ 

         
        body { font-family: 'Hind Siliguri', sans-serif; background-color: #f8f9fa; }
        .cart-card { border: none; border-radius: 15px; background: #fff; }
        .product-img { width: 60px; height: 60px; object-fit: contain; border-radius: 8px; background: #f9f9f9; }
        .table thead { background: #f1f1f1; }
        @media (max-width: 768px) { .product-img { width: 45px; height: 45px; } .table { font-size: 13px; } }
    
        /*Cart Chekout*/

          body{
            font-family:'Hind Siliguri',sans-serif;
            background:#f4f7f6;
            color:#111827;
            overflow-x:hidden;
        }

        .checkout-wrap{
            padding:35px 0;
        }

        .checkout-card{
            background:#fff;
            border-radius:22px;
            border:1px solid #eef0f3;
            box-shadow:0 12px 32px rgba(0,0,0,.07);
        }

        .section-title{
            font-weight:900;
            color:#0d6efd;
            margin-bottom:18px;
            font-size:22px;
        }

        .form-control,
        .form-select{
            border-radius:13px;
            padding:13px 15px;
            border:1px solid #dbe2ea;
            box-shadow:none!important;
            min-height:48px;
        }

        .form-control:focus,
        .form-select:focus{
            border-color:#0d6efd;
        }

        textarea.form-control{
            min-height:110px;
        }

        .product-img{
            width:78px;
            height:78px;
            object-fit:cover;
            border-radius:15px;
            border:1px solid #e5e7eb;
            background:#fff;
            flex-shrink:0;
        }

        .cart-item-row{
            display:flex;
            align-items:center;
            gap:14px;
            border-bottom:1px solid #e5e7eb;
            padding:14px 0;
        }

        .cart-item-row:last-of-type{
            border-bottom:none;
        }

        .cart-product-name{
            font-weight:800;
            line-height:1.4;
            word-break:break-word;
        }

        .cart-price{
            font-weight:900;
            color:#0d6efd;
            white-space:nowrap;
        }

        .summary-box{
            background:#f8fafc;
            border:1px solid #e5e7eb;
            border-radius:18px;
            padding:18px;
        }

        .pay-option{
            border:2px solid #e5e7eb;
            border-radius:16px;
            padding:14px;
            cursor:pointer;
            background:#fff;
            transition:.2s;
        }

        .pay-option.active{
            border-color:#0d6efd;
            background:#eef6ff;
        }

        .pay-option.disabled{
            opacity:.55;
            cursor:not-allowed;
            background:#f8f9fa;
        }

        .confirm-btn{
            background:linear-gradient(135deg,#0d6efd,#0aa2ff);
            border:none;
            border-radius:16px;
            padding:15px;
            font-weight:900;
            color:#fff;
            box-shadow:0 10px 24px rgba(13,110,253,.25);
        }

        .confirm-btn:hover{
            color:#fff;
            transform:translateY(-2px);
        }

        .trust-box{
            background:#eff6ff;
            border-left:5px solid #0d6efd;
            border-radius:14px;
            padding:14px;
        }

        .sticky-summary{
            position:sticky;
            top:90px;
        }

        @media(max-width:991px){
            .checkout-wrap{
                padding:20px 0;
            }

            .sticky-summary{
                position:static;
            }

            .checkout-card{
                margin-bottom:16px;
            }
        }

        @media(max-width:576px){
            .checkout-wrap{
                padding:16px 0 22px;
            }

            .checkout-wrap .container{
                padding-left:12px;
                padding-right:12px;
            }

            .checkout-card{
                border-radius:18px;
                padding:16px!important;
                box-shadow:0 8px 22px rgba(0,0,0,.06);
            }

            .section-title{
                font-size:20px;
                margin-bottom:15px;
            }

            .form-control,
            .form-select{
                min-height:46px;
                padding:11px 13px;
                font-size:14px;
                border-radius:12px;
            }

            textarea.form-control{
                min-height:95px;
            }

            label.small{
                font-size:13px;
            }

            .trust-box{
                padding:12px;
                font-size:13px;
            }

            .pay-option{
                padding:13px;
                border-radius:14px;
            }

            .pay-option .d-flex{
                align-items:flex-start!important;
                gap:10px!important;
            }

            .pay-option .fs-3{
                font-size:24px!important;
            }

            .pay-option .badge{
                font-size:10px;
                margin-left:auto;
                white-space:nowrap;
            }

            .cart-item-row{
                gap:10px;
                align-items:flex-start;
                padding:12px 0;
            }

            .product-img{
                width:56px;
                height:56px;
                border-radius:12px;
            }

            .cart-product-name{
                font-size:14px;
            }

            .cart-price{
                font-size:13px;
                min-width:58px;
                text-align:right;
            }

            .cart-item-row small{
                font-size:12px;
            }

            .summary-line{
                font-size:14px;
            }

            .grand-total{
                font-size:18px!important;
            }

            .confirm-btn{
                padding:14px;
                font-size:15px;
                border-radius:14px;
            }
        }
    /*All Product*/

        body {
            font-family: 'Hind Siliguri', sans-serif;
            background: #f4f7f6;
            color: #222;
        }

        .shop-container {
            max-width: 1380px;
        }

        .breadcrumb-section {
            background: #fff;
            border-bottom: 1px solid #eee;
            padding: 14px 0;
        }

        .page-title {
            font-weight: 800;
            font-size: 24px;
            margin: 0;
        }

        .filter-card {
            background: #fff;
            border-radius: 14px;
            border: 1px solid #e9ecef;
            box-shadow: 0 7px 18px rgba(0,0,0,.05);
            overflow: hidden;
            margin-bottom: 14px;
        }

        .filter-title {
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            padding: 14px 16px 10px;
            border-bottom: 1px solid #eee;
            margin: 0;
            position: relative;
        }

        .filter-title::after {
            content: '';
            position: absolute;
            left: 16px;
            bottom: -1px;
            width: 55px;
            height: 2px;
            background: #ff7a00;
        }

        .filter-body {
            padding: 14px 16px;
        }

        .filter-check {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            margin-bottom: 10px;
            cursor: pointer;
        }

        .filter-check input {
            width: 15px;
            height: 15px;
        }

        .toolbar {
            background: #fff;
            border-radius: 14px;
            border: 1px solid #e9ecef;
            box-shadow: 0 7px 18px rgba(0,0,0,.04);
            padding: 12px;
            margin-bottom: 16px;
        }

        .product-card {
            background: #fff;
            border-radius: 16px;
            border: 1px solid #e9ecef;
            overflow: hidden;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: .25s;
            box-shadow: 0 6px 16px rgba(0,0,0,.04);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 26px rgba(0,0,0,.10);
        }

        .product-img-box {
            height: 220px;
            background: #fff;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-img-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .badge-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 5;
            font-size: 10px;
            padding: 4px 10px;
            border-radius: 50px;
            font-weight: 800;
            text-transform: uppercase;
        }

        .wishlist-btn-top {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 6;
            width: 32px;
            height: 32px;
            border: none;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,.12);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-name {
            font-size: 15px;
            font-weight: 700;
            min-height: 38px;
        }

        .price {
            color: #ff6b00;
            font-size: 17px;
            font-weight: 800;
        }

        .cart-btn {
            border-color: #ff7a00;
            color: #ff7a00;
            font-weight: 700;
            border-radius: 8px;
        }

        .cart-btn:hover {
            background: #ff7a00;
            color: #fff;
        }

        .mobile-filter-btn {
            border: 1px solid #ff7a00;
            color: #ff7a00;
            background: #fff;
            font-weight: 700;
        }

        .offcanvas-filter {
            width: 290px !important;
            background: #f4f7f6;
        }

        @media(max-width: 768px) {
            .page-title {
                font-size: 18px;
            }

            .product-img-box {
                height: 150px;
                padding: 10px;
            }

            .product-name {
                font-size: 13px;
                min-height: 34px;
            }

            .price {
                font-size: 15px;
            }

            .shop-container {
                padding-left: 10px;
                padding-right: 10px;
            }

            .toolbar {
                position: sticky;
                top: 58px;
                z-index: 20;
            }
        }
   /*Landing Page*/

    
:root{
    --primary:#ff4d00;
    --primary2:#ff8a00;
    --green:#138a36;
    --black:#111827;
    --muted:#64748b;
    --bg:#fff7f3;
    --card:#ffffff;
    --border:#ffe1cc;
    --danger:#dc2626;
    --success:#16a34a;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    margin:0;
    padding:0;
    font-family:'Hind Siliguri', Arial, sans-serif;
    background:var(--bg);
    color:var(--black);
    overflow-x:hidden;
}

img{max-width:100%;height:auto}
a{text-decoration:none}

.landing-wrapper{
    width:100%;
    overflow:hidden;
}

.lp-container{
    max-width:1120px;
    margin:0 auto;
    padding:0 15px;
}

/* HERO */
.hero-section{
    background:linear-gradient(135deg,#eef7ff,#fff7ed);
    padding:45px 0 35px;
}

.hero-grid{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-grid > div{
    max-width:560px;
    width:100%;
}

.logo-box{margin-bottom:18px}

.logo-box img{
    max-height:68px;
    object-fit:contain;
}

.offer-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:linear-gradient(135deg,var(--primary),var(--primary2));
    color:#fff;
    padding:9px 18px;
    border-radius:999px;
    font-size:16px;
    font-weight:900;
    box-shadow:0 8px 20px rgba(255,77,0,.25);
    margin-bottom:18px;
}

.hero-title{
    font-size:42px;
    line-height:1.22;
    font-weight:900;
    margin-bottom:16px;
}

.hero-title .green-text{color:var(--green)}
.hero-title .black-text{color:var(--black)}

.hero-subtitle{
    font-size:18px;
    color:#475569;
    line-height:1.8;
    margin-bottom:18px;
}

/* PRICE */
.price-box{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin:18px 0 24px;
}

.sale-price{
    font-size:36px;
    font-weight:900;
    color:var(--danger);
}

.regular-price{
    font-size:22px;
    color:#64748b;
    text-decoration:line-through;
    font-weight:700;
}

.save-badge{
    background:#ecfdf5;
    color:#15803d;
    border:1px solid #bbf7d0;
    padding:6px 12px;
    border-radius:999px;
    font-weight:800;
    font-size:13px;
}

/* BUTTON */
.order-scroll-btn,
.pulse-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border:none;
    background:linear-gradient(90deg,var(--primary),var(--primary2));
    color:#fff!important;
    padding:15px 34px;
    border-radius:999px;
    font-size:19px;
    font-weight:900;
    box-shadow:0 12px 28px rgba(255,77,0,.35);
    animation:lpPulse 2s infinite;
    cursor:pointer;
}

.order-scroll-btn:hover,
.pulse-btn:hover{
    color:#fff!important;
    transform:translateY(-2px);
}

/* BANNER */
.banner-section{
    padding:20px 0 35px;
    background:#fff7f3;
}

.main-banner-after-subtitle{
    max-width:780px;
    margin:0 auto;
    background:#fff;
    padding:12px;
    border-radius:24px;
    box-shadow:0 15px 38px rgba(15,23,42,.10);
}

.main-banner-after-subtitle img{
    border-radius:18px;
    width:100%;
}

/* TIMER */
.timer-wrapper{
    max-width:850px;
    margin:25px auto;
    background:#fff5f5;
    border:2px dashed var(--primary);
    border-radius:18px;
    padding:24px 15px;
    text-align:center;
}

.timer-title{
    font-size:24px;
    font-weight:900;
    color:#be123c;
    margin-bottom:12px;
}

.timer-row{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.timer-box{
    width:64px;
    min-height:68px;
    border-radius:12px;
    background:linear-gradient(135deg,var(--primary),var(--primary2));
    color:#fff;
    padding:8px 6px;
    font-weight:900;
}

.timer-number{
    display:block;
    font-size:22px;
    line-height:1.1;
}

.timer-label{font-size:12px}

/* CTA */
.order-cta-section{
    padding:28px 15px;
    text-align:center;
    background:#fff7f3;
}

.order-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    max-width:520px;
    width:100%;
    padding:18px 26px;
    border-radius:999px;
    background:linear-gradient(90deg,#ff4d00,#ff9a00);
    color:#fff!important;
    font-size:22px;
    font-weight:900;
    box-shadow:0 12px 28px rgba(255,77,0,.35);
    border:5px solid #ffd0b8;
    animation:lpPulse 2s infinite;
}

/* TRUST */
.trust-section{
    background:#fff;
    padding:35px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.trust-card{
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:22px;
    padding:24px 18px;
    text-align:center;
    box-shadow:0 10px 28px rgba(15,23,42,.06);
    min-height:170px;
}

.trust-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    margin:0 auto 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--primary2));
    color:#fff;
    font-size:27px;
}

.trust-card h6{
    font-size:17px;
    font-weight:900;
    margin-bottom:8px;
}

.trust-card p{
    margin:0;
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
}

/* FEATURES */
.feature-section{
    background:#fff7f3;
    padding:35px 0;
}

.headline-bar{
    background:linear-gradient(90deg,var(--primary),var(--primary2));
    color:#fff;
    padding:14px 12px;
    text-align:center;
    font-weight:900;
    font-size:24px;
    margin-bottom:20px;
}

.feature-list{
    list-style:none;
    margin:0;
    background:#fff;
    border-radius:18px;
    padding:22px;
    box-shadow:0 10px 25px rgba(15,23,42,.06);
}

.feature-list li{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin-bottom:15px;
    color:#4b5563;
    font-size:17px;
    line-height:1.65;
    font-weight:700;
}

.feature-list li:last-child{margin-bottom:0}

.feature-list i{
    color:var(--primary);
    font-size:20px;
    margin-top:3px;
}

.quality-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:20px;
}

.quality-item{
    background:#fff9f0;
    border:1px solid #ffebd0;
    border-radius:14px;
    padding:15px;
    text-align:center;
    font-weight:800;
    color:#374151;
}

.quality-item i{
    display:block;
    color:var(--primary2);
    font-size:22px;
    margin-bottom:8px;
}

/* REVIEW */
.review-section{
    background:#fff7ed;
    padding:50px 0;
}

.section-header{
    text-align:center;
    margin-bottom:28px;
}

.section-badge{
    display:inline-block;
    padding:7px 16px;
    border-radius:999px;
    border:1px solid var(--border);
    background:#fff;
    color:var(--primary);
    font-weight:900;
    margin-bottom:10px;
}

.section-title{
    font-size:32px;
    line-height:1.3;
    font-weight:900;
    margin-bottom:8px;
}

.section-subtitle{
    color:var(--muted);
    font-size:15px;
    margin:0;
}

.review-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:22px;
    height:100%;
    box-shadow:0 12px 30px rgba(15,23,42,.07);
}

.review-stars{
    color:#f59e0b;
    letter-spacing:2px;
    font-size:18px;
    font-weight:900;
    margin-bottom:12px;
}

.review-text{
    color:#475569;
    font-size:15px;
    line-height:1.8;
    min-height:70px;
}

.review-user{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:15px;
}

.review-avatar{
    width:44px;
    height:44px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--primary2));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
}

.review-user small{
    display:block;
    color:var(--muted);
    font-size:12px;
}

/* REVIEW SCREENSHOT */
.review-carousel-mobile{display:none}

.review-screenshot-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.review-screenshot-grid.desktop-grid{
    grid-template-columns:repeat(4,1fr);
}

.review-screenshot-grid.mobile-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.screenshot-card{
    background:#fff;
    border-radius:18px;
    padding:8px;
    box-shadow:0 10px 25px rgba(15,23,42,.08);
    border:1px solid #ffe1cc;
}

.screenshot-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:14px;
}

/* ORDER */
.order-section{
    background:#fff7f3;
    padding:45px 0;
}

.order-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:22px;
    align-items:start;
}

.checkout-card,
.order-summary-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 32px rgba(15,23,42,.08);
}

.card-heading{
    background:#111827;
    color:#fff;
    padding:16px 20px;
    font-size:24px;
    font-weight:900;
}

.card-heading.blue{
    background:#0d6efd;
}

.card-body-custom{
    padding:22px;
}

/* CUSTOMER INPUT */
.lp-input-group{
    position:relative;
    margin-bottom:12px;
}

.lp-input-group .input-icon{
    position:absolute;
    left:13px;
    top:50%;
    transform:translateY(-50%);
    color:var(--success);
    font-size:16px;
    z-index:2;
}

.lp-input-group input,
.lp-input-group textarea{
    width:100%;
    padding-left:45px;
    min-height:55px;
    border-radius:12px;
    border:1px solid #74d99a;
    background:#f8fffb;
    font-size:16px;
}

.lp-input-group textarea{
    min-height:90px;
    padding-top:15px;
}

.lp-input-group input:focus,
.lp-input-group textarea:focus{
    border-color:#16a34a;
    background:#fff;
    outline:none;
}

/* FIELD ERROR */
.field-error{
    display:none;
    color:#dc2626;
    font-size:13px;
    font-weight:700;
    margin-top:5px;
}

/* DELIVERY OPTION */
.delivery-title{
    font-size:16px;
    font-weight:900;
    color:#15803d;
    margin:8px 0 6px;
}

.delivery-options{
    display:grid;
    grid-template-columns:1fr;
    gap:7px;
}

.delivery-option{
    position:relative;
}

.delivery-option input{
    position:absolute;
    opacity:0;
}

.delivery-option label{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    width:100%;
    min-height:54px;
    border:1px solid #86efac;
    background:#f8fffb;
    border-radius:10px;
    padding:10px 12px;
    cursor:pointer;
    font-weight:900;
    font-size:15px;
    color:#0f172a;
}

.delivery-option input:checked + label{
    border:1px solid #22c55e;
    background:#ecfdf5;
    color:#15803d;
}

.delivery-price{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:900;
    color:#15803d;
}

.check-icon{
    width:19px;
    height:19px;
    border-radius:50%;
    border:1px solid #cbd5e1;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:10px;
}

.delivery-option input:checked + label .check-icon{
    background:#ff5a00;
    border-color:#ff5a00;
}

/* SUMMARY */
.summary-product{
    display:flex;
    gap:12px;
    align-items:center;
    padding:15px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    margin-bottom:16px;
}

.summary-product img{
    width:82px;
    height:82px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid #e5e7eb;
}

.summary-product-title{
    font-weight:900;
    line-height:1.35;
    margin-bottom:8px;
}

.qty-box{
    display:flex;
    gap:8px;
    align-items:center;
}

.qty-btn{
    width:34px;
    height:34px;
    border:none;
    border-radius:8px;
    background:#111827;
    color:#fff;
    font-weight:900;
}

.qty-input{
    width:55px;
    height:34px;
    border:1px solid #dbe2ea;
    border-radius:8px;
    text-align:center;
    font-weight:900;
}

.summary-line{
    display:flex;
    justify-content:space-between;
    gap:10px;
    padding:11px 0;
    border-bottom:1px solid #e5e7eb;
    font-size:17px;
}

.summary-total{
    display:flex;
    justify-content:space-between;
    gap:10px;
    padding-top:14px;
    font-size:24px;
    font-weight:900;
    color:var(--danger);
}

/* UPSELL */
.upsell-box{
    margin-top:16px;
    border:1px dashed var(--primary);
    background:#fff7ed;
    border-radius:16px;
    padding:14px;
}

/* ORDER BUTTON */
.place-order-btn{
    position:relative;
    width:100%;
    border:none;
    border-radius:14px;
    padding:15px 18px;
    margin-top:16px;
    background:linear-gradient(90deg,#ff4b2b,#ff416c);
    color:#fff;
    font-size:21px;
    font-weight:900;
    box-shadow:0 10px 25px rgba(255,75,43,.28);
    overflow:hidden;
}

.place-order-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:50%;
    height:100%;
    background:linear-gradient(to right,rgba(255,255,255,0),rgba(255,255,255,.35),rgba(255,255,255,0));
    transform:skewX(-25deg);
    animation:shine 3s infinite;
}

/* FOOTER */
.footer-section{
    background:#050505;
    padding:38px 15px;
    color:#fff;
    text-align:center;
}

.footer-help-box{
    max-width:620px;
    margin:0 auto;
    border:1px solid #fff;
    border-radius:18px;
    padding:22px 15px;
}

.footer-actions{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:18px;
}

.footer-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px 22px;
    border-radius:999px;
    color:#fff!important;
    font-weight:900;
}

.call-btn{background:var(--primary)}
.whatsapp-btn{background:#25d366}

.social-icons{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:20px;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111827;
    color:#fff;
    font-size:18px;
    border:1px solid #374151;
}

/* ANIMATION */
@keyframes shine{
    0%{left:-100%}
    20%{left:150%}
    100%{left:150%}
}

@keyframes lpPulse{
    0%{transform:scale(1);box-shadow:0 0 0 0 rgba(255,77,0,.7)}
    70%{transform:scale(1.04);box-shadow:0 0 0 14px rgba(255,77,0,0)}
    100%{transform:scale(1);box-shadow:0 0 0 0 rgba(255,77,0,0)}
}

/* TABLET */
@media(max-width:991px){
    .hero-grid,
    .order-grid{
        grid-template-columns:1fr;
    }

    .hero-section{
        padding:28px 0;
        text-align:center;
    }

    .hero-title{font-size:31px}
    .hero-subtitle{font-size:16px}
    .price-box{justify-content:center}

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .quality-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */
@media(max-width:576px){
    .lp-container{
        padding:0 12px;
    }

    .logo-box img{
        max-height:56px;
    }

    .offer-badge{
        font-size:14px;
        padding:8px 14px;
    }

    .hero-title{
        font-size:27px;
    }

    .sale-price{
        font-size:31px;
    }

    .regular-price{
        font-size:19px;
    }

    .order-scroll-btn,
    .pulse-btn{
        width:100%;
        font-size:18px;
        padding:14px 20px;
    }

    .hero-banner-card,
    .main-banner-after-subtitle{
        border-radius:20px;
        padding:9px;
    }

    .trust-card{
        padding:18px 10px;
        min-height:155px;
    }

    .trust-icon{
        width:56px;
        height:56px;
        font-size:24px;
    }

    .trust-card h6{
        font-size:15px;
    }

    .trust-card p{
        font-size:12px;
    }

    .timer-title{
        font-size:20px;
    }

    .headline-bar{
        font-size:20px;
    }

    .feature-list{
        padding:17px;
    }

    .feature-list li{
        font-size:15px;
    }

    .section-title{
        font-size:25px;
    }

    .quality-grid{
        grid-template-columns:1fr;
    }

    .review-carousel-desktop{
        display:none;
    }

    .review-carousel-mobile{
        display:block;
    }

    .screenshot-card{
        padding:6px;
        border-radius:14px;
    }

    .screenshot-card img{
        height:220px;
        border-radius:11px;
    }

    .order-section{
        padding:35px 0;
    }

    .card-heading{
        font-size:21px;
        padding:14px 16px;
    }

    .card-body-custom{
        padding:17px;
    }

    .summary-product{
        align-items:flex-start;
    }

    .summary-product img{
        width:76px;
        height:76px;
    }

    .summary-total{
        font-size:21px;
    }

    .lp-input-group{
        margin-bottom:10px;
    }

    .lp-input-group input,
.lp-input-group textarea{
    min-height:50px;
    font-size:15px;
    padding-left:40px;
    border-radius:10px;
}

  .lp-input-group textarea{
    min-height:80px;
    padding-top:12px;
}

    .lp-input-group .input-icon{
        left:12px;
        font-size:14px;
    }

    .delivery-title{
        font-size:15px;
        margin:8px 0 6px;
    }

    .delivery-options{
        gap:7px;
    }

    .delivery-option label{
        min-height:52px;
        padding:9px 11px;
        font-size:14px;
        border-radius:8px;
    }

    .delivery-price{
        font-size:14px;
    }

    .check-icon{
        width:18px;
        height:18px;
        font-size:9px;
    }

    .place-order-btn{
        font-size:18px;
        padding:13px 16px;
        margin-top:16px;
    }

    .footer-actions{
        flex-direction:column;
    }

    .footer-btn{
        width:100%;
    }

    .order-cta-section{
        padding:22px 12px;
    }

    .order-cta-btn{
        font-size:18px;
        padding:15px 18px;
        border-width:4px;
    }
}
.upsell-title{
    display:inline-block;
    background:linear-gradient(90deg,#ff4d00,#ff8a00);
    color:#fff;
    padding:5px 10px;
    border-radius:999px;
    font-size:14px;
    font-weight:900;
    margin-bottom:5px;
}
.upsell-item{
    display:flex;
    gap:12px;
    align-items:center;
    cursor:pointer;
    padding:10px;
    border-radius:14px;
    border:1px solid #ffd6bf;
    background:#fff;
    margin-bottom:10px;
}

.upsell-item:last-child{
    margin-bottom:0;
}

.upsell-item input{
    width:18px;
    height:18px;
    accent-color:#ff4d00;
    flex:0 0 auto;
}

.upsell-item img{
    width:58px;
    height:58px;
    object-fit:cover;
    border-radius:10px;
    border:1px solid #eee;
}

.upsell-info{
    flex:1;
}

.upsell-product-name{
    font-weight:800;
    font-size:14px;
    color:#111827;
    margin-top:3px;
}

.upsell-price{
    color:#e63946;
    font-weight:900;
    font-size:15px;
}

@media(max-width:576px){
    .upsell-item{
        gap:9px;
        padding:8px;
    }

    .upsell-item img{
        width:50px;
        height:50px;
    }

    .upsell-title{
        font-size:12px;
    }

    .upsell-product-name{
        font-size:13px;
    }

    .upsell-price{
        font-size:14px;
    }
}

/*Product Ditails Page */


        :root{
            --primary:#0d6efd;
            --primary2:#0aa2ff;
            --danger:#ff4757;
            --success:#168a55;
            --orange:#ff6b00;
            --dark:#111827;
            --muted:#64748b;
            --bg:#f4f7f6;
            --border:#e5eaf0;
            --card:#ffffff;
        }

        *{box-sizing:border-box}

        body{
            font-family:'Hind Siliguri',sans-serif;
            background:var(--bg);
            color:var(--dark);
            overflow-x:hidden;
        }

        .product-container{max-width:1280px}

        .product-main-grid{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:24px;
            align-items:start;
        }

        .pd-card{
            background:#fff;
            border:1px solid #e9eef5;
            border-radius:24px;
            box-shadow:0 14px 34px rgba(15,23,42,.08);
        }

        .gallery-card{padding:18px}
        .info-card{padding:22px}

        .main-img-container{
            min-height:420px;
            background:#f8fafc;
            border:1px solid #edf2f7;
            border-radius:20px;
            display:flex;
            align-items:center;
            justify-content:center;
            overflow:hidden;
        }

        .main-img{
            width:100%;
            max-height:420px;
            object-fit:contain;
            transition:.25s;
        }

        .main-img-container:hover .main-img{transform:scale(1.18)}

        .thumb-strip{
            display:flex;
            flex-wrap:wrap;
            gap:10px;
            justify-content:center;
            margin-top:14px;
        }

        .thumb-img{
            width:76px;
            height:76px;
            object-fit:cover;
            border-radius:14px;
            border:2px solid #e5e7eb;
            background:#fff;
            cursor:pointer;
            padding:4px;
            transition:.2s;
        }

        .thumb-img:hover,
        .thumb-active{
            border-color:var(--primary);
            transform:translateY(-2px);
            box-shadow:0 8px 18px rgba(13,110,253,.16);
        }

        .trust-strip{
            display:grid;
            grid-template-columns:repeat(4,1fr);
            gap:10px;
            margin-top:16px;
        }

        .trust-item{
            background:#f8fafc;
            border:1px solid #e5e7eb;
            border-radius:16px;
            padding:12px 8px;
            text-align:center;
            font-size:12px;
            font-weight:900;
            color:#334155;
        }

        .trust-item i{
            display:block;
            font-size:22px;
            margin-bottom:4px;
        }

        .offer-hook-box{
            background:linear-gradient(135deg,#fff7ed,#fff);
            border:1px solid #fed7aa;
            border-radius:18px;
            padding:16px;
            margin-top:16px;
        }

        .offer-hook-box.compact{
            display:grid;
            grid-template-columns:auto 1fr;
            gap:12px;
            align-items:center;
        }

        .offer-icon{
            width:48px;
            height:48px;
            border-radius:16px;
            background:linear-gradient(135deg,#ff6b00,#ff9f1a);
            color:#fff;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:24px;
            flex-shrink:0;
        }

        .offer-title{
            font-size:17px;
            font-weight:900;
            margin-bottom:4px;
        }

        .offer-text{
            color:#475569;
            font-size:14px;
            line-height:1.6;
        }

        .breadcrumb{margin-bottom:8px}
        .breadcrumb a{text-decoration:none}

        .badge-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:10px}

        .badge-soft{
            display:inline-flex;
            align-items:center;
            gap:5px;
            padding:7px 12px;
            border-radius:999px;
            font-size:12px;
            font-weight:900;
        }

        .badge-tag{background:#eef6ff;color:#0d6efd}
        .badge-discount{background:#fff1f2;color:#dc3545}
        .badge-stock{background:#ecfdf5;color:#15803d}
        .badge-stock-out{background:#fff1f2;color:#dc3545}

        .product-title{
            font-size:31px;
            line-height:1.35;
            font-weight:900;
            margin:8px 0;
            color:#111827;
        }

        .rating-line{
            display:flex;
            align-items:center;
            gap:7px;
            flex-wrap:wrap;
            color:#f59e0b;
            margin-bottom:14px;
        }

        .product-meta{
            display:flex;
            flex-wrap:wrap;
            gap:9px;
            margin-bottom:14px;
        }

        .meta-pill{
            background:#f8fafc;
            border:1px solid #e5e7eb;
            border-radius:999px;
            padding:8px 13px;
            font-size:13px;
            font-weight:800;
            color:#374151;
        }

        .price-box{
            background:#f8fafc;
            border:1px solid #eef0f3;
            border-radius:18px;
            padding:14px 16px;
            margin-bottom:14px;
            display:flex;
            align-items:flex-end;
            gap:10px;
            flex-wrap:wrap;
        }

        .price-new{
            color:#0d6efd;
            font-size:38px;
            line-height:1;
            font-weight:900;
        }

        .price-old{
            color:#dc3545;
            font-size:21px;
            text-decoration:line-through;
            font-weight:800;
        }

        .short-desc{
            background:#f8fafc;
            border-left:5px solid var(--primary);
            border-radius:15px;
            padding:13px 15px;
            color:#475569;
            line-height:1.8;
            margin-bottom:14px;
        }

        .variant-box{
            background:linear-gradient(180deg,#f8fbff,#fff);
            border:1px solid #dbeafe;
            border-radius:20px;
            padding:16px;
            margin-bottom:16px;
        }

        .variant-head{
            display:flex;
            justify-content:space-between;
            align-items:center;
            gap:8px;
            margin-bottom:12px;
            font-weight:900;
        }

        .variant-required{
            background:#fff7ed;
            color:#ea580c;
            border:1px solid #fed7aa;
            padding:4px 9px;
            border-radius:999px;
            font-size:11px;
            font-weight:900;
        }

        .variant-group-title{
            font-weight:900;
            margin-bottom:7px;
            font-size:14px;
        }

        .variant-choice{
            border:1.8px solid #dbe2ea;
            background:#fff;
            border-radius:14px;
            padding:10px 15px;
            min-width:58px;
            text-align:center;
            font-size:13px;
            font-weight:900;
            margin:4px;
            cursor:pointer;
            transition:.2s;
        }

        .variant-choice:hover{
            border-color:#ff9f1a;
            color:#ea580c;
        }

        .variant-choice.active{
            border-color:var(--orange);
            background:#fff7ed;
            color:#ff6b00;
            box-shadow:0 6px 16px rgba(255,107,0,.13);
        }

        .variant-price-highlight{
            background:#fff7ed;
            border-left:5px solid var(--orange);
            border-radius:14px;
            padding:12px 15px;
            font-weight:900;
            color:#dc2626;
            margin-top:10px;
        }

        .single-product-note{
            background:#eff6ff;
            border:1px solid #bfdbfe;
            border-radius:18px;
            padding:14px 16px;
            color:#1e40af;
            font-weight:800;
            margin-bottom:16px;
        }

        .btn-action{
            padding:13px 18px;
            font-weight:900;
            border-radius:15px;
            display:flex;
            align-items:center;
            justify-content:center;
            gap:8px;
            min-height:52px;
        }

        .btn-order{
            background:linear-gradient(135deg,#ff4757,#ff6b81);
            color:#fff;
            border:none;
            box-shadow:0 8px 20px rgba(255,71,87,.25);
        }

        .btn-order:hover{
            color:#fff;
            transform:translateY(-2px);
        }

        .whatsapp-btn{
            background:#168a55;
            color:#fff;
            border:none;
        }

        .whatsapp-btn:hover{
            background:#107343;
            color:#fff;
        }

        .stock-warning{
            background:#fff5f5;
            color:#e84118;
            border-left:5px solid #e84118;
            padding:11px 14px;
            border-radius:12px;
            font-weight:900;
            margin-top:14px;
            display:inline-block;
        }

        .tab-card{
            background:#fff;
            border-radius:22px;
            border:1px solid #e9ecef;
            box-shadow:0 10px 28px rgba(0,0,0,.06);
            overflow:hidden;
            margin-top:24px;
        }

        .nav-pills .nav-link{
            border-radius:0;
            font-weight:900;
            color:#333;
            padding:14px 22px;
        }

        .nav-pills .nav-link.active{
            background:#0d6efd;
            color:#fff;
        }

        .description-content{
            line-height:1.9;
            color:#374151;
            white-space:normal;
        }

        .policy-box{
            background:#fffbeb;
            border-left:5px solid #f59e0b;
            border-radius:14px;
            padding:16px;
            line-height:1.8;
            color:#374151;
        }

        .review-summary{
            background:#f8fafc;
            border-radius:18px;
            padding:22px;
            height:100%;
        }

        .review-score{
            font-size:46px;
            font-weight:900;
            color:#0f172a;
        }

        .star{color:#f59e0b}

        .review-item{
            border-bottom:1px solid #edf2f7;
            padding:16px 0;
        }

        .review-avatar{
            width:44px;
            height:44px;
            border-radius:50%;
            background:#0d6efd;
            color:#fff;
            display:flex;
            align-items:center;
            justify-content:center;
            font-weight:900;
            flex-shrink:0;
        }

        .related-card{
            background:#fff;
            border:1px solid #e9ecef;
            border-radius:16px;
            overflow:hidden;
            transition:.25s;
            height:100%;
        }

        .related-card:hover{
            transform:translateY(-5px);
            box-shadow:0 10px 24px rgba(0,0,0,.10);
        }

        .sticky-action-mobile{display:none}

        @media(max-width:991px){
            .product-main-grid{grid-template-columns:1fr}
            .main-img-container{min-height:350px}
            .main-img-container:hover .main-img{transform:none}
            .product-title{font-size:27px}
            .price-new{font-size:33px}
        }

        @media(max-width:768px){
            .product-container{
                padding-left:12px;
                padding-right:12px;
                margin-top:18px!important;
            }

            .pd-card,
            .tab-card{
                border-radius:18px;
            }

            .gallery-card,
            .info-card{
                padding:14px;
            }

            .main-img-container{
                min-height:280px;
                border-radius:16px;
            }

            .main-img{max-height:290px}

            .thumb-img{
                width:60px;
                height:60px;
            }

            .trust-strip{
                grid-template-columns:repeat(4,1fr);
                gap:7px;
            }

            .trust-item{
                font-size:9px;
                padding:9px 3px;
                border-radius:12px;
            }

            .trust-item i{
                font-size:18px;
            }

            .offer-hook-box{
                padding:13px;
                border-radius:15px;
            }

            .offer-title{font-size:15px}
            .offer-text{font-size:12px}

            .product-title{font-size:23px}
            .price-new{font-size:29px}
            .price-old{font-size:17px}

            .meta-pill{
                font-size:12px;
                padding:7px 10px;
            }

            .short-desc{
                font-size:14px;
            }

            .variant-box{
                padding:14px;
            }

            .variant-choice{
                min-width:52px;
                padding:9px 12px;
                font-size:12px;
            }

            .btn-action{
                font-size:14px;
                min-height:48px;
                padding:12px;
            }

            .desktop-action-row{
                display:none;
            }

            .nav-pills{
                overflow-x:auto;
                flex-wrap:nowrap;
            }

            .nav-pills .nav-link{
                white-space:nowrap;
                font-size:14px;
                padding:12px 14px;
            }

            .sticky-action-mobile{
                display:flex;
                position:fixed;
                left:0;
                right:0;
                bottom:72px;
                background:#fff;
                padding:9px 12px;
                box-shadow:0 -4px 18px rgba(0,0,0,.12);
                z-index:9998;
                gap:8px;
            }

            .sticky-action-mobile .btn{
                flex:1;
                border-radius:12px;
                font-weight:900;
            }
        }

        /*ThankYou*/
/* Thank You Page */
.thank-you-page{
    font-family:'Hind Siliguri',sans-serif;
    background:linear-gradient(135deg,#eef7ff,#f8fafc);
    padding:45px 12px;
    color:#111827;
}

.thank-you-container{
    max-width:720px;
    margin:0 auto;
}

.thank-success-card{
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    border:1px solid #e8eef5;
    box-shadow:0 18px 45px rgba(15,23,42,.10);
}

.thank-success-header{
    background:linear-gradient(135deg,#16a34a,#22c55e);
    color:#fff;
    text-align:center;
    padding:34px 22px;
}

.thank-success-icon{
    width:78px;
    height:78px;
    margin:0 auto 14px;
    background:#fff;
    color:#16a34a;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:44px;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.thank-success-header h2{
    font-size:26px;
    font-weight:900;
    margin-bottom:8px;
}

.thank-success-header p{
    margin:0;
    font-size:15px;
}

.thank-card-body{
    padding:24px;
}

.thank-info-box{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:18px;
    margin-bottom:24px;
}

.thank-info-box h5,
.thank-products h5{
    font-size:18px;
    font-weight:900;
    margin-bottom:16px;
}

.thank-info-box h5 i{
    color:#0d6efd;
}

.thank-products h5 i{
    color:#16a34a;
}

.thank-info-row{
    display:grid;
    grid-template-columns:1fr auto;
    gap:12px;
    padding:11px 0;
    border-bottom:1px dashed #dbe2ea;
    align-items:center;
}

.thank-info-row:last-child{
    border-bottom:0;
}

.thank-info-row span{
    color:#64748b;
}

.thank-info-row strong{
    text-align:right;
    word-break:break-word;
}

.thank-products{
    margin-bottom:24px;
}

.thank-product-item{
    display:grid;
    grid-template-columns:70px 1fr auto;
    gap:14px;
    align-items:center;
    background:#fff;
    border:1px solid #eef0f3;
    border-radius:18px;
    padding:12px;
    margin-bottom:12px;
}

.thank-product-img-wrap{
    width:70px;
    height:70px;
    border-radius:14px;
    border:1px solid #e5e7eb;
    background:#f8fafc;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.thank-product-img-wrap img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:5px;
}

.thank-product-info h6{
    font-size:15px;
    font-weight:900;
    line-height:1.5;
    margin-bottom:4px;
    word-break:break-word;
}

.thank-product-info small{
    color:#64748b;
}

.thank-product-price{
    color:#0d6efd;
    font-weight:900;
    white-space:nowrap;
}

.thank-note-box{
    background:#fff7ed;
    border-left:5px solid #f97316;
    border-radius:16px;
    padding:15px;
    color:#7c2d12;
    margin-bottom:20px;
}

.thank-note-box strong{
    display:block;
    margin-bottom:6px;
}

.thank-note-box p{
    margin:0;
    font-size:13px;
    line-height:1.7;
}

.thank-support-box{
    display:flex;
    align-items:center;
    gap:14px;
    background:#eff6ff;
    border:1px solid #dbeafe;
    border-radius:18px;
    padding:16px;
    margin-bottom:22px;
}

.thank-support-icon{
    width:48px;
    height:48px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.thank-support-box strong{
    display:block;
    font-weight:900;
}

.thank-support-box small{
    color:#64748b;
}

.thank-actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.thank-btn-shop,
.thank-btn-whatsapp{
    border-radius:999px;
    padding:12px 24px;
    font-weight:900;
    color:#fff;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.thank-btn-shop{
    background:linear-gradient(135deg,#0d6efd,#0aa2ff);
    box-shadow:0 10px 22px rgba(13,110,253,.25);
}

.thank-btn-whatsapp{
    background:#22c55e;
}

.thank-btn-shop:hover,
.thank-btn-whatsapp:hover{
    color:#fff;
    transform:translateY(-2px);
}

.thank-blessing{
    text-align:center;
    color:#16a34a;
    font-weight:900;
    margin:22px 0 0;
}

.thank-footer-text{
    text-align:center;
    color:#64748b;
    font-size:13px;
    margin:20px 0 0;
}

@media(max-width:576px){
    .thank-you-page{
        padding:25px 10px;
    }

    .thank-success-card{
        border-radius:20px;
    }

    .thank-success-header{
        padding:28px 16px;
    }

    .thank-success-header h2{
        font-size:21px;
    }

    .thank-card-body{
        padding:16px;
    }

    .thank-info-row{
        grid-template-columns:1fr;
        gap:3px;
    }

    .thank-info-row strong{
        text-align:left;
    }

    .thank-product-item{
        grid-template-columns:62px 1fr;
        align-items:flex-start;
    }

    .thank-product-img-wrap{
        width:62px;
        height:62px;
    }

    .thank-product-price{
        grid-column:2;
        text-align:left;
        margin-top:2px;
    }

    .thank-actions a{
        width:100%;
        justify-content:center;
    }
}