
        @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

        :root {
            --sidebar-width: 286px;
            --primary-blue: #0b33ef;
            --bg-gray: #f9fafb;
            --border-color: #e5e7eb;
            --border-strong: #d1d5dc;
            --text-dark: #101828;
            --active-bg: rgba(26, 82, 162, 0.15);
        }

        /* Sidebar promo image */
        .sidebar-promo,
        .offcanvas-promo {
            padding: 15px;
        }

        .sidebar-promo-img {
            margin-top: 15px;
            width: 100%;
            height: 100%; /* desktop default */
            object-fit: cover;
            border-radius: 8px;
            display: block;
        }

        body {
            font-family: 'Quicksand', sans-serif;
            background-color: #fff;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* --- 1. FIXED SIDEBAR --- */
        .sidebar-container {
            position: fixed;
            top: 66px;
            bottom: 0px;
            left: 0;
            width: var(--sidebar-width);
            display: flex;
            flex-direction: column;
            border-top: 0;
            border-right: 2px solid var(--primary-blue);
            border-bottom: 2px solid var(--primary-blue);
            border-left: 2px solid var(--primary-blue);
        }

        /* --- 2. HEADER (Static) --- */
        .sidebar-header {
            height: 58px;
            min-height: 58px;
            flex-shrink: 0;
            padding: 16px;
            border-bottom: 1px solid var(--border-strong);
            box-sizing: border-box;
            display: flex;
            align-items: center;
            background-color: #F9FAFB;
        }

        .categories-title {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary-blue);
            margin: 0;
        }

        /* --- 3. MENU LIST --- */
        .sidebar-menu-area {
            flex-grow: 1;
            overflow-y: auto;
            min-height: 0;
           
            flex-direction: column;
            -ms-overflow-style: none; /* Hide Scrollbar */
            scrollbar-width: none;
        }

        .sidebar-menu-area::-webkit-scrollbar {
            display: none;
        }

        /* --- 4. OFFER BOX (Static Bottom) --- */
        .special-offer-box {
            flex-shrink: 0;
            width: 100%;
            background-color: var(--bg-gray);
            border-top: 2px solid var(--border-strong);
            padding: 18px 16px;
        }

        .offer-inner {
            background-color: var(--primary-blue);
            padding: 16px;
            color: white;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .offer-sub {
            font-size: 12px;
            opacity: 0.9;
        }

        .offer-title {
            font-size: 16px;
            font-weight: 400;
        }

        /* --- 5. MAIN CONTENT (Pushed Right) --- */
        .page-content-container {
            margin-left: var(--sidebar-width);
            width: calc(100% - var(--sidebar-width));
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
        }

        /* --- 6. ELEMENT STYLES --- */
        .accordion-item {
            border: none;
            background: transparent;
        }

        .accordion-button {
            height: 48px;
            padding: 0 16px;
            background-color: transparent;
            color: var(--text-dark);
            font-size: 16px;
            box-shadow: none !important;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .accordion-button:not(.collapsed) {
            color: var(--primary-blue);
        }

        .accordion-button::after {
            display: none;
        }

        .cat-icon-box {
            width: 24px;
            height: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 12px;
        }

        .cat-name {
            flex-grow: 1;
            font-weight: 400;
            text-align: left;
        }

        .cat-count {
            font-size: 12px;
            color: #99a1af;
            margin-right: 12px;
        }

        .accordion-button:not(.collapsed) .cat-count {
            color: var(--primary-blue);
        }

        .custom-chevron {
            transition: transform 0.3s ease;
            transform: rotate(180deg);
        }

        .accordion-button:not(.collapsed) .custom-chevron {
            transform: rotate(0deg);
        }

        .accordion-body {
            padding: 0;
            background-color: var(--bg-gray);
        }

        .submenu-link {
            display: flex;
            align-items: center;
            height: 36px;
            padding-left: 52px;
            font-size: 14px;
            color: #4a5565;
            text-decoration: none;
            transition: 0.2s;
        }

        .submenu-link:hover {
            background-color: var(--active-bg);
            color: var(--primary-blue);
        }

        /* Mobile Adjustments */
        @media (max-width: 992px) {
            .sidebar-container {
                display: none;
            }
            .page-content-container {
                margin-left: 0;
                width: 100%;
            }
        }

        /* Search Input Styles */
        .search-form .input-group {
            border: none !important;
            box-shadow: none !important;
        }

        .search-form .form-control,
        .search-form .input-group-text {
            border: none !important;
            box-shadow: none !important;
            outline: none !important;
            background-color: #fff;
        }

        .search-form .form-control:focus,
        .search-form .input-group-text:focus {
            border: none !important;
            box-shadow: none !important;
            outline: none !important;
        }

        .product-search-form {
            position: relative;
        }

        .product-search-results {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            width: 100%;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
            max-height: 360px;
            overflow-y: auto;
            z-index: 1200;
            display: none;
        }

        .product-search-results.show {
            display: block;
        }

        .product-search-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-bottom: 1px solid #f1f5f9;
            text-decoration: none;
            color: #0f172a;
            transition: background-color 0.2s ease;
        }

        .product-search-item:hover {
            background-color: #f8fafc;
            color: #0f172a;
        }

        .product-search-item:last-child {
            border-bottom: none;
        }

        .product-search-item-image-wrap {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            background: #f8fafc;
        }

        .product-search-item-image-wrap img,
        .product-search-item-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-search-item-image-placeholder {
            color: #94a3b8;
            font-size: 20px;
        }

        .product-search-item-info {
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .product-search-item-name {
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-search-item-price {
            font-size: 13px;
            color: #0b33ef;
            font-weight: 700;
        }

        .product-search-empty {
            padding: 12px;
            font-size: 13px;
            color: #475569;
        }

        .frontend-profile-dropdown {
            position: relative;
        }

        .frontend-profile-trigger {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid #dbe3ff;
            background: #ffffff;
            border-radius: 999px;
            padding: 6px 12px;
            color: #1f2937;
            max-width: 290px;
        }

        .frontend-profile-avatar {
            width: 30px;
            height: 30px;
            border-radius: 999px;
            background: #eff4ff;
            color: #0b33ef;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .frontend-profile-meta {
            display: flex;
            flex-direction: column;
            min-width: 0;
            line-height: 1.1;
        }

        .frontend-profile-meta small {
            color: #64748b;
            font-size: 11px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 180px;
        }

        .frontend-profile-meta strong {
            font-size: 13px;
            color: #0f172a;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 180px;
        }

        .frontend-profile-chevron {
            color: #64748b;
            font-size: 12px;
            transition: transform 0.2s ease;
        }

        .frontend-profile-menu {
            position: absolute;
            right: 0;
            top: calc(100% + 8px);
            min-width: 170px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            box-shadow: 0 12px 30px rgba(2, 6, 23, 0.15);
            padding: 6px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(6px);
            transition: all 0.2s ease;
            z-index: 1300;
        }

        .frontend-profile-menu a {
            display: block;
            padding: 8px 10px;
            border-radius: 7px;
            text-decoration: none;
            font-size: 13px;
            color: #0f172a;
        }

        .frontend-profile-menu a:hover {
            background: #f8fafc;
        }

        .frontend-profile-dropdown:hover .frontend-profile-menu,
        .frontend-profile-dropdown:focus-within .frontend-profile-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .frontend-profile-dropdown:hover .frontend-profile-chevron,
        .frontend-profile-dropdown:focus-within .frontend-profile-chevron {
            transform: rotate(180deg);
        }

        @media (max-width: 1199.98px) {
            .frontend-profile-meta small,
            .frontend-profile-meta strong {
                max-width: 120px;
            }
        }

        /* --- BASE FOOTER STYLES --- */
        .base_footer_wrapper {
            background-color: #F8F8F8;
            border-top: 2px solid #D7D7D7;
            padding-top: 48px;
            font-family: 'Quicksand', sans-serif;
           
        }

        .base_footer_brand_title {
            font-family: 'Quicksand', sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0.8px;
            color: #5A5A5A;
            margin-bottom: 16px;
        }

        .base_footer_brand_desc {
            font-family: 'Quicksand', sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            color: #5A5A5A;
            max-width: 262px;
        }

        .base_footer_heading {
            font-family: 'Quicksand', sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0.4px;
            color: #5A5A5A;
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .base_footer_list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .base_footer_item {
            height: 20px;
        }

        .base_footer_link {
            font-family: 'Quicksand', sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            color: #5A5A5A;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .base_footer_link:hover {
            color: #0B33EF;
        }

        .base_footer_bottom {
            border-top: 2px solid #CDCDCD;
            margin-top: 32px;
            padding-top: 25px;
            padding-bottom: 25px;
            text-align: center;
        }

        .base_footer_copyright {
            font-family: 'Quicksand', sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            color: #5A5A5A;
            margin: 0;
        }

        .footer-bottom-row {
            min-height: 62px;
        }

        .footer-text-singleline {
            white-space: nowrap;
        }

        .payment-block {
            gap: 4px;
        }

        .footer__info-title {
            font-size: 13px;
            line-height: 2;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Quicksand', sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            color: #5A5A5A;
            
        }

        .payment-list {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }

        .footer-social-block {
            gap: 6px;
        }

        .footer-social-list {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            border: 1px solid #CDCDCD;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #0B33EF;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 16px;
            line-height: 1;
        }

        .footer-social-link:hover {
            color: #0B33EF;
            border-color: #0B33EF;
            transform: translateY(-1px);
        }

        .payment-logo {
            height: 30px;
            width: auto;
            border-radius: 4px;
        }

        .payment-emi-text {
            color: var(--primary-blue);
            font-size: 13px;
            white-space: nowrap;
        }

        .verified {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-left: 4px;
            white-space: nowrap;
        }

        .verified__title {
            color: #7a7a7a;
            font-size: 12px;
            letter-spacing: 0.8px;
        }

        .sslcommerz-logo {
            height: 22px;
            width: auto;
        }

        @media (min-width: 992px) {
            .footer-bottom-row {
                flex-wrap: nowrap;
            }

            .base_footer_bottom .base_footer_copyright {
                font-size: 13px;
                line-height: 18px;
            }

            .payment-list {
                justify-content: flex-end;
            }
        }

        @media (min-width: 992px) and (max-width: 1285px) {
            .search-form {
                margin-left: 30px;
                margin-right: 30px;
            }
        }

        /* Footer Alignment */
        .footer_right {
            margin-left: 15px;
        }

        @media (max-width: 576px) {
            .footer_right {
                margin-left: 0 !important;
            }

            .footer-text-singleline {
                white-space: normal;
            }

            .payment-list {
                flex-wrap: wrap;
                justify-content: center;
                row-gap: 8px;
            }

            .footer-social-list {
                justify-content: center;
                gap: 10px;
            }

            .footer-social-link {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .footer__info-title {
                font-size: 12px;
            }

            .payment-emi-text {
                font-size: 10px;
            }

            .verified__title {
                font-size: 10px;
                letter-spacing: 0.8px;
            }

            .sslcommerz-logo {
                height: 16px;
            }
            /* Mobile promo height */
            .sidebar-promo-img {
                height: 100% !important;
            }
        }



        