   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #f8f9fa;
            padding-top: 60px;
            padding-bottom: 70px;
            min-height: 100vh;
        }
        .app-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 6px 12px;
            z-index: 1000;
            background: #ffffffbd;
             
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
 
        .logo-section {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .menu-icon {
            font-size: 24px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            transition: all 0.3s;
        }

        .menu-icon:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo i {
            font-size: 28px;
            color: white;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 1px;
            color: white;
            text-decoration: none;
        }

        .logo-text:hover {
            color: white;
        }

        .logo-text span {
            background: rgba(255, 255, 255, 0.2);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 12px;
            margin-left: 5px;
            font-weight: 400;
        }

 
        .search-section {
            flex: 1;
            max-width: 500px;
            margin: 0 20px;
            position: relative;
        }

       .search-box {
    width: 100%;
    height: 45px;
    border: 1px solid rgb(119 117 117 / 56%);
    border-radius: 25px;
    padding: 0 45px 0 20px;
    font-size: 15px;
        margin: auto;
}
       
.search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #908d8d;
    font-size: 18px;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
        .action-icon {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            
            text-decoration: none;
            position: relative;
            transition: all 0.3s;
        }

        .action-icon:hover {
            background: rgba(255, 255, 255, 0.25);
            color: white;
        }

        .action-icon i {
            font-size: 20px;
        }

        .cart-badge {
    position: absolute;
    top: 3px;
    right: 3px;
    background: #ff4757;
    color: white;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    border: 2px solid white;
}

  
        .user-menu {
            position: relative;
        }

       .user-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid rgb(116 112 112 / 70%);
    transition: all 0.3s;
}

        .user-icon:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: white;
        }

        .user-icon img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .user-icon i {
            font-size: 22px;
            color: white;
        }

        .user-dropdown {
            position: absolute;
            top: 55px;
            right: 0;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            min-width: 280px;
            display: none;
            z-index: 1001;
            overflow: hidden;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .user-dropdown.active {
            display: block;
        }

        .dropdown-header {
            padding: 20px;
           
        }

        .user-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .user-email {
            font-size: 13px;
            opacity: 0.9;
        }

        .dropdown-menu-items {
            padding: 10px 0;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
        }

        .dropdown-item:hover {
            background: #f8f9fa;
            color: #667eea;
        }

        .dropdown-item i {
            width: 20px;
            font-size: 18px;
            color: #667eea;
        }

        .dropdown-item span {
            flex: 1;
            font-size: 14px;
            font-weight: 500;
        }

        

        .dropdown-divider {
            height: 1px;
            background: #e9ecef;
            margin: 8px 0;
        }

        .logout-item {
            color: #dc3545;
        }

        .logout-item i {
            color: #dc3545;
        }

        .logout-item:hover {
            background: #fff5f5;
        }

 
        .login-btn {
            background: white;
            color: #667eea !important;
            padding: 10px 22px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .login-btn:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        .login-btn i {
            font-size: 16px;
        }

        /* Side Menu */
        .side-menu {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100vh;
            background: white;
            z-index: 1002;
            transition: left 0.3s ease;
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }

        .side-menu.active {
            left: 0;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            display: none;
            backdrop-filter: blur(5px);
        }

        .menu-overlay.active {
            display: block;
        }

        

        .menu-section {
            padding: 15px 0;
        }

        .menu-section-title {
            padding: 10px 20px;
            color: #999;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .menu-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
        }

        .menu-item:hover {
            background: #f8f9fa;
            color: #667eea;
        }

        .menu-item i {
            width: 20px;
            font-size: 18px;
            color: #667eea;
        }

        .menu-item span {
            flex: 1;
            font-size: 14px;
            font-weight: 500;
        }

        .menu-item .chevron {
            color: #999;
            font-size: 12px;
        }
 
  
        .app-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 7px 10px 10px 10px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            z-index: 999;
             
        }

        .footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #716e6e;
    font-size: 12px;
    gap: 2px;
    padding: 0;
    border-radius: 30px;
    transition: all 0.3s;
    position: relative;
}

        .footer-item i {
            font-size: 18px;
        }

        .footer-item.active {
            color: #667eea;
            background: #f0f3ff;
        }

        .footer-item:hover {
            color: #667eea;
        }

        .footer-item .cart-badge-bottom {
            position: absolute;
            top: -8px;
    right: -8px;
            background: #ff4757;
            color: white;
            font-size: 10px;
            min-width: 18px;
            height: 18px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
            border: 2px solid white;
        }

 
        .main-content {
            min-height: calc(100vh - 140px);
             
            max-width: 1400px;
            margin: 0 auto;
        }

     
        @media (max-width: 768px) {
            #carttop{display:none;}
            #whishlishtop{display:none;}
            .search-section {
                display: none;
            }
            
            .logo-text {
                font-size: 18px;
            }
            
           
            
            .action-icon {
                width: 40px;
                height: 40px;
            }
            
            .user-icon {
                width: 32px;
                height: 32px;
            }
            
            .login-btn {
                padding: 8px 16px;
                font-size: 14px;
            }
        }
 
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .cart-badge {
            animation: pulse 2s infinite;
        }

       
        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
    