        /* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        /* Global Webkit scrollbar styling */
        ::-webkit-scrollbar {
            width: 6px; /* Set the scrollbar width to 3px */
            height: 6px; /* Optional: Set scrollbar height for horizontal scrollbar */
        }
        
        /* Optional: Style the scrollbar track */
        ::-webkit-scrollbar-track {
            background: #f1f1f1; /* Light background for the scrollbar track */
        }
        
        /* Optional: Style the scrollbar thumb (the draggable part) */
        ::-webkit-scrollbar-thumb {
            background: #888; /* Darker color for the draggable thumb */
            border-radius: 10px; /* Round corners for the thumb */
        }
        
        /* Optional: Style the thumb on hover */
        ::-webkit-scrollbar-thumb:hover {
            background: #555; /* Darker color when hovering */
        }

        /* Top Ribbon Styling */
        .top-ribbon {
            background-color: #ffe8e8;
            color: #b05d5d;
            text-align: center;
            padding: 5px 0;
            font-size: 12px;
            font-weight: 600;
        }

        /* Header Styling */
        header {
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 10px;
            background-color: #fff; /* Set the header background to white */
            justify-content: space-between;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1); /* Add bottom shadow */
        }


        .hamburger-icon-container {
            display: none;
            align-items: center;
            cursor: pointer;
        }

        .logo-container {
            text-align: center;
        }

        .logo-container img {
            max-height: 80px; /* Set the maximum height for the logo */
            height: auto; /* Maintain the aspect ratio of the logo */
        }

        .header-classic-items-container {
            gap: 20px;
            align-items: center;
            justify-content: flex-end;
            flex-direction: column;
        }

        .classic-header-item-1 {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .classic-header-item-1 span {
            color: black;
        }

        .classic-header-home-icon-container {
            display: none;
            color: black;
        }
        .header-collection-icon-container {
            display: none;
        }


        .header-cart-icon-container {
            position: relative;
            display: inline-block;
            margin-right: 10px;
        }
        
        .cart-count {
            position: absolute;
            top: -12px;
            right: -15px;
            background-color: transparent;
            color: white;
            border-radius: 50%;
            padding: 5px 10px;
            font-size: 14px;
            font-weight: bold;
        }

        .header-cart-icon-container span,
        .header-cart-icon-container i {
            color: #6b6b6b;
        }

        .classic-header-item-2 {
            justify-content: flex-end;
            text-align: right;
            margin-top: 10px;
            font-weight: 600;
            font-size: 12px;
        }
        .navbar-container {
            position: sticky;
            top: 0;
            z-index: 10;
        }

        /* Navbar Styling */
        nav {
            background-color: #000; /* Full black background */
            padding: 10px 20px;
        }

        ul {
            list-style-type: none;
            display: flex;
            justify-content: flex-start; /* Align menu items to the left */
            gap: 30px;
        }

        li {
            display: inline;
        }

        a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            padding: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background-color 0.3s;
        }

        a:hover {
            background-color: transparent;
            border-radius: 5px;
            border-bottom: 1px solid white;
        }
        #navbar-close-button {
            display: none;
            position: absolute;
            top: 30px;
            right: 30px;
            color: black;
            font-size: 30px;
            margin: 10px;
            cursor: pointer;

        }

        footer {
            background-color: #232323; /* Set the background color */
            color: white; /* Text color */
            text-align: center; /* Center-align the text */
            padding: 20px; /* Padding inside the footer */
            font-size: 14px; /* Font size */
        }
        
        footer p {
            margin: 0; /* Remove default margin */
        }
        footer h2 {
            text-align: center;
            margin: 0 auto;
        }
        footer ul {
            list-style-type: none;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-direction: column;
            margin-bottom: 20px;
        }
        
        footer ul div {
            display: flex;
            flex-direction: row;
            align-items: left;
            margin: 0 auto;
            gap: 10px;
        }
        
        main {
            min-height: 800px;
            padding: 10px;
            width: calc(100% - 2px);
            margin: 0 auto;
        }
        
        .header-cart-icon-container a {
            color: black;
        }


        /* Responsive Design (for mobile) */
        @media (max-width: 885px) {
            ul {
                flex-direction: column;
                align-items: flex-start; /* Align to left in mobile view */
                gap: 10px;
            }
            /* Mobile header */
            header {
                justify-content: left;
                padding: 5px;
                position: sticky;
                top: 0;
                z-index: 10;

            }

            .hamburger-icon-container {
                display: block; /* Show hamburger icon in mobile */
                margin-left: 10px;
            }

            .header-classic-items-container {
                display: flex; /* Hide items in mobile */
                justify-content: space-between;
                position: fixed;
                bottom: 0;
                left: 0;
                z-index: 1;
                align-items: center;
                width: 100%;
                padding: 5px;
                border-top: 2px solid #efefef;
                box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1); /* Added box-shadow for top border */
                background-color: white;
            }


            .contat-details-container {
                display: none;
            }
            .top-currency-container {
                display: none;
            }
            .classic-header-item-1 {
                display: flex;
                width: 100%;
                justify-content: space-between;
                gap: 0;
            }
            .classic-header-home-icon-container,
            .header-collection-icon-container,
            .header-cart-icon-container {
                display: block;
                color: black;
            }
            .classic-header-home-icon-container i,
            .header-collection-icon-container i,
            .header-cart-icon-container i {
                color: #595959;
                font-size: 25px;
            }

            .header-cart-icon-container {
            }



            .search-container input {
                width: 100% !important;
                max-width: 300px;
            }

            .classic-header-item-2 {
                display: none;
            }
            .logo-container {
                flex-grow: 1;
            }
            .logo-container img {
                max-height: 50px;
            }
            
            nav {
                position: fixed;
                left: 0;
                top: 0;
                height: 100vh;
                z-index: 9999;
                width: 400px;
                background-color: white;
            }
            #nav-bar {
                display: none;
            }

            nav a {
                color: black;
            }

            /* Example CSS for overlay effect */
            .container-overlay {
                background-color: rgba(0, 0, 0, 0.5);  /* Semi-transparent dark overlay */
                transition: background-color 0.7s ease-in-out;
                width: 100%;
                position: fixed;
                left: 0;
                top: 0;
                height: 100vh;
                z-index: 9998;
            }
            #navbar-close-button {
                display: block;
            }
            a:hover {
                border-radius: 5px;
                border-bottom: 1px solid #000;
            }
            footer {
                margin-bottom: 60px;
                
            }
            footer ul div {
                display: flex;
                flex-direction: column;
            }


        }

        /* Custom Country Flag Dropdown */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-button {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            border: none;
            border-radius: 5px;
            background-color: #fff;
        }

        .dropdown-button i {
            font-size: 12px; /* Add some size to the down arrow */
        }

        .dropdown-content {
            position: absolute;
            background-color: #fff;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            width: 100px;
            border-radius: 5px;
            z-index: 100;
        }

        .dropdown-content a {
            padding: 8px 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #000;
            border-bottom: 1px solid #ccc;
        }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

        .flag-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .flag-container img {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto;
        }

        .dropdown-button:focus + .dropdown-content,
        .dropdown-content:hover {
            display: block;
        }

        .top-currency-container img {
            margin: 0 auto !important;
        }

        /* Responsive Design (for mobile) */
        @media (max-width: 885px) {
            .dropdown {
                display: none;

            }
            .dropdown-content {
                display: none;
                position: absolute;
                background-color: #fff;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
                width: 100px;
                border-radius: 5px;
                z-index: 100;
                bottom: 40px;
            }
            
            

        }




        /* Search Field Styling */
        .search-container {
            position: relative;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ccc; /* Only bottom border */
        }

        .search-container input {
            border: none;
            outline: none;
            padding: 5px 20px 5px 5px;
            font-size: 14px;
            background-color: transparent;
            width: 150px;
        }

        .search-container i {
            position: absolute;
            right: 5px;
            font-size: 18px;
            color: #333;
            cursor: pointer;
        }

        .hidden {
            display: none;
        }
        /* Keyframe for sliding in */
        @keyframes slideIn {
            0% {
                transform: translateX(-100%); /* Start off-screen to the left */
            }
            100% {
                transform: translateX(0); /* End at its normal position */
            }
        }

        /* Class for showing the left panel */
        #nav-bar.slide-effect-in {
            animation: slideIn 0.7s ease-in-out; /* Apply the sliding effect */
        }



        /* Class for showing the left panel */
        #nav-bar.slide-effect-out {
            animation: slideOut 0.7s ease-in-out; /* Apply the sliding effect */
        }
        /* Keyframe for sliding in */
        @keyframes slideOut {
            0% {
                transform: translateX(0); /* Start off-screen to the left */
            }
            100% {
                transform: translateX(-100%); /* End at its normal position */
            }
        }