
        /* --- CSS STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f7f7f7;
        }

        /* --- UPPER TOP BAR (Support Section) --- */
        .top-bar {
            background-color: #1b5e20; /* Darker Green */
            color: #ffffff;
            font-size: 13px;
            padding: 8px 20px;
        }

        .top-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .support-info a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
        }

        .support-info i {
            margin-right: 5px;
            color: #81c784; /* Light Green Icon */
        }

        .top-bar-text {
            opacity: 0.9;
        }

        /* --- MAIN HEADER SECTION --- */
        .bazar-header {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        /* Updated Logo + Name Layout */
        .logo a {
            display: flex;
            align-items: center;
            gap: 10px; /* লোগো ইমেজ এবং নামের মাঝখানের দূরত্ব */
            text-decoration: none;
        }

        .logo img {
            height: 40px; /* লোগোর সাইজ */
            width: auto;
            object-fit: contain;
        }

        .logo .brand-name {
            font-size: 22px;
            font-weight: 700;
            color: #333;
            white-space: nowrap;
        }

        .logo .brand-name span {
            color: #2e7d32; /* Brand Green Theme */
        }

        /* Search Bar */
        .search-box {
            display: flex;
            flex: 1;
            max-width: 400px;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 10px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            outline: none;
            font-size: 14px;
            transition: border-color 0.3s;
        }

        .search-box input:focus {
            border-color: #2e7d32;
        }

        .search-box button {
            position: absolute;
            right: 2px;
            top: 2px;
            bottom: 2px;
            border: none;
            background-color: #2e7d32;
            color: white;
            padding: 0 20px;
            border-radius: 23px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .search-box button:hover {
            background-color: #1b5e20;
        }

        /* Navigation Menu */
        .nav-menu ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .nav-menu ul li a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
        }

        .nav-menu ul li a:hover, 
        .nav-menu ul li a.active {
            color: #2e7d32;
        }

        /* Header Actions (User & Cart) */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .action-btn {
            text-decoration: none;
            color: #333;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .action-btn i {
            font-size: 20px;
        }

        .action-btn:hover {
            color: #2e7d32;
        }

        /* Cart Badge */
        .cart-btn {
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -10px;
            background-color: #d32f2f;
            color: white;
            font-size: 11px;
            font-weight: bold;
            padding: 2px 6px;
            border-radius: 50%;
        }

        /* Responsive Design for Mobile Devices */
        @media (max-width: 768px) {
            .top-bar-container {
                flex-direction: column;
                gap: 5px;
                text-align: center;
            }

            .header-container {
                flex-direction: column;
                gap: 15px;
                padding: 15px;
            }

            .search-box {
                max-width: 100%;
                width: 100%;
            }

            .nav-menu {
                width: 100%;
            }

            .nav-menu ul {
                justify-content: center;
            }
        }
