 
        :root {
            --primary-color: #1a3a5f;
            --primary-dark: #0f2741;
            --secondary-color: #e63946;
            --accent-color: #ff9a3c;
            --text-light: #ffffff;
            --text-dark: #333333;
            --light-bg: #f8f9fa;
            --transition: all 0.3s ease;
            --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        :root {
            --primary-color: #1a3a5f;
            --primary-dark: #0f2741;
            --secondary-color: #e63946;
            --accent-color: #d4af37;
            --light-bg: #f9f8f5;
            --dark-bg: #1a1a1a;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --border-color: #3a3a3a;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* ===== HEADER STYLES ===== */
        .super-nav {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 0.5rem 2rem;
            font-size: 0.85rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .super-nav-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .super-nav a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .super-nav a:hover {
            color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .main-nav {
            width:100% ;
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--light-bg);
            box-shadow: var(--box-shadow);
            padding: 0.8rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            height: 5vh;
            
        }
        .logo{
            width:20%;
            /* border: 1px solid red; */
            height: 5vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
        }

        .logo h1{
            color: var(--text-dark);
            font-size: 20px;
        }
        .logo h1 span{
            font-size: 30px;
             color: var(--primary-color);
        }
        
        .search-container {
           width: 50%;
            /* margin: 0 2rem; */
            position: relative;
        }
        
        .search-bar {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--primary-color);
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        
        .search-bar:focus {
            box-shadow: 0 0 0 3px rgba(26, 58, 95, 0.3);
            border-color: var(--accent-color);
        }
        
        .search-btn {
            position: absolute;
            right: 5px;
            top: 5px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .search-btn:hover {
            background-color: var(--primary-dark);
            transform: rotate(10deg);
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 25%;
        }
        
        .nav-link {
            /* border:1px solid red; */
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #212529;
            font-size: 0.9rem;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-link i {
            font-size: 1.3rem;
            margin-bottom: 0.2rem;
            color: var(--primary-color);
        }
        .nav-link span {
            cursor: pointer;
        }
        
        /* .nav-link:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        } */
        
      
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
        }
        
        
        .category-nav {
            background-color: var(--primary-color);
            padding: 0.8rem 2rem;
        }
        
        .category-list1 {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .category-list {
            justify-content: center;
            list-style: none;
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .category-item {
            position: relative;
        }
        
        .category-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .category-link:hover {
            color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .category-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        
        .category-link:hover::after {
            width: 100%;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            border-radius: 5px;
            box-shadow: var(--box-shadow);
            padding: 1rem;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 100;
        }
        
        .category-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }
        
        .dropdown-link {
            display: block;
            color: #212529;
            text-decoration: none;
            padding: 0.5rem 0;
            transition: var(--transition);
        }
        
        .dropdown-link:hover {
            color: var(--primary-color);
            padding-left: 0.5rem;
        }
        
        .toast-message {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: #2ed573;
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 5px;
            box-shadow: var(--box-shadow);
            z-index: 1100;
            opacity: 0;
            transform: translateY(-20px);
            transition: var(--transition);
        }
        
        .toast-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Navigation Styles */
        .otherDeviceNav {
            display: none;
            width: 100%;
            background-color: #fff;
            position: sticky;
            z-index: 100;
            top: 0;
        }
         .m-icon{
            border:none;
            font-size: 15px;
            background-color:white;
        }
           .m-icon i{
            font-size: 25px;
           }
           .side2 .fas, .cartDiv .fas{
                font-size: 20px;
           }
        .otherDeviceNav .top {
            height: auto;
            width: 100%;
        }

        .otherDeviceNav .top .top-nav {
            width: 95%;
            padding: 5px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 50%;
            margin: 0 auto;
        }

        .otherDeviceNav .top .top-nav .side {
            width: 40%;
            height: 100%;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .otherDeviceNav .top .top-nav .side2 {
            width: 30%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 15px;
            padding-right: 15px;
            box-sizing: border-box;
        }

        .cartDiv {
            position: relative;
            cursor: pointer;
            display: inline-block;
            background-color: #fff;
        }

        .cartDiv .icon {
            font-size: 20px;
            color: #333;
        }

        #cartCount {
            position: absolute;
            top: -6px;
            left: -3px;
            background: var(--primary-color);
            color: white;
            font-size: 13px;
            font-weight: bold;
            padding: 2px 6px;
            border-radius: 50%;
            min-width: 17px;
            height: 18px;
            text-align: center;
            line-height: 12px;
            user-select: none;
            pointer-events: none;
        }

        .otherDeviceNav .top .top-nav .side .logo{
            width:75%;
            /* border: 1px solid red;    */
            height: 5vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
        }

       .otherDeviceNav .top .top-nav .side .logo  h1{
            color: var(--text-dark);
            font-size: 19px;
        }
       .otherDeviceNav .top .top-nav .side  .logo  h1 span{
            font-size: 22px;
             color: var(--primary-color);
        }
        

   

        .otherDeviceNav .top .bottom-nav {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 5px;
        }

        .otherDeviceNav .top .bottom-nav .searchDiv {
            width: 95%;
            border-radius: 5px;
            display: flex;
            height: 40px;
            background-color: #f0f0f0;
            border: 1px solid #ddd;
        }

        .otherDeviceNav .top .bottom-nav .searchDiv input {
            padding: 0 10px;
            border: none;
            width: 90%;
            height: 100%;
            color: black;
            font-size: 15px;
            outline: none;
            background-color: transparent;
        }

        .otherDeviceNav .top .bottom-nav .searchDiv  .divIcon {
            width: 10%;
            font-size: 16px;
            height: 100%;
            color: #777;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        /* Sidebar */
        .otherDeviceNav .sidebarz {
            width: 100%;
            background-color: #fff;
            height: calc(100vh - 80px);
            position: fixed;
            top: 80px;
            left: -100%;
            z-index: 1000;
            overflow-y: auto;
            transition: 0.5s ease-in-out;
        }

        .sidebarz.active {
            left: 0;
        }

        .otherDeviceNav .sidebarz .logins {
            width: 100%;
            height: auto;
            display: flex;
            padding: 10px;
            align-items: center;
            justify-content: space-around;
        }

        .otherDeviceNav .sidebarz .logins a {
            border: 1px solid var(--primary-color);
            width: 45%;
            text-decoration: none;
            color: var(--primary-color);
            text-align: center;
            padding: 10px;
            border-radius: 5px;
            font-weight: 500;
        }

        .otherDeviceNav .services {
            display: flex;
            width: 100%;
            justify-content: space-around;
            padding: 20px;
            background-color: #f5f5f5;
            flex-wrap: wrap;
            gap: 15px;
        }

        .otherDeviceNav .service-item {
            text-align: center;
            border-radius: 8px;
            padding: 15px;
            width: 45%;
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .otherDeviceNav .service-item i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .otherDeviceNav .service-item h3 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: #333;
        }

        .otherDeviceNav .service-item p {
            color: #666;
            margin: 0;
            font-size: 0.9rem;
        }

        .categories-menu {
            width: 100%;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .menu-header {
            padding: 15px 20px;
            color: black;
            font-size: 18px;
            font-weight: bold;
            background-color: #f9f9f9;
        }

        .menu-items {
            list-style: none;
        }

        .menu-item {
            padding: 15px 20px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.2s;
            text-decoration: none;
            color: black;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item:hover {
            background-color: #f9f9f9;
        }

        .menu-item i {
            color: var(--primary-color);
            font-size: 14px;
        }

        .more-options-container {
            width: 100%;
            margin-top: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .nav-section-header {
            padding: 15px 20px;
            background-color: #f9f9f9;
            color: black;
            font-size: 18px;
            font-weight: bold;
        }

        .contact-section {
            padding: 20px;
        }

        .contact-item {
            margin-bottom: 25px;
        }

        .contact-title {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .contact-detail {
            color: #333;
            font-size: 15px;
        }

        .deals-section {
            padding: 20px;
            background-color: #f9f9f9;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .deals-title {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .subscribe-form {
            display: flex;
            gap: 10px;
        }

        .email-input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }

        .subscribe-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.2s;
        }

        .subscribe-btn:hover {
            background-color: var(--primary-dark);
        }

        .social-section {
            padding: 20px;
            text-align: center;
        }

        .social-title {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 18px;
            transition: all 0.2s;
        }

        .social-icon:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .copyright {
            padding: 15px;
            text-align: center;
            color: #666;
            font-size: 12px;
            border-top: 1px solid #eee;
        }

        .fixedNav {
            height: 60px;
            position: fixed;
            bottom: 0;
            display: flex;
            justify-content: space-around;
            align-items: center;
            width: 100%;
            background-color: #fff;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 100;
        }

        .fixedNav .icons {
            font-size: 20px;
            display: flex;
            width: 25%;
            height: 100%;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            border: none;
            background-color: transparent;
            color: #000;
        }

        .fixedNav .icons.active {
            color: var(--primary-color);
        }

        .fixedNav .icons p {
            margin-top: 5px;
            font-size: 15px;
        }

        .content{
            padding-bottom: 50px;
        }

        /* Responsive Media Queries */
        @media (max-width: 1200px) {
            .super-nav-links {
                gap: 1rem;
                font-size: 0.8rem;
            }
            
            .category-list {
                gap: 1rem;
            }
            
            .nav-actions {
                gap: 1rem;
            }
            footer{
                display: inherit;
            }
        }

        @media (max-width: 992px) {
            .super-nav {
                padding: 0.5rem 1rem;
            }
            
            .main-nav {
                padding: 0.8rem 1rem;
            }

        .otherDeviceNav .top .top-nav .side .logo{
            width:75%;
            /* border: 1px solid red;    */
            height: 5vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
        }

       .otherDeviceNav .top .top-nav .side .logo  h1{
            color: var(--text-dark);
            font-size: 15px;
        }
       .otherDeviceNav .top .top-nav .side  .logo  h1 span{
            font-size: 20px;
             color: var(--primary-color);
        }

         .search-container {
           width: 40%;
            /* margin: 0 2rem; */
            position: relative;
        }
    
        .nav-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 35%;
        }
            
            .category-nav {
                padding: 0.8rem 1rem;
            }
            
            .category-list {
                gap: 0.8rem;
            }
            
            .search-container {
                margin: 0 1rem;
            }
            footer{
                display: inherit;
            }
        }

        @media (max-width: 768px) {
            .lap-nan {
                display: none;
            }
            
            .otherDeviceNav {
                display: block;
            }
        .otherDeviceNav .top .top-nav .side .logo{
            width:75%;
            /* border: 1px solid red;    */
            height: 5vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
        }

       .otherDeviceNav .top .top-nav .side .logo  h1{
            color: var(--text-dark);
            font-size: 20px;
        }
       .otherDeviceNav .top .top-nav .side  .logo  h1 span{
            font-size: 30px;
             color: var(--primary-color);
        }
            
            .super-nav {
                display: none;
            }
            
            .main-nav {
                display: none;
            }
            
            .category-nav {
                display: none;
            }
            footer{
                display: none;
            }
        }

        @media (max-width: 576px) {
            .otherDeviceNav .top .top-nav .side {
                width: 50%;
            }
            
            .otherDeviceNav .top .top-nav .side2 {
                width: 50%;
                justify-content: flex-end;
                gap: 10px;
            }
            .otherDeviceNav .top .bottom-nav .searchDiv {
                width: 100%;
            }
                        
            .otherDeviceNav .service-item {
                width: 100%;
            }
            
            .fixedNav .icons p {
                font-size: 10px;
            }
            footer{
                display: none;
            }
        }

       
    @media (max-width: 400px) {
        .otherDeviceNav .top .top-nav .side .logo{
            width:75%;
            /* border: 1px solid red;    */
            height: 5vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
        }

       .otherDeviceNav .top .top-nav .side .logo  h1{
            color: var(--text-dark);
            font-size: 16px;
        }
       .otherDeviceNav .top .top-nav .side  .logo  h1 span{
            font-size: 19px;
             color: var(--primary-color);
        }
    }
        /* ===== FOOTER STYLES ===== */
        footer { 
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding-top: 60px;
            position: relative;
            margin-top: 50px;
            height: 100%;
        }

        .footer-wave {
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            height: 60px;
            background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M321.39 56.44c58-10.79 114.16-30.13 172-41.86 82.39-16.72 168.19-17.73 250.45-.39C823.78 31 906.67 72 985.66 92.83c70.05 18.48 146.53 26.09 214.34 3V0H0v27.35a600.21 600.21 0 00321.39 29.09z" fill="%231a1a1a"/></svg>');
            background-size: cover;
            background-repeat: no-repeat;
        }

        .footer-top {
            display: flex;
            flex-wrap: wrap;
            padding: 0 50px;
            border-bottom: 1px solid var(--border-color);
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-brand {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
            padding-bottom: 40px;
        }

        .footer-brand h2 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-brand h2 i {
            color: var(--accent-color);
        }

        .footer-brand p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 20px;
            max-width: 350px;
        }

        .footer-newsletter {
            position: relative;
            max-width: 400px;
            padding-top: 20px;
        }

        .footer-newsletter h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 14px;
        }

        .newsletter-form input::placeholder {
            color: #aaa;
        }

        .newsletter-form button {
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            padding: 0 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background-color: #e6c12c;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-around;
            padding: 40px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .link-group {
            min-width: 180px;
        }

        .link-group h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--text-light);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
            display: inline-block;
        }

        .link-group ul {
            list-style: none;
        }

        .link-group ul li {
            margin-bottom: 12px;
        }

        .link-group ul li a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .link-group ul li a i {
            font-size: 12px;
            color: var(--accent-color);
        }

        .link-group ul li a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-size: 18px;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-5px);
        }

        .contact-info {
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }

        .contact-icon {
            color: var(--accent-color);
            font-size: 20px;
            min-width: 24px;
        }

        .contact-details h4 {
            color: var(--text-light);
            font-size: 16px;
            margin-bottom: 5px;
        }

        .contact-details p, 
        .contact-details a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-details a:hover {
            color: var(--accent-color);
        }

        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 25px 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .copyright {
            color: var(--text-gray);
            font-size: 14px;
        }

        .copyright a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .copyright a:hover {
            text-decoration: underline;
        }

        .payment-methods {
            display: flex;
            gap: 10px;
        }

        .payment-methods i {
            font-size: 28px;
            color: #aaa;
            transition: var(--transition);
        }

        .payment-methods i:hover {
            color: var(--accent-color);
        }

        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                flex-direction: column;
                gap: 15px;
                padding: 10px;
            }
            
                        
            .search-box {
                width: 100%;
            }
            
            .nav-links {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        /* Search Dropdown Styles */
        .search-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 999;
            background-color: #fff;
            border: 1px solid #ccc;
            max-height: 300px;
            overflow-y: auto;
            display: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .search-item {
            display: flex;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid #eee;
            text-decoration: none;
            color: #333;
            transition: background 0.2s;
        }

        .search-item:hover {
            background-color: #f5f5f5;
        }

        .search-item img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 10px;
        }

        .search-item .info p {
            margin: 0;
            font-size: 13px;
            color: #666;
        }

        .no-result {
            padding: 10px;
            color: #999;
        }

        .search-dropdown a {
            display: block;
            padding: 10px;
            text-decoration: none;
            color: #333;
            border-bottom: 1px solid #eee;
        }
        .search-dropdown a:hover {
            background-color: #f5f5f5;
        }
        .badge {
            background-color: #e74c3c;
            color: white;
            font-size: 10px;
            padding: 2px 5px;
            border-radius: 4px;
            margin-left: 6px;
            vertical-align: middle;
        }
        .search-results-box {
            position: absolute;
            background: white;
            border: 1px solid #ccc;
            width: 90%;
            max-height: 300px;
            overflow-y: auto;
            z-index: 10000;
            padding: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            margin-top: 5px;
        }

        .search-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            border-bottom: 1px solid #eee;
            text-decoration: none;
            color: black;
        }

        .search-item img {
            width: 50px;
            height: 50px;
            object-fit: cover;
        }

        .search-item .info {
            font-size: 12px;
        }

        .badge {
            background-color: crimson;
            color: white;
            font-size: 10px;
            padding: 2px 5px;
            border-radius: 3px;
            margin-left: 6px;
        }

        /* Toast Message */
        .toast-message {
            position: fixed;
            top: 7%;
            right: 0;
            transform: translateX(-50%);
            background-color: #28a745;
            color: white;
            padding: 10px 10px ;
            border-radius: 0px 8px 8px 8px;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .toast-message.show {
            opacity: 1;
        }

    



        /* Base button styles */
        /* .loginOrLogOut{
            border: 1px solid red;
            height: 100%;
            width: 15%;
        } */
.dashboard-btn{
  display:flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  gap: 0.75rem;
}

/* Icon styles */
.dashboard-btn a{
  font-size: var(--icon-size);
  transition: transform 0.2s ease;
}

/* Text span - hidden on mobile */
.dashboard-btn .d-none, 
.login-btn .d-none {
  display: none;
}

/* Admin button specific */
.dashboard-btn {
  background-color: var(--primary-color);
  color: white;
}
/* Add to your stylesheet */
.dashboard-btn, 
.dashboard-btn i, 
.dashboard-btn span {
    cursor: pointer !important;
    position: relative; /* Reset positioning */
    z-index: auto !important; /* Remove z-index */
}

.nav-link, .nav-link * {
    cursor: pointer;
}

/* Hover effects */
/* .dashboard-btn:hover {
  background-color: var(--admin-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
} */


.dashboard-btn:hover i, 
.login-btn:hover i {
  transform: scale(1.1);
}

/* Responsive show text on sm+ screens */
@media (min-width: 576px) {
  .d-none.d-sm-inline {
    display: inline-block !important;
    font-size: 0.95rem;
  }
  
  .dashboard-btn, .login-btn {
    padding: 0.85rem 1.5rem;
  }
  
}

/* Active state */
.dashboard-btn:active, 
.login-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

     /* CATEGORY NAVIGATION - Added here */
        .mobile-category-nav2 {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .mobile-category-nav2 .menu-header {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-gray);
            display: flex;
            align-items: center;
        }
        
        .mobile-category-nav2 .menu-header i {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        .mobile-category-nav2 .category-list2 {
            list-style: none;
        }
        
        .mobile-category-nav2 .category-item2 {
            border-bottom: 1px solid #f0f0f0;
        }
        
        .mobile-category-nav2 .category-item2:last-child {
            border-bottom: none;
        }
        
        .mobile-category-nav2 .category-link2 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        
        .mobile-category-nav2 .category-link2:hover {
            color: var(--primary-color);
        }
        
        .mobile-category-nav2 .category-link2 i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        
        .mobile-category-nav2 .dropdown-menu2 {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            padding-left: 20px;
        }
        
        .mobile-category-nav2 .dropdown-active .dropdown-menu2 {
            max-height: 500px;
        }
        
        .mobile-category-nav2 .dropdown-active .category-link2 i {
            transform: rotate(90deg);
        }
        
        .mobile-category-nav2 .dropdown-link {
            display: block;
            padding: 10px 0;
            color: #666;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.2s ease;
        }
        
        .mobile-category-nav2 .dropdown-link:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .mobile-category-nav2 .dropdown-link i {
            margin-right: 8px;
            font-size: 12px;
            color: var(--primary-color);
        }