    .mobile-account-cart-icons {
        display: none; /* Hidden by default */
    }

    @media (max-width: 480px) {
        .mobile-account-cart-icons {
            display: block; /* Show on mobile */
        }

        .mobile-account-cart-icons .icon-container {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .mobile-account-cart-icons .icon {
            position: relative;
            font-size: 24px;
            color: var(--e-global-color-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-account-cart-icons .icon:hover {
            transform: translateY(-2px);
            color: var(--e-global-color-primary);
        }

        .mobile-account-cart-icons .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: black;
            color: white;
            border-radius: 50%;
            font-size: 11px;
            font-weight: 600;
            min-width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            border: 1px solid var(--e-global-color-primary);
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-overlay-content {
            position: fixed;
            bottom: -100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: 20px 20px 0 0;
            max-height: 100%;
            transition: bottom 0.3s ease;
        }

        .mobile-overlay.active .mobile-overlay-content {
            bottom: 0;
        }

        .mobile-overlay-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .mobile-overlay-header::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 4px;
            background: #E0E0E0;
            border-radius: 2px;
        }

        .mobile-overlay-header span {
            font-size: 18px;
            font-weight: 600;
            color: black;
        }

        .close-overlay {
            background: none;
            border: none;
            padding: 8px;
            font-size: 20px;
            color: #666;
            cursor: pointer;
        }

        .mobile-overlay-body {
            flex: 1;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            padding-top: 0px;
            padding-left: 0;
        }

        .mobile-overlay-footer {
            padding: 10px;
            border-top: 1px solid rgba(0,0,0,0.1);
            
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .user-info img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--e-global-color-secondary);
        }

        .user-info .user-email {
            font-size: 16px;
            color: black;
            font-weight: 500;
        }

        .mobile-menu-items {
            padding-top: 20px;
        }

        .menu-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            color: black !important;
            text-decoration: none;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .menu-item:hover {
            background: rgba(0, 0, 0, 0.05);
            color: black !important;
        }

        .menu-item i {
            font-size: 20px;
            color: var(--e-global-color-secondary);
        }

        .checkout-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px 24px;
            background: var(--e-global-color-secondary);
            color: black !important;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .checkout-button:hover {
            background: var(--e-global-color-primary);
            transform: translateY(-2px);
        }

        .checkout-button i {
            transition: transform 0.3s ease;
        }

        .checkout-button:hover i {
            transform: translateX(4px);
        }

        body.overlay-active {
            overflow: hidden;
        }
    }